
 :root {
   --C30-application-bg: #595959;
   --C31-application-bg-hover: #dd4814;
   --C33-application-text: #fff;
   --C34-application-text-hover: #fff;
   --C40-whatsapp-bg: #009588;
   --C41-whatsapp-bg-hover: #00675e;
   --C42-whatsapp-text: #fff;
   --C43-whatsapp-text-hover: #fff;
 }
 .application {
   background: var(--C30-application-bg);
 }
 .application:hover {
   background: var(--C31-application-bg-hover);
 }
 .application a.btn {
   color: var(--C33-application-text);
 }
 .application a.btn:hover {
   color: var(--C34-application-text-hover);
 }
 .whatsapp {
   background-color: var(--C40-whatsapp-bg);
 }
 .whatsapp:hover {
   background-color: var(--C41-whatsapp-bg-hover);
 }
 .whatsapp a.btn {
   color: var(--C42-whatsapp-text);
 }
 .whatsapp a.btn:hover {
   color: var(--C43-whatsapp-text-hover);
 }
body {
  /* C-01 - Background */
  background: #e9e9e9;
}
.container {
  /* C-02 - Background-Container First */
  background: #fff;
}
.colorWrap {
  /* C-03 - Background-Container Second */
  /*background-color: #b2b2b2;*/
  background-color: #d3d1d2;
}
.imgSingle {
  background: #fff;
}
.line, .jobTitle {
  /* C-04 - Primary Color */
  background-color: #fff;
}
.footer {
  /* C-04 - Primary Color rgba */
  background: linear-gradient(180deg, rgba(248, 179, 35, 0) 80px, rgba(248, 179, 35, 1) 80px, rgba(248, 179, 35, 1) 100%);
}
.highlight {
  /* C-05 - Accent Color */
  background-color: #fff;
}
.div-apply {
  /* C06 - Background CTA */
  background: #595959;
}
.div-apply:hover {
  /* C07 - Background CTA Hover */
  background: #dd4814;
}
.jobTitle h1, .jobTitle h3 {
  /* C08 - Jobtitle */
  color: #231f20;
}
a.btn-apply, a.btn-apply:hover {
  /* C09 - CTA */
  color: #fff;
}
a, .content h2, .companyInfo strong, .contact ul li:first-child, .contact strong {
  /* C-10 - Primary Color */
  color: #231f20;
}
.content ul li::before {
  /* C-11 - Bullet Points */
  color: #dd4814;
}
body, .textWrappContent {
  /* C12 - Text First */
  color: #231f20;
}
.companyInfo, .introduction, .contact ul, .contact a, .contact a strong {
  /* C13 - Text Second */
  color: #231f20;
}
/* Firefox Workaround - Print */
@media only print and (min--moz-device-pixel-ratio:0) {
  a, .content h2, .contact ul li:first-child, .companyInfo strong, .contact strong {
    /* C-04 - Primary Color */
    background-image: linear-gradient(90deg, #231f20, #231f20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .content ul li::before {
    /* C-04 - Primary Color */
    background-image: linear-gradient(90deg, #dd4814, #dd4814);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .jobTitle h1, .jobTitle h2 {
    /* C08 - Jobtitle */
    background-image: linear-gradient(90deg, #231f20, #231f20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  a.btn-apply {
    /* C09 - CTA */
    color: #fff;
    background-image: linear-gradient(90deg, white, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .textWrappContent {
    /* C12 - Text First */
    background-image: linear-gradient(90deg, #231f20, #231f20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .contact, .contact ul, .contact a, .contact a strong, .companyInfo, .introduction {
    /* C13 - Text Second */
    background-image: linear-gradient(90deg, #231f20, #231f20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}