/* ===== BASE ====== */
/* CONTAINER'S MAX WIDTH */
/* FONTS */
/* FONT-SIZE */
:root {
  --fontSize-regular: 1.125rem;
  --fontSize-xxlarge: 4.875rem;
  --fontSize-xxlarge-02: 4.25rem;
  --fontSize-xlarge: 3.625rem;
  --fontSize-xlarge-02: 2.375rem;
  --fontSize-large: 1.75rem;
  --fontSize-medium: 1.375rem;
  --fontSize-small: 0.875rem;
  --fontSize-xsmall: 0.5rem;
}
@media (max-width: 640px) {
  :root {
    --fontSize-regular: 0.875rem;
    --fontSize-xlarge: 2.375rem;
    --fontSize-large: 2rem;
    --fontSize-medium: 1.125rem;
    --fontSize-small: 0.875rem;
    --fontSize-xsmall: 0.5rem;
  }
}

/* LINE HEIGHT */
/* COLORS */
/* BRANDS COLOR */
/* STATUS COLOR */
/* FOR SPACING (MARGIN AND PADDING) */
/* IMAGE SPRITE */
/* ICONS */
/* ===== Careers PAGE (cp) ===== */
#main {
  overflow: hidden;
}

/* CAREER'S PAGE CONTENT */
.cp-content .content--body h2, .cp-content .content--body h3 {
  margin-top: 0;
}
.cp-content .content--body h2:first-child, .cp-content .content--body h2.c--gray, .cp-content .content--body h3:first-child, .cp-content .content--body h3.c--gray {
  color: #212121;
}

/* VACANT */
.cp-vacant {
  padding-top: 55px;
}
@media (max-width: 991px) {
  .cp-vacant {
    padding-top: 60px;
  }
}

.cp-vacant .sec-header.with-filters .sec-header-menu h2 {
  position: relative;
  background: transparent;
  color: #53a700;
  font-size: 1.125rem;
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.cp-vacant .sec-header.with-filters .sec-header-menu h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #53a700;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media (max-width: 767px) {
  .cp-vacant .sec-header.with-filters .sec-header-menu h2::before {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
@media (max-width: 991px) {
  .cp-vacant .sec-header.with-filters .sec-header-menu {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

@media (min-width: 991px) {
  .cp-vacant .sec-header.with-filters.filters-fixed .sec-header-menu {
    padding: 15px 30px;
  }
  .cp-vacant .sec-header.with-filters.filters-fixed .sec-header-menu ul {
    margin-top: 0;
    margin-bottom: 0;
  }
  .cp-vacant .sec-header.with-filters.filters-fixed .sec-header-menu .custom-select select {
    padding: 0 10px;
  }
  .cp-vacant .sec-header.with-filters.filters-fixed .sec-header-menu .custom-select::before {
    display: none;
  }
}

.cp-vacant .sec-header.with-filters ul .custom-select {
  max-width: 300px;
  overflow: hidden;
}
.cp-vacant .sec-header.with-filters ul .custom-select select {
  width: 180px;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .cp-vacant .sec-header.with-filters ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    white-space: nowrap;
  }
}

.cp-vacant .cp-table {
  position: relative;
}
@media (max-width: 767px) {
  .cp-vacant .cp-table {
    overflow-x: auto;
  }
}
.cp-vacant .cp-table table {
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .cp-vacant .cp-table table {
    white-space: wrap;
  }
}
.cp-vacant .cp-table thead th:first-child,
.cp-vacant .cp-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  background-color: #ffffff;
  text-align: left;
  padding-left: 0;
}
.cp-vacant .cp-table thead th:first-child::before,
.cp-vacant .cp-table tbody th::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  -webkit-box-shadow: 7px 2px 9px -4px rgba(0, 0, 0, 0.75);
          box-shadow: 7px 2px 9px -4px rgba(0, 0, 0, 0.75);
}
@media (max-width: 991px) {
  .cp-vacant .cp-table thead th:first-child::before,
.cp-vacant .cp-table tbody th::before {
    background-color: #e2e2eb;
  }
}
@media (min-width: 992px) {
  .cp-vacant .cp-table thead tr,
.cp-vacant .cp-table tbody tr {
    position: relative;
  }
  .cp-vacant .cp-table thead th::after,
.cp-vacant .cp-table thead tr::after,
.cp-vacant .cp-table tbody tr::after,
.cp-vacant .cp-table tbody th::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    height: 1px;
    width: 110%;
    background-color: #cbced5;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .cp-vacant .cp-table thead th,
.cp-vacant .cp-table thead tr,
.cp-vacant .cp-table tbody td {
    position: relative;
  }
  .cp-vacant .cp-table thead th::after,
.cp-vacant .cp-table tbody td::after,
.cp-vacant .cp-table tbody th::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    height: 1px;
    width: 110%;
    background-color: #cbced5;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.cp-vacant .cp-table tbody th {
  width: 350px;
  min-width: 150px;
  padding-right: 30px;
  white-space: break-spaces;
}
@media (max-width: 480px) {
  .cp-vacant .cp-table tbody th {
    min-width: 0;
    padding-right: 8px;
  }
}
.cp-vacant .cp-table th, .cp-vacant .cp-table td {
  padding: 15px 20px;
  text-align: left;
}
@media (max-width: 480px) {
  .cp-vacant .cp-table th, .cp-vacant .cp-table td {
    padding: 10px;
  }
}
.cp-vacant .cp-table tbody th a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cp-vacant .cp-table tbody th a h3 {
  font-size: 1.125rem;
  display: block;
  width: 100%;
  color: #10398e;
}
@media (max-width: 767px) {
  .cp-vacant .cp-table tbody th a h3 {
    margin-bottom: 10px;
  }
}
.cp-vacant .cp-table tbody th a span {
  font-size: 1rem;
  color: #595959;
}
.cp-vacant .cp-table tbody td:last-child {
  padding-right: 0;
}
.cp-vacant .cp-table tbody td:last-child a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 640px) {
  .cp-vacant .cp-table tbody td:not(:last-of-type) {
    border-right: 1px solid #c7c7c7;
  }
}
@media (max-width: 640px) {
  .cp-vacant .cp-table tbody td:nth-child(3) {
    min-width: 100px;
  }
}
.cp-vacant .cp-table tbody tr.hide {
  display: none;
}
.cp-vacant .cp-table .note {
  color: #ff9d00;
  font-style: italic;
  font-weight: 700;
}

/* EMPLOYER BRANDS */
.cp-brand {
  padding-top: 65px;
}
@media (max-width: 767px) {
  .cp-brand {
    padding-top: 45px;
  }
  .cp-brand .row > div:last-child {
    margin-top: 30px;
  }
}

.cp-brand .content--body {
  margin-bottom: -20px;
}
.cp-brand .content--body h2 {
  margin-top: 0;
  font-weight: 700;
}
.cp-brand .content--body p + h2 {
  margin-top: 50px;
}
.cp-brand .content--body h3, .cp-brand .content--body h4, .cp-brand .content--body h5 {
  font-weight: 400;
  color: #595959;
}
.cp-brand .content--body p {
  margin-bottom: 20px;
}

/* ANNOUNCEMENT */
.cp-announcement {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .cp-announcement {
    padding-top: 45px;
  }
}
.cp-announcement .card-item {
  background-color: #eeeeee;
  padding: 15px;
}
@media (max-width: 767px) {
  .cp-announcement .card-item .info {
    min-height: 100px;
  }
}

/* WORK WITH US */
.cp-with-us {
  padding-top: 70px;
}
@media (max-width: 767px) {
  .cp-with-us {
    padding-top: 50px;
  }
}
.cp-with-us .box-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .cp-with-us .box-item .button--primary:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cp-with-us .box-item-wrapper .box-item:nth-of-type(odd) .box-assets {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.cp-with-us .box-item--gradient .box-assets img {
  -webkit-transform: translate(10%, -35%) scale(1.15);
  transform: translate(10%, -35%) scale(1.15);
}
@media (max-width: 767px) {
  .cp-with-us .box-item--gradient .box-assets img {
    position: relative;
    -webkit-transform: unset;
    transform: unset;
  }
}

/* TESTIMONIALS */
.cp-testimonials {
  padding-top: 65px;
}
@media (max-width: 767px) {
  .cp-testimonials {
    padding-top: 45px;
  }
}

@media (max-width: 767px) {
  .cp-testimonials .card-item .asset {
    min-height: unset;
    height: 200px;
  }
}
.cp-testimonials .card-item .asset img {
  min-width: unset;
  min-height: unset;
}

.cp-testimonials .card-item .cta a.video {
  background-color: rgba(255, 255, 255, 0.5);
}

.cp-testimonials .card-item .info {
  text-align: center;
}

/* WORKING WITH */
.cp-working-with {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .cp-working-with {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .cp-working-with .box-item-wrapper .box-item:nth-of-type(odd) .box-assets {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cp-working-with .box-item-wrapper .box-assets img {
    position: relative;
    height: 100%;
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: unset;
    transform: unset;
  }
}
@media (max-width: 767px) {
  .cp-working-with .box-item-wrapper .box-assets .info {
    font-size: 1.375rem;
  }
}

.cp-working-with .box-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cp-working-with .box-item .sec-header {
  padding-bottom: 30px;
}
.cp-working-with .box-item .content--body h3 {
  margin-top: 0;
}
.cp-working-with .box-item .content--body h3:first-child, .cp-working-with .box-item .content--body h3.c--gray {
  color: #212121;
}

/* AWARDS */
.cp-awards {
  padding: 65px 0 70px;
}
@media (max-width: 767px) {
  .cp-awards {
    padding: 45px 0 50px;
  }
}
@media (max-width: 640px) {
  .cp-awards .cardlist--carousel {
    margin-left: 20px;
  }
}
@media (max-width: 480px) {
  .cp-awards .cardlist--carousel, .cp-awards .cardlist--carousel .owl-item {
    max-width: 250px;
  }
}
.cp-awards .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.cp-awards .owl-stage .item {
  height: 100%;
}
.cp-awards .card-item,
.cp-awards .card-item > .info.awards {
  height: 100%;
}
.cp-awards .owl-nav button {
  width: 40px;
  height: 40px;
  background-color: #53a700;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  top: 50%;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.cp-awards .owl-nav button:not(.disabled) {
  opacity: 1;
}
@media (max-width: 767px) {
  .cp-awards .owl-nav {
    display: block;
  }
}

@media (max-width: 991px) {
  .cp-awards .card-item > .info.awards h3 {
    min-height: unset;
  }
}

/* CONTACT US */
.cp-contact {
  padding-top: 45px;
  padding-bottom: 60px;
}

/* CAREER POPUP */
.cp-popup {
  position: relative;
  padding: 0;
  border-radius: 6px;
  background-color: #ececf4;
  width: 100%;
  max-width: 991px;
  max-height: 700px;
  overflow-y: hidden;
  display: none;
}
@media (max-width: 767px) {
  .cp-popup {
    overflow-y: auto;
  }
}

.cp-popup .fancybox-close-small {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: 600;
  font-size: var(--fontSize-small);
  z-index: 2;
}
.cp-popup .fancybox-close-small::after {
  color: #595959;
}

.cp-popup .cp-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
}
.cp-popup .cp-container > div {
  height: 700px;
  overflow-y: auto;
}
.cp-popup .cp-container .h4-text {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .cp-popup .cp-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cp-popup .cp-container > div {
    overflow: unset;
    height: 100%;
  }
}

.cp-popup .cp-content {
  position: relative;
  width: 100%;
  max-width: 60%;
  padding: 30px;
  max-height: 600px;
}
.cp-popup .cp-content .content--body * {
  margin: 0;
}
.cp-popup .cp-content h2 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cp-popup .cp-content {
    padding: 30px 30px 15px;
    max-width: 100%;
    overflow: unset;
    max-height: unset;
  }
}

.cp-popup .cp-content .content--body h3 {
  font-size: var(--fontSize-regular);
  color: #595959;
  margin-bottom: 20px;
}
.cp-popup .cp-content .content--body ul {
  margin: 0;
}

.cp-popup .cp-form {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 40%;
  border-left: 1px solid #cbced5;
  padding: 30px;
  overflow: auto;
}
.cp-popup .cp-form h2 {
  margin-bottom: 30px;
  color: #595959;
  line-height: 1.3;
}
.cp-popup .cp-form .g-recaptcha {
  margin-bottom: 15px;
}
.cp-popup .cp-form form > .button--primary {
  display: block;
  margin: 0 auto;
  margin-left: 0;
}
.cp-popup .cp-form .input-wrap {
  margin-bottom: 15px;
}
.cp-popup .cp-form .input-wrap input {
  min-height: 40px;
}
@media (max-width: 767px) {
  .cp-popup .cp-form {
    position: relative;
    top: unset;
    max-width: 100%;
    padding: 30px;
  }
}