:root {
  --color-black: hsl(0, 0%, 10%);
  --color-white: hsl(0, 0%, 100%);
  --color-darken: hsl(0, 0%, 20%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.menu a,
.menu button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  outline: none;
}
@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.brand {
  font-family: 'Lato', sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -1px;
  color: var(--color-pink-600);
  text-transform: uppercase;
}

.header {
  background: #fff;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000000000;
  height: auto;
  padding: 55px 0 20px 0;
  position: relative;
  margin: 0;
  margin-bottom: 20px;
}
.header .wrapper > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          position: static;
}
.header-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
}
.header-item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83%;
  flex: 0 0 83%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header-item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-item-right .menu-icon {
  font-size: 1.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-left: 1rem;
  color: var(--color-black);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .menu > ul > li {
  display: inline-block;
  padding: 0 12px;
  position: static;
  color: #33475b;
  line-height: 26px;
  font-weight: 700;
  font-size: 13px;
}
.page-jobs .header .menu > ul > li, .page-jobseekers .header .menu > ul > li, .node--type-keyword-based-page .header .menu > ul > li{padding: 0 12px;}
.uk .header .menu > ul > li{padding: 0 10px;}
.uk.page-jobs .header .menu > ul > li, .uk.page-jobseekers .header .menu > ul > li, .uk.node--type-keyword-based-page .header .menu > ul > li{ padding: 0 10px;}
.header .menu > ul > li > a, .header .menu > ul > li > span{
  padding: 10px 6px 20px 6px;
  outline: 0;
  position: relative;
  text-decoration: none;
  cursor:pointer;
}
.header .header-fixed .menu > ul > li > a, .header .header-fixed .menu > ul > li > span{
  padding: 10px 6px 12px;
}  
.header .menu > ul > li > a::before, .header .menu > ul > li > span::before{
  content: "";
  position: absolute;
  display: block;
  width: 40%;
  height: 2px;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #eb010f;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #eb010f;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.header .menu > ul > li > a:hover::before, .header .menu > ul > li > span:hover::before, .header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li > a:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.header .menu > ul > li > a:hover, .header .menu > ul > li > span:hover {
 color: #33475b;
}
.header .menu > ul > li > a:active{color:#33475b;}
.header .menu > ul > li .menu-subs {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 1rem 2rem;
  z-index: 109;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  background: #34475B;
  -webkit-box-shadow: var(--shadow-medium);
          box-shadow: var(--shadow-medium);
  -webkit-transition: all 0.1s ease;
          transition: all 0.1s ease;
}
.header .menu > ul > li .menu-subs > ul > li {
  line-height: 1;
}
.header .menu > ul > li .menu-subs > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: var(--color-black);
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .menu > ul > li .menu-column-1 {
  min-width: 16rem;
  max-width: 20rem;
}
.header .menu > ul > li .menu-subs.menu-mega {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header .menu > ul > li .menu-subs.menu-mega > .container{
  display: flex;
  padding: 0;
}
.header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li {
  display: block;
  line-height: 1;
}
.header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > h4{
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: initial;
}
.header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  border: none;
  outline: none;
  color: var(--color-white);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  outline: 0;
  position: relative;
  text-decoration: none;
}
.header .menu > ul > li .menu-subs.menu-column-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 40px 0 60px 0;
  transition-delay: 0.5s;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .container > .list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 .5rem;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .container > .list-item .title {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0;
  color: var(--color-pink-700);
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .container > .list-item.text-center .title {
  text-align: center;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .container > .list-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .menu-mobile-header,
.header .menu-mobile-toggle {
  display: none;
}
.header .menu .menu-section .menu-item .btn{
  height: 45px;
  color: #fff;
  padding: 0 20px;
  line-height: 45px;
  margin-right: 0;
  font-size: 13px;
}
.header .menu .menu-section .menu-item .btn-white{
  color: rgb(235,1,15);
  border: 1px solid rgb(235,1,15);
}
.header .menu .menu-section .menu-item .dropdown-toggle::after{
  display: none;
}
.page-home .search-wrapper.desktop .search:after {
  color: #33475b;
}
.mobile-mega-menu{
  display: none;
}
.menu ul{padding: 0; margin: 0;}
.menu ul li {list-style: none;}
.header .menu .menu-section .menu-item .btn-white:focus{color:#fff}
.page-footer .lacreme-popup .modal-content{box-shadow: 0px 0px 7px 5px rgb(0 0 0 / 25%); border-radius: 10px;}
.page-footer .lacreme-popup .modal-body{padding: 30px;}
.page-footer .lacreme-popup .modal-body img{margin: auto; margin-bottom: 30px;}
.page-footer .lacreme-popup .modal-body a.btn{margin-right: 0;}
.page-footer .lacreme-popup .modal-header{position: absolute; right: 0; padding-top: 10px; z-index: 1; border: none;}
.page-footer .lacreme-popup .modal-header button:active{outline: none;border: none;}
.article-progress-wrap{width: 100%;position: relative; top: -47px;}
@media only screen and (min-width: 1131px){
  .page-home ul.country-menu:before {color: #33475b;}
  .header .menu > ul > li > a.btn::before{display:none;}
  .btn-white:hover {color: rgb(255,255,255) !important;}
  .header .menu > ul > li .menu-subs.menu-column-4{margin-top: 0;}
  .header .menu > ul > li.menu-item-has-children:hover .menu-subs {margin-top:0; opacity: 1; visibility: visible; }
  .header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li > a{line-height: 16px; padding: 6px 0;}
  .header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li > a:active{background-color: #487DA8;}
  .header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li > a:active:before{transform:none;}
  .header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li.active > a::before{background-color: #00A0FF; transform: none;}
  .header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li.viewmore-li > a{font-size: 12px; margin-top: 5px; color: #E4E4E4; text-transform: initial; padding: 2px 0;}
  .header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li.viewmore-li > a::before{background-color: #ffffff; transform: none; height: 1px;}
  .header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li.viewmore-li > a:active{background-color: transparent;}
  .header .menu > ul > li:hover > a::before, .header .menu > ul > li:hover > span::before{transform:none}
  .header .menu > ul > li.active > a::before, .header .menu > ul > li.active > span::before{background-color: rgb(235, 1, 15);transform: none;}
  .header .menu-wrapper > .container {padding: 0;}
  .page-home .dropbutton-widget{top: -57px;}
  .header .menu > ul > li .menu-subs{border-top: 22px solid #fff; border-radius: 0; }
  .header .header-fixed .menu > ul > li .menu-subs{border-top: 13px solid #fff;}
  .modal-open .header{z-index: 100000000;}
  .page-home .header, .page-recruitment-process .header{margin-bottom: 0;}
  .page-home .search-wrapper.desktop{z-index: 1;}
  .page-home.jp-ja .search-wrapper.desktop,.page-home.jp .search-wrapper.desktop{z-index: 999;}
  .header .menu > ul > li .menu-subs.menu-column-4 > .container > .list-item{padding-right: 60px;}
  .header .menu > ul > li .menu-subs.menu-column-4 > .container > .list-item:last-child{padding-right: 0.5rem;}
}
@media (max-width: 1200px) and (min-width: 1130px){
  .header .menu > ul > li{padding: 0 12px;}
  .uk .header .menu > ul > li{padding: 0 4px;}
  .page-jobs .header .menu > ul > li, .page-jobseekers .header .menu > ul > li, .node--type-keyword-based-page .header .menu > ul > li {padding: 0 6px;}
  .uk.page-jobs .header .menu > ul > li, .uk.page-jobseekers .header .menu > ul > li, .uk.node--type-keyword-based-page .header .menu > ul > li {padding: 0 10px;}
}
@media screen and (max-width: 1130px) {
  .mobile-mega-menu{
    display: block;
  }
  .desktop-mega-menu{
    display: none;
  }
  .header-item-center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header-item-left, .header-item-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    padding: 0.5rem 0;
  }

  .header .menu-mobile-toggle {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.75rem;
    height: 1rem;
    border: none;
    outline: none;
    margin-left: 1.25rem;
    margin-top: -0.25rem;
    background: none;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .header .menu-mobile-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: var(--color-black);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header .menu-mobile-toggle span:nth-child(1) {
    top: 0;
  }
  .header .menu-mobile-toggle span:nth-child(2), .header .menu-mobile-toggle span:nth-child(3) {
    top: 0.5rem;
  }
  .header .menu-mobile-toggle span:nth-child(4) {
    top: 1rem;
  }
  .header-item-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 111;
    overflow: hidden;
    background: #34475B;
    -webkit-transform: translate(100%);
            transform: translate(100%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .header .menu.active {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  .header .menu > ul > li {
    display: block;
    line-height: 1;
    margin: 0;
  }
  .header .menu > ul > li > a, .header .menu > ul > li > span {
    display: block;
    line-height: 3.125rem;
    height: 3.125rem;
    padding: 0 3.125rem 0 1rem;
    color: #fff;
  }
  .header .menu > ul > li > a i.fa, .header .menu > ul > li > span i.fa, .header .menu > ul > li .menu-subs > ul > li.menu-item-has-children > span i.fa {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3.125rem;
    top: 0;
    right: 0;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
  }
  .header .menu .menu-mobile-header {
    position: relative;
    position: sticky;
    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;
    top: 0;
    height: 3.125rem;
    z-index: 110;
    border-bottom: 1px solid #F3F9FD;
    background: #34475B;
    padding: 49px 0;
  }
  .header .menu .menu-mobile-header .menu-mobile-arrow {
    display: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-black);
  }
  .header .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: block;
  }
  .header .menu .menu-mobile-header .menu-mobile-title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    color: var(--color-black);
    text-transform: capitalize;
  }
  .header .menu .menu-mobile-header .menu-mobile-close {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-black);
  }
  .header .menu .menu-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 34px;
    position: relative;
  }
  .header .menu > ul > li .menu-subs {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.menu-mega {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 34px;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.active {
    display: block;
    background: #DFE8EF;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .container > .list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0rem;

  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .container > .list-item img {
    margin-top: 0;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .container > .list-item.text-center .title {
    margin-bottom: 1.25rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .container > .list-item.text-center:last-child .title {
    margin-bottom: 0rem;
  }
  .header .menu > ul > li .menu-subs > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul {
    margin-bottom: 1rem;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .container > .list-item > ul > li > a {
    display: block;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.65);
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .header{
    padding: 0;
  }
  .header .wrapper{
    padding: 20px 0;
  }
  /* .inner-logo a svg{
    width: 120px;
    height: 55px;
  } */
  header nav{
    padding-top: 0;
  }
  .header .menu > ul > li{
    font-size: 17px;
  }
  .header .menu > ul > li .menu-subs > ul > li.menu-item-has-children{
    line-height: 3.125rem;
    color: #33475b;
    text-transform: initial;
  }
  .header .menu > ul > li > a::before, .header .menu > ul > li > span::before{
    display: none;
  }
  .header .menu > ul > li .menu-subs.menu-mega > ul > li .menu-subs.menu-mega{
    position: fixed;
  }
  .header .menu > ul > li .menu-subs.menu-mega > ul > li .menu-subs.menu-mega > ul > li > a{
    line-height: 3.125rem;
    color: #33475b;
    text-transform: initial;
    font-weight: 700;
    padding:0;
    font-size: 17px;
  }
  .covid-banner-wrapper .close-19{z-index: 99;}
  .header .menu .menu-mobile-header .menu-mobile-close i{display: none;}
  .header .menu .menu-mobile-header .menu-mobile-close{position: absolute; right: 15px; color: transparent; border: none;top: 20px;z-index: 9;}
  .header .menu .menu-mobile-header .menu-mobile-close::after,.header .menu .menu-mobile-header .menu-mobile-close::before{content: ""; width:35px; height:3.6px;border-radius: 1px; background: #fff; position:absolute;left: 0px;right: 0px;}
  .header .menu .menu-mobile-header .menu-mobile-close::after{transform: rotate(43deg);}
  .header .menu .menu-mobile-header .menu-mobile-close::before{transform: rotate(-43deg);}
  .header .mobile-mega-menu .countr-lang-sitch{width: 100%;    top: 39px;    padding-left: 20px;}
  .header .mobile-mega-menu .search-wrapper{display: block;top: 0px; right: 40%;}
  .header .mobile-mega-menu .search-wrapper .search:after {color: #fff;}
  .mob-menu-title-wrap{width: 100%;background: #34475b;color: #fff; display: flex; align-items: center;padding-top: 7px;padding-bottom: 8px;}
  .mob-menu-title-wrap i, .mob-menu-title-wrap .menu-mobile-title {color: #fff!important; }
  .mob-menu-title-wrap i {font-size: 39px;margin-top: -1px;}
  .mob-menu-title-wrap button {border: none!important;}
  .menu a, .menu button { background: none;}
  .header .menu .menu-section {padding-top: 30px;min-height: 550px;}
  .menu-mobile-header ~ .mob-menu-title-wrap{display: none;}
  .menu-mobile-header.active ~ .mob-menu-title-wrap{display: flex; padding-bottom: 10px;margin-top: 10px; align-items: center;}
  .header .mob-menu-title-wrap button{margin-right: 15px;margin-left: 3px;padding: 0px 3px 0px 10px;}
  .header .menu .menu-mobile-header .menu-mobile-close{padding: 0px;}
  .header .mob-menu-title-wrap .menu-mobile-title{font-size: 19px;line-height: 18px;}
  .header .menu > ul > li .menu-subs.menu-mega{ border-radius: 0px;padding-left:0px;padding-right:0px;}
  .header .menu .menu-section li{padding-left: 15px;padding-right: 15px;}
  .header .mobile-mega-menu .menu-section li ul li{padding-left: 65px;}
  .header .mobile-mega-menu .menu-section li ul li a, 
  .header .menu > ul > li .menu-subs.menu-mega > ul > li .menu-subs.menu-mega > ul > li > a{line-height: 1.5rem; padding-top: 6px; padding-bottom: 6px; margin-bottom: 16px; margin-top: 16px;}
  .header .menu > ul > li > a i.fa, .header .menu > ul > li > span i.fa, .header .menu > ul > li .menu-subs > ul > li.menu-item-has-children > span i.fa{right: 15px;font-size: 28px;}
  .header .mobile-mega-menu .menu-section  li:active{background: #B5D1DE;}
  .header .mobile-mega-menu .menu-section li ul li:active{background: #B5D1DE;}
  .header .mobile-mega-menu .menu-section li ul li:active span,.header .mobile-mega-menu .menu-section li ul li:active a{color: #00A0FF}
  .header .mobile-mega-menu .menu-section li .menu-subs.menu-mega ul li span:active,
  .header .mobile-mega-menu .menu-section li .menu-subs.menu-mega ul li a:active{color: #00A0FF!important}
  header nav li.dropdown:after{display: none;}
  header .mobile-mega-menu .menu-section li:last-child a{color: #33475b!important;}
  .header .mobile-mega-menu .menu-section li a.is-active{color: #00A0FF!important;text-decoration: underline;}
  .header .mobile-mega-menu .active.dropdown .active{color: #00A0FF;}
  header nav .country-menu-mob.active{font-size: 10px;text-transform: uppercase;}
  header nav .country-menu-mob.active li{display: block;padding-left: 2px;}
  header nav .country-menu-mob.active li a{line-height: 34px;color: #33475b!important;}
  header nav .country-menu-mob > li >a{color: #fff!important; position: relative ;padding-left: 30px;text-transform: uppercase;font-size: 10px;}
  header nav .country-menu-mob > li >a:before { content: "";width: 20px;height: 13px;background-size: 240px;
    position: absolute; left: 0px;top: 1px; background-repeat: no-repeat;background-image: url(/themes/bootstrap_mmck/css/../img/flag-sprites.webp); }
  header nav .country-menu-mob.active > li >a{color: #eb010f!important; position: relative ;padding-left: 30px;}
header nav .country-menu-mob > li > a.other:before { background-position: -199px 0px;width: 19px;background-image: url(/themes/bootstrap_mmck/css/../img/flags.webp);}
header nav .country-menu-mob.active > li > a.other:before { background-position: -199px 0px;width: 19px;background-image: url(/themes/bootstrap_mmck/css/../img/flag-sprites.webp);}
header nav .country-menu-mob > li > a.uk:before {background-position: -156px 0px;}
header nav .country-menu-mob > li > a.ca:before {background-position: -136px 0px;width: 20px;}
header nav .country-menu-mob > li > a.au:before {background-position: -19px 0px;width: 19px;}
header nav .country-menu-mob > li > a.eu:before {background-position: -222px 0px;width: 18px;}
header nav .country-menu-mob > li > a.hk:before {background-position: -77px 0;width: 19px;}
header nav .country-menu-mob > li > a.ie:before {background-position: 1px 0px;width: 19px;}
header nav .country-menu-mob > li > a.jp-ja:before {background-position: -97px 0px;width: 19px;}
header nav .country-menu-mob > li > a.jp:before {background-position: -97px 0px;width: 19px;}
header nav .country-menu-mob > li > a.sg:before {background-position: -116px 0px;width: 19px;}
header nav .country-menu-mob > li >a:after {content: "\f0dd"; font: normal normal normal 14px/1 FontAwesome; position: absolute;line-height: 6px;top: 1px;right: -15px;}
header nav .country-menu-mob > li >a:after {top: 1px;}
.header .menu > ul > li .menu-subs.menu-mega{padding-top:15px;}
.header .mobile-mega-menu .searchbar_container-mobile{margin-top: 115px;margin-left: auto;margin-right: auto;  z-index: 10;max-width: 500px; width: 95%;}
.header .mobile-mega-menu .search-bar-close-wrapper{top: -28px;}
.header .mobile-mega-menu ul li.dropdown > a, .header .mobile-mega-menu ul li.dropdown > span {pointer-events: none;}
.header .mobile-mega-menu .footer-menu-mob{position: relative;bottom: 157px;}
.header .mobile-mega-menu .footer-menu-mob .menu-footer li:first-child {padding-left: 7px;}
.header .mobile-mega-menu .footer-menu-mob .menu-footer {margin-top: 0px;padding: 0px 20px 5px 20px;}
.header .mobile-mega-menu .dropdown.active ul li {display: block;}
.header .mobile-mega-menu .menu-footer li:last-child a {color: rgb(255, 255, 255)!important;}
.header .mobile-mega-menu .menu-footer li:last-child{padding-left: 7px;}
.header .mobile-mega-menu .menu-footer li:nth-child(2){border-right: 1px solid rgb(197, 197, 197);}
.header .mobile-mega-menu .menu-footer li:nth-child(3){padding-left: 7px;}
.header .menu > ul > li .menu-subs.menu-mega{padding-bottom: 160px;}
.header .mobile-mega-menu .menu-section li a.active{color: #00A0FF!important;text-decoration: underline;}
.header .mobile-mega-menu .dropdown.active > span,.header .mobile-mega-menu .dropdown.active > a{color: #00A0FF;}
.header ul.menu-section > li > span:hover,.header ul.menu-section > li > a:hover{color: #00A0FF;}
.header .mobile-mega-menu .menu-section li ul li.submenu-title{padding: 0px;margin-top: -15px;}
header .mobile-mega-menu > ul.menu-section > li:last-child a{color: #fff!important;}
.submenu-title .mob-menu-title-wrap{ padding-left: 20px;}
.header .menu .menu-section ul > li:nth-child(2){margin-top: 10px;}
.header .menu > ul > li .menu-subs.menu-mega{ display: block!important;}
.header .menu > ul > li .menu-subs.menu-mega {left: 100%;}
.header .menu > ul > li .menu-subs.menu-mega.active {left: 0%;}
.header .menu > ul > li > span i.fa,.header .menu > ul > li > a i.fa{top: -1px;}
.header .mobile-mega-menu .searchbar_container-mobile .form-control:focus{ box-shadow: none;}
.header .menu > ul > li .menu-subs.menu-mega,.header .mobile-mega-menu{-webkit-transition: all 0.3s ease;transition: all 0.3s ease;}
header nav .menu-mega.active li{display: block;}
.header .menu-mobile-toggle span {height: 3px; background: #32475b;}
body.mobile-menu-open{height: 100%; overflow: hidden;position: fixed;top:0px}
.path-jobseekers .mobile-mega-menu .intro-search-button .btn{margin: 0px!important;}
.mobile-mega-menu .searchbar_container-mobile .search-field-consultant .intro-search-button .btn{line-height: 38px;}
body.jp .mobile-sidemenu-wrapper .country-menu-mob::after, body.jp-ja .mobile-sidemenu-wrapper .country-menu-mob::after{top: -4px;}
body.jp .mobile-sidemenu-wrapper #block-dropdownlanguage, body.jp-ja .mobile-sidemenu-wrapper #block-dropdownlanguage{margin-top: -4px;}
.mobile-mega-menu .searchbar_container-mobile .search-field-consultant .form-control.dropdown option{color: #33475b;}
.page-jobs .header,.page-audit-jobs .header,.page-resources .header,.modal-open .header{z-index: 100000000;}
.page-footer .lacreme-popup {z-index: 100000001; background-color: rgba(0, 0, 0, 0.50);}
.header{margin-bottom: 20px;}
.path-jobs header, .path-job header{margin-bottom: 20px!important;}
.page-home .header{margin-bottom:0px;}
.header .mobile-mega-menu > ul > li.nav-button:active > a, .header .mobile-mega-menu > ul > li.nav-button:active > span,.header .mobile-mega-menu > ul > li.nav-button:hover > a, .header .mobile-mega-menu > ul > li.nav-button:hover > span{color: #fff!important;}
.header .mobile-mega-menu > ul.menu-section > li > a.active{text-decoration: none;}
body .header .menu.mobile-mega-menu > ul > li {margin-left: 0px;}
  }
@media screen and (max-width:1130px) {
  /* Only for menu total scrolling */
   /* .mobile-menu-open .header-item-right{position: fixed;z-index: 99999999999; height: 30px;right: 30px;top: 32px;}
      .mobile-menu-open .header-item-right .menu-mobile-toggle span{ background: #fff;}
      .mobile-menu-open .menu-mobile-toggle span:nth-child(1),.mobile-menu-open .menu-mobile-toggle span:nth-child(4){width: 0px;}
      .mobile-menu-open .menu-mobile-toggle span:nth-child(2){transform: rotate(43deg);}
      .mobile-menu-open .menu-mobile-toggle span:nth-child(3){transform: rotate(-43deg);}
      .mobile-menu-open .header .menu-mobile-toggle{width: 2.25rem;}
      .mobile-menu-open .header .menu-mobile-toggle span{height: 3.5px;} */
  .header .mobile-mega-menu{height: calc(100% - -60px);overflow: auto; overflow-x: hidden;}
  .header .menu .menu-section{ height: auto;overflow-y: visible;min-height: 550px;}
  .header .menu > ul > li .menu-subs.menu-mega { padding-top: 111px;}
  .header .menu > ul > li .menu-subs.menu-mega {position: fixed;}
  .header .menu > ul > li .menu-subs.menu-mega > ul > li .menu-subs.menu-mega{position: fixed; overflow: hidden;}
  .header .menu > ul > li .menu-subs.menu-mega{overflow-y: hidden; height: 100vh;}
  .header .menu > ul > li .menu-subs.menu-mega.active{overflow: visible; height: 100%;min-height: 650px;}
  .header .menu > ul > li .menu-subs.menu-mega > ul > li .menu-subs.menu-mega.active{overflow-y: visible; height: 100%;}
  .header .mobile-mega-menu .footer-menu-mob{bottom: auto;}
  .header .menu > ul > li .menu-subs.menu-mega{padding-bottom:60px;}
  .header .mobile-mega-menu .footer-menu-mob {bottom: 80px;position: relative;background: #34475B;}
  body.fc-widget-open .header{ z-index: 9;}
}
@media screen and (max-width:1024px) {
  .path-jobs header, .path-job header {margin: 0px 0px !important;}
  header .mobile-mega-menu .countr-lang-sitch .country-menu-mob.active{min-width: 150px;}
  body.node--type-keyword-based-page header{margin:0px 0;}
  .path-jobs header, .path-job header{margin-bottom: 20px!important;}
}
@media screen and (max-width:767px) {
  .header .mobile-mega-menu .menu-footer li:nth-child(5){border-right: 1px solid rgb(197, 197, 197);}
}
@media screen and (max-width:640px) {
.header{margin-bottom: 30px;}
.path-jobs header, .path-job header{margin-bottom: 30px!important;}
.page-home .header{margin-bottom:0px;}
}
@media screen and (max-width:480px) {
  .header .mobile-mega-menu .searchbar_container-mobile{width: 95%;}
  .header .wrapper{padding:20px 0;}
    /* Start Recruitment page css move to main.css */
    .page-recruitment-process .inner-section{padding-top: 32px;}
    .page-expertise-detail-template #request-talant-profile-modal .close {top: 30px;}
    /* Close Recruitment page css move to main.css */
}
@media only screen and (min-width: 920px) {
  .page-footer .lacreme-popup .modal-dialog{max-width: 800px;}
}
@media only screen and (max-width: 480px){
  .page-footer .lacreme-popup .modal-body{padding: 20px;}
  .page-footer .lacreme-popup .modal-body img{margin-bottom: 20px; width: 160px;}
  .page-footer .lacreme-popup .modal-body a.search-button{font-size: 12px;}
  .page-footer .lacreme-popup .modal-body p{margin-bottom: 20px;}
}
@media only screen and (max-width: 400px){
  .page-footer .lacreme-popup .modal-body{padding: 15px;}
  .page-footer .lacreme-popup .modal-body a.btn{padding: 0px 6px; font-size: 13px;}
}