.top-nav {
  background: #012269;
  width: 100%;
  height: 20px;
}

.navbar {
  height: 120px;
  width: 100%;
  margin: auto;
  /*position: relative;*/
}
.navbar__container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  padding: 0 1em;
  margin: auto;
}
.navbar__container--logo {
  position: relative;
  z-index: 2;
  /*height: 90px; AKJ */
  width: 236px;
}
.navbar__container--logo__hero {
    width: 100%;
	height: 100%;
}
.navbar__container--menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.navbar__container--menu__item {
  background: #012269;
  height: 3px;
  width: 30px;
  transition: 0.3s;
  align-self: flex-end;
}
.navbar__container--menu__middle {
  margin: 6px 0;
}
.navbar__container--menu__middle-hover {
  width: 20px;
}
.navbar__container--menu__bottom-hover {
  width: 10px;
}
.navbar__list {
  background: #021337;
  width: 360px;
  height: 100vh;
  z-index: 999;
  position: absolute;
  right: -400px;
  top: 0;
  padding: 2em;
  transition-delay: 0.8s;
  transition-duration: 0.3s;
  opacity: 1;
  overflow-y: scroll;
}
.navbar__list--menu {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 1.5em;
}
.navbar__list--menu__item {
  font-size: 36px;
  color: #d2d1d1;
  cursor: pointer;
}
.navbar__list--item {
  padding: 20px 0;
}
.navbar__list--item__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar__list--item a {
  color: #d2d1d1;
  font-size: 18px;
  text-decoration: none;
}
.navbar__list--item__btn {
  cursor: pointer;
  font-size: 30px;
  font-weight: 300;
}
.navbar__list--item__btn-open {
  color: #d2d1d1;
}
.navbar__list--item__btn-close {
  display: none;
  color: #fff;
}
.navbar__list--item__btn--idle {
  display: none;
}
.navbar__list--item__btn--active {
  display: block;
}
.navbar__list--item__inner {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
}
.navbar__list--item__inner--item {
  padding: 10px 0 20px 10px;
}
.navbar__list--item__inner--item a {
  color: #d2d1d1;
  font-size: 16px;
  text-decoration: none;
  font-weight: 300;
}
.navbar__list--item__inner--item:first-child {
  padding-top: 20px;
}
.navbar__list--item__inner--active {
  max-height: 700px !important;
}
.navbar__list--active {
  right: -15px;
  position: fixed;
}
.block-text + .block-text  {
  margin-top: 1em;
}
@media screen and (min-width: 600px) {
  .navbar {
    height: 140px;
  }
  .navbar__container {
    height: 140px;
  }
  .navbar__container--logo {
    height: 115px;
  }

  .navbar__list {
    width: 400px;
  }
}
@media screen and (min-width: 900px) {
  .navbar {
    height: 160px;
  }
  .navbar__container {
    height: 160px;
  }
  .navbar__container--logo {
    height: 120px;
  }
}
.footer {
  background: #272727;
  width: 100%;
  color: #d2d1d1;
  font-size: 16px;
}
.footer__container {
  margin: auto;
  padding: 2em 1em;
}
.footer__container--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 1em;
}
.footer__container--item__links {
  padding: 10px;
}
.footer__container--item__links--item {
  padding: 10px;
}
.footer__container--item a {
  color: #d2d1d1;
  text-decoration: none;
  font-size: 16px;
}
.footer__container--item__sgs--img {
  margin: 10px;
  height: 90px;
}
.footer__container--item__sgs--img img {
  /*height: 100%; - changed to allow explicit HxW on images. AKJ */
  width: auto;
}
.footer__container--item__connect {
  padding: 10px;
}
.footer__container--item__social {
  padding: 10px;
}
.footer__container--item__social a {
  padding: 5px;
}
.footer__container--item__social a img {
  height: 60px;
}
.footer__container--item__address {
  padding: 5px;
}
.footer__container--item__phone {
  padding: 5px;
  font-size: 26px !important;
  font-weight: 600;
}
.footer__container--item__email {
  padding: 5px;
}
.footer__add {
  text-align: center;
  padding-bottom: 2em;
}

@media screen and (min-width: 620px) {
  .footer__container {
    margin: auto;
    padding: 2em 2em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }
  .footer__container--item__links {
    padding: 0;
  }
  .footer__container--item__links--item {
    padding: 0;
  }
  .footer__container--item__sgs--img {
    margin: 0;
    height: 80px;
  }
  .footer__container--item__sgs--img img {
    height: 100%;
  }
  .footer__container--item__connect {
    padding: 0 0 10px 0;
  }
  .footer__container--item__social {
    padding: 10px;
  }
  .footer__container--item__social a {
    padding: 10px;
  }
  .footer__container--item__social a img {
    height: 60px;
  }
  .footer__container--item__address {
    padding: 0 0 10px 0;
  }
  .footer__container--item__phone {
    padding: 10px 0;
  }
  .footer__container--item__email {
    padding: 10px 0;
  }
  .footer__container--item:nth-child(1) {
    align-items: flex-start;
    text-align: left;
  }
  .footer__container--item:nth-child(3) {
    align-items: flex-end;
    text-align: right;
  }
}
@media screen and (min-width: 1000px) {
  .footer__container {
    margin: auto;
    padding: 2em 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }
  .footer__container--item__links {
    padding: 0;
    display: flex;
  }
  .footer__container--item__links span:nth-child(1) {
    padding-right: 2em;
  }
  .footer__container--item__links--item {
    padding: 0;
  }
  .footer__container--item__sgs {
    display: flex;
    flex-wrap: wrap;
  }
  .footer__container--item__sgs--img {
    margin: 10px;
    height: 125px;
  }
  .footer__container--item__sgs--img img {
    height: 100%;
  }
  .footer__container--item__connect {
    padding: 0 0 10px 0;
  }
  .footer__container--item__social {
    padding: 10px;
  }
  .footer__container--item__social a {
    padding: 10px;
  }
  .footer__container--item__social a img {
    height: 60px;
  }
  .footer__container--item__address {
    padding: 0 0 10px 0;
  }
  .footer__container--item__phone {
    padding: 10px 0;
  }
  .footer__container--item__email {
    padding: 10px 0;
  }
 
}
.header {
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-subnews {
  height: 80vh;
}
.header-subnews__text {
  text-align: center;
}
.header-subnews__text-title {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  text-shadow: 1px 1px 2px #000;
}
/*
.header-home {
  background-image: url(../imgs/headers/J4Z_cabinet-banner.jpg);
}

.header-careers {
  background-image: url(../imgs/moreServices/tnl_hydram-site-home.jpg);
}

.header-about {
  background-image: url(../imgs/moreServices/tnl_hydram-site-home.jpg);
}
*/
.header-sectors {
  height: 300px;
}

.header-services {
  height: 300px;
}
/*
.hitachi {
  background-image: url(../imgs/news/Dzr_hitachi-test-track-banner.jpg);
}
*/
.gallery__title {
  display: flex;
  justify-content: space-between;
  margin: 0 0 .5em 0;
}
.gallery__title {
  text-decoration: none;
  font-size: 32px;
  font-weight: 400;
  cursor: pointer;
}
#services {
  color: #c7c7c7;
}
#sectors {
  color: #012269;
}
.gallery__grid {
  position: relative;
  padding-bottom: 5em;;
}
.gallery__grid--container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1em;

}


.gallery__grid--item {
  position: relative;
  text-decoration: none;
  color: #fff;
}
.gallery__grid--item img {
  height: 100%;
  width: 100%;
}
.gallery__grid--item__text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1em 2em;
  transition: .3s;
  width: 100%;
}
.grid-idle {
  position: absolute;
  opacity: 0;
  height: 0px;
  display: none;
}
.gallery__grid--item__text h3 {
  font-size: 26px;
  transition: .5s;
  font-weight: 700;
  text-shadow: 1px 1px 2px #000;
  margin-bottom: 1em;
}
.gallery__grid--item__text p {
  display: none;
  opacity: 0;
  transition: .5s;
  text-shadow: 1px 1px 2px #000;
  position: absolute;
  top: 4.5em;
  padding-right: 35px
}
.gallery__grid--item .gallery__grid--item__overlay {
  transition-delay: 0.3s;
} /*AKJ*/

.gallery__grid--item:hover .gallery__grid--item__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(58, 83, 155, 0.6);
  transition: 0.3s;
  transition-delay: 0.3s;
}
.gallery__grid--item:hover .gallery__grid--item__text {
  top: 0;
}
.gallery__grid--item:hover p {
  opacity: 1;
  transition-delay: 0.3s;
}
.sectors {
  z-index: 1;
}
.services {
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: -1;
}

@media screen and (min-width: 620px) {
  .gallery__title {
    justify-content: space-evenly;
    margin: 0 0 .5em 0;
  }
}
@media screen and (min-width: 720px) {
  .gallery__grid--container {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2em;
  }
}
@media screen and (min-width: 1188px) {
  .gallery__grid--item__text p {
    display: block;
    opacity: 0;
    transition: .3s;
    text-shadow: 1px 1px 2px #000;
    position: absolute;
    bottom: 2em;
  }
  .gallery__grid--item__text h3 {
  margin-top: 10em;
}
 .gallery__grid--item:hover h3 {
    margin-top: 0.3em;
  }
}
.intro h2 {
  color: #012269;
  font-size: 32px;
  text-align: center;
  font-weight: 600;
  padding: 0;
}
.sub-intro {
  position: absolute;
  bottom: -3.5em;
  opacity: 1;
  width: 100%;
  z-index: 1;
}
.sub-intro a {
  display: block;
  color: #012269;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 2.5em 0;
  text-decoration: none;
}

.grid-idle + .sub-intro {
  opacity: 0;
  z-index: -1;
}

.grid-active + .sub-intro {
  opacity: 1;
  z-index: 1;
}

.single-vacancy {
  margin: 1em 10px;
  display: block;
}

.side-title {
  color: #012269;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 1em;
}
.post-side-bar {
  margin-bottom: 1em;
  position: relative;
}

.post-side-bar a {
  text-decoration: none;
}

.post-side-bar__text {
  color: #272727;
  margin-top: 10px;
}

.post-side-bar__title {
 text-transform: uppercase;
 font-size: 16px;
  font-weight: 700;
}

.post-side-bar__description {
  font-size: 16px;
  font-weight: 400;
}
.post-side-bar__hero {
  height: 180px;
  position: relative;
}

.post-side-bar__hero img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;

}
.recruitment-grid .vc_btn3-container {
  display: none !important;
}

.recruitment-grid h4 {
  font-size: 20px;
  font-weight: 700;
  color: #012269;
  line-height: 1.2;
}
.recruitment-grid .vc_custom_heading p {
  display: none !important;
}

.recruitment-grid .vc_gitem-zone {
  height: 100%;
}

.recruitment-grid .vc_gitem-animated-block {
  height: 190px !important;
}
.recruitment-grid .vc_custom_1419240516480 {
  background-color: #fff !important;
}
.recruitment-grid .vc_gitem_row .vc_gitem-col {
  padding: 10px 0 !important;
}
.recruitment-grid .vc_gitem-post-data {
  margin-bottom: 0 !important;
}
.single-vacancy-title {
  margin-bottom: 2em;
}
.single-vacancy-title h2 {
  font-size: 32px;
  font-weight: 400;
  color: #012269;
}
.single-vacancy-title h4 {
  font-size: 16px;
  font-weight: 400;
  color: #212529;
}

.single-vacancy-content {
  font-size: 17px;
  font-weight: 400;
  color: #272727;
  display: grid;
  grid-template-columns: repeat(1fr);
  grid-gap: 1em;
}

.single-vacancy-content__inner {
  font-size: 17px;
  font-weight: 400;
  color: #272727;
  display: grid;
  grid-template-columns: repeat(1fr);
  grid-gap: .5em;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.single-vacancy-content__inner p {
  font-size: 17px;
  font-weight: 400;
  color: #272727;
}
.single-vacancy-content__inner:last-child {
  border-bottom: none;
}

.single-vacancy-content__inner h3 {
  color: #012269;
  font-size: 32px;
  font-weight: 600;
}

.single-vacancy-content a {
  color: #007bff;
  text-decoration: none;
}
.vacancies-container {
  min-height: 60vh;
}
.vacancies {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3em;
  margin: 2em 0;
  overflow: visible;
  position: relative;
}

.vacancies-img {
  width: 100%;
}

.vacancies-title {
  color: #012269;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
}
.vacancies-href {
  text-decoration: none;
}
.gallery-x4 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3em;
  margin: 3em 0;
}
.gallery-x4__item a {
  text-decoration: none;
}
.gallery-x4__item--img img {
  height: 100%;
  width: 100%;
}
.gallery-x4__item--text {
  padding-top: 1em;
}
.gallery-x4__item--text h3 {
  color: #012269;
  font-weight: 400;
  font-size: 24px;
}
.gallery-x4__item--text p {
  font-size: 16px;
  color: #272727;
  margin-top: 5px;
  margin-bottom: 20px;
}
.gallery-x4__item--text__btn {
  text-decoration: none;
  color: #fff;
  background: #012269;
  padding: .5em 1.5em;
}
.gallery-x4__item--text a:hover {
  color: #fff;
  background: #01329c;
}

.gallery-x3 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3em;
  margin: 3em 0;
}
.gallery-x3__item--img img {
  height: 100%;
  width: 100%;
}
.gallery-x3__item--text {
  padding-top: 1em;
}
.gallery-x3__item--text h3 {
  color: #012269;
  font-weight: 400;
  font-size: 24px;
}

.gallery-x3__item--text h4 {
  font-size: 16px;
  color: #272727;
}

.gallery-x3__item--text p {
  font-size: 16px;
  color: #272727;
  margin-top: 8px;
  margin-bottom: 20px;
  font-weight: 400;
}
.gallery-x3__item--text__btn {
  text-decoration: none;
  color: #fff;
  background: #012269;
  padding: .5em 1.5em;
}
.gallery-x3__item--text a:hover {
  color: #212529;
  background: #01329c;
}

@media screen and (min-width: 760px) {
  .vacancies {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1em;
  }
  .gallery-x4 {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1em;
  }

  .gallery-x3 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
  }
}
.main-header h2 {
  color: #012269;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: .5em;
}

.text-block {
  color: #012269;
}

.text-block__sub-header h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.text-block p {
  font-size: 16px;
  color: #272727;
  padding-top: .5rem;
}
.text-block__main-header {
  color: #012269;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}
.text-block__main-header h3 {
  color: #012269;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}
.image-text {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  margin: 2rem 0;
}
.image-text img {
 /* width: 100%;     AKJ - WEBP images are too big*/
}
.image-text__text {
  padding: 2rem;
  color: #fff !important;
  background: #012269;
}
.grey .image-text__text {
    padding: 2rem;
  	color: #fff !important;
    background: #606060;
  }		
.image-text__text h3 {
  font-weight: 700;
  font-size: 24px;
  padding-bottom: .5rem;
}
.image-text__text p {
  font-size: 17px;
  color: #fff;
}
.image-text__text p + p {
  padding-top: 10px;
}
.image-text__text ul {
  padding-top: .5rem;
  padding-left: 40px;
}
.image-text__text ul li {
  list-style-type: disc;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  font-size: 17px;
}
.image-text__text a {
  color: #aaf;
  font-size: 17px;
  font-weight: 500;
  /*text-decoration: none;
  display: block;
  padding-top: .5em;    AKJ*/
}

@media screen and (min-width: 720px) {
  .about-gallery__grid--container {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 770px) {

  .single-vacancy {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 1em;
  }

  .about-gallery__grid--container {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-gallery__grid--container span {
    padding: 1em;
  }
  .about-gallery__grid--container h3 {
    line-height: 1;
    font-size: 18px;
  }
}
@media screen and (min-width: 1000px) {
  .image-text {
    display: flex;
    margin: 5rem 0;
    flex-direction: row-reverse;
    align-items: center;
    grid-template-columns: none;
    grid-gap: 0;
    position: relative;
    
  }
  .image-text img {
    z-index: -2;
    max-width: 50%;
   /* width: auto;  to stop WEBP images appearing too large AKJ*/
  }
  .image-text__text {
    width: 56%;
    background: #012269;
    margin-left: -40px;
  }

  .image-text__text h3 {
    font-weight: 700;
    font-size: 24px;
  }
  .image-text__text ul {
    padding-left: 40px;
  }
  .image-text__text ul li {
    list-style-type: disc;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
  }
  .grey .image-text__text {
    width: 64.4%;
    background: #606060;
    margin-left: -40px;
  }

  .reverse {
    direction: rtl;
  }
  .reverse .image-text__text {
    direction: ltr;
    width: 56%;
    margin-right: -40px;
    margin-left: auto;
  }
  .grey .reverse .image-text__text {
    direction: ltr;
    width: 56%;
    margin-right: -40px;
    margin-left: auto;
  }
  

  .about-gallery__grid--container span {
    padding: 1em 2em;
  }
  .about-gallery__grid--container h3 {
    line-height: 1.5;
    font-size: 26px;
	margin-top: 3.7em;
  }
}
.gallery-x4-news--img {
  height: 150px;
  position: relative;
}
.gallery-x4-news--img img {
  object-fit: cover;
  height: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.gallery-x4-news h3 {
  font-weight: 700;
  font-size: 21px;
}
.gallery-x4-news p {
  font-size: 14px;
}
.gallery-x4-news__tag {
  color: #272727;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

@media screen and (min-width: 580px) {
  .gallery-x4-news {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2em;
  }
}
@media screen and (min-width: 1000px) {
  .gallery-x4-news {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2em;
  }
}
.article-container {
  display: grid;
  grid-template-columns: 1fr;
}
.article-container__text-flex {
  display: flex;
  flex-direction: column;
  margin-bottom: 2em;
}
.article-container__text-flex .main-header {
  font-size: 30px;
}
.article-container__text-flex p {
  font-size: 16px;
  font-weight: 400;
  color: #212529;
}
.article-container__text-flex a {
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
  font-size: 16px;
}
.article-container__text-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1em;
  font-size: 16px;
  font-weight: 400;
  color: #212529;
}
.article-container .gallery-x4-news-sub {
  grid-template-columns: 1fr;
  grid-gap: .5em;
}
.article-container .gallery-x4-news-sub h3 {
  color: #272727;
  text-transform: uppercase;
}
.article-container .text-block__link {
  color: #007bff;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
}

@media screen and (min-width: 700px) {
  .article-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 2em;
  }
}
.contact-section {
  margin-bottom: 2em;
}
.contact-section__block {
  display: grid;
  grid-template-columns: 1fr;
}
.contact-section__block--inner .vc_column-inner .wpb_wrapper .wpb_content_element .wpb_wrapper ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1em;
}
.contact-section__block--inner .vc_column-inner .wpb_wrapper .wpb_content_element .wpb_wrapper li {
  color: #272727;
}

.contact-section__block--inner .vc_column-inner .wpb_wrapper .wpb_content_element .wpb_wrapper li a {
  color: #272727;
  text-decoration: none;
}

.contact-section__block--inner .vc_column-inner .wpb_wrapper .wpb_content_element .wpb_wrapper li a:hover {
  color: blue;
  text-decoration: underline;
}
.contact-section__block--inner .vc_column-inner .wpb_wrapper .wpb_content_element .wpb_wrapper li p {
  color: #012269;
}
.text-block__text p  {
  font-size: 16px;
  color: #272727;
  padding-top: .5rem;
}
.contact-section .text-block__text span {
  font-weight: 700;
}
.contact-section .text-block__text a {
  color: #007bff;
  text-decoration: none;
}
.contact-section .text-block__text a:hover {
  text-decoration: underline;
}
.contact-section__form {
  height: 300px;
  border: 1px solid black;
}

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

@media screen and (min-width: 780px) {
  .contact-section__block {
    grid-template-columns: repeat(2, 1fr);
  } 
}
* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
  list-style: none;
  line-height: 1.5;
  word-spacing: .2rem;
}



body, html {
  overflow-x: hidden !important;
  background: #fff;
}

.overflowMenu {
  overflow-x: auto;
}

.transition-delay {
  transition-delay: 0.8s;
}

.logo-transition-delay {
  transition-delay: 0s;
}

.logo-no-transition-delay {
  transition-delay: 0.8s;
}

.modal {
  height: 100vh;
  width: 100%;
  position: absolute;
  margin: 0 auto;
  opacity: 0;
  z-index: -2;
}

.body-overlay {
  background: #364F88;
  transition: 0.2s;
  z-index: 1;
  opacity: .8;
  position: fixed;
  top: 0;
}

textarea:focus, input:focus {
  outline: none;
}

html {
  overflow: none !important;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2em;
}

.img-overlay {
  position: absolute;
}

.container-top-header + .image-text {
  margin-top: 0;
}
.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1em;
}

.mt-2 {
  margin-top: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.pt-0 {
  padding-top: 0;
}

.pt-h1 {
  padding-top: .5rem;
}

.pt-2 {
  padding-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.pb-h1 {
  padding-bottom: .5rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.p-0 {
  padding: 0;
}

.bold {
  font-weight: 700;
}

.arrowFunction {
  width: 200px;
  height: 50px;
}
.recruitment-header {
  height: 546px;
  position: relative;
}

.recruitment-header__hero {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.recruitment-header__title {
  position: absolute;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  z-index: 2;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  text-align: center;
  width: 80%;
  text-shadow: rgb(0 0 0 / 25%) 1px 0px 0px;
  line-height: 39px;
}
.slider-revolution__text-custom-shadow {
  /*text-shadow: 1px 1px #000000 !important;*/
  text-shadow: rgb(0 0 0 / 25%) 3px 3px 0px !important;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1em;
  margin-bottom: 2em;
}

.posts-grid_item {
  display: grid;
}
.posts-grid_item img {
  width: 100%;
}

.post-grid_item-btn {
  width: 123px;
  margin-top: 1em;
}
.posts-grid_item a {
  text-decoration: none;
}
.posts-grid_item h3 {
  color: #012269;
  font-weight: 400;
  font-size: 24px;
  padding: .5em 0;
}

@media screen and (max-width: 1000px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 780px) {
  .posts-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-post {
  display: grid;
  grid-gap: 1em;
  margin-bottom: 2em;
}

.single-post h1, .single-post h2, .single-post h3 {
  color: #012269;
}

.single-post p > a {
  text-decoration: none;
}
.single-post-img {
  width: 100%;
  margin-bottom: 2.5em;
}

.single-post-btn {
  width: 168px;
  margin-top: 1em;
}

.single-post-btn:hover,
.post-grid_item-btn:hover {
  color: #fff;
  background: #01329c;
}