@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
:root {
  --main-txt-color: #606060;
  --light-txt-color: #ffffff;
  --gray-txt-color: #cecece;
  --superfund-green: #8dba38;
  --baha-blue: #5bc6cd;
  --box-bg-color: #3c3c3c;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  margin: 0 auto;
  padding: 0;
  max-width: 2200px;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
  color: var(--main-txt-color);
}

.container {
  max-width: 1400px;
  margin: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

img,
video {
  display: block;
}

video::-webkit-media-controls {
  display: none;
}

section .descripton {
  padding: 5.5rem 0;
}

section .descripton h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: Helvetica-Bold;
}

section .descripton p {
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.4;
  font-weight: 400;
  padding-bottom: 1rem;
}

section .box-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 820px) {
  section .box-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  section .box-wrapper article:nth-child(1) .img-container, section .box-wrapper article:nth-child(3) .img-container {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  section .box-wrapper article:nth-child(4) .img-container {
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 1 !important;
    grid-column: 2/3 !important;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}

section .box-wrapper article {
  height: 280px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

section .box-wrapper article:nth-child(3) .img-container, section .box-wrapper article:nth-child(4) .img-container {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

section .box-wrapper article a {
  text-decoration: none;
  position: relative;
}

section .box-wrapper article a::after {
  content: "";
  background: url(../../img/arrow-right.svg) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

section .box-wrapper article a:hover::after {
  opacity: 1;
}

@media only screen and (max-width: 550px) {
  section .box-wrapper article {
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 1rem;
  }
}

section .box-wrapper .info-box {
  background: var(--superfund-green);
  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%;
}

section .box-wrapper .info-box h3 {
  text-transform: uppercase;
  color: var(--light-txt-color);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 400;
  padding: 1.5rem 1.5rem 0;
  font-family: Helvetica-Cond;
  position: relative;
}

@media only screen and (max-width: 450px) {
  section .box-wrapper .info-box h3 {
    margin-bottom: 1rem;
  }
}

section .box-wrapper .info-box p {
  color: var(--light-txt-color);
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 300;
  padding: 0 1.5rem 1.5rem;
}

section .box-wrapper .img-container {
  background: #9fd063;
  overflow: hidden;
}

section .box-wrapper .img-container img,
section .box-wrapper .img-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}

section .box-wrapper .img-container img {
  pointer-events: none;
}

section.baha {
  margin-bottom: 7rem;
}

section.baha .box-wrapper article .info-box {
  background: var(--baha-blue);
}

section.baha .box-wrapper .img-container {
  background: #c0e6e8;
}

section h4 {
  padding-bottom: 0.125rem;
}

section .path {
  grid-column: -1/1;
  margin-bottom: 2rem;
  color: var(--main-txt-color);
}

section .path a {
  text-decoration: none;
  color: var(--main-txt-color);
}

section .path a.step {
  color: var(--position-theme-color);
}

section .path a.step:hover {
  text-decoration: underline;
}

section .path a.current {
  pointer-events: none;
}

@media only screen and (max-width: 960px) {
  section .path {
    padding-left: 1rem;
  }
}

section.position-details {
  --position-theme-color: #8dba38;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 320px;
      grid-template-columns: auto 320px;
  -webkit-column-gap: 4rem;
          column-gap: 4rem;
  padding: 4rem;
}

section.position-details.baha-position {
  --position-theme-color: #5bc6cd;
}

@media only screen and (max-width: 960px) {
  section.position-details {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  section.position-details.container {
    padding-left: 0;
    padding-right: 0;
  }
}

section.position-details .description h2 {
  text-transform: uppercase;
}

section.position-details .description > div {
  margin-top: 1.5em;
}

@media only screen and (max-width: 960px) {
  section.position-details .description {
    padding-inline: 1rem;
  }
}

section.position-details .description h2 {
  color: var(--position-theme-color);
  font-family: Helvetica-Cond;
  margin-bottom: 0.1rem;
}

section.position-details .description .position-subheader {
  margin-bottom: 1.5rem;
}

section.position-details .description > div ul {
  margin-block: 0.5rem;
  margin-top: 1rem;
  padding-right: 0;
  padding-left: 0;
}

section.position-details .description > div ul li {
  color: var(--main-txt-color);
  margin-bottom: 0.5rem;
  list-style-type: none;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.position-details .description > div ul li:before {
  content: "\2022 ";
  color: var(--position-theme-color);
  padding-right: 1rem;
}

section.position-details .description > div p {
  margin-top: 1rem;
}

section.position-details .description > div p:first-child {
  margin-top: 2rem;
}

section.position-details .description > div p a {
  color: var(--position-theme-color);
  text-underline-offset: 2px;
}

section.position-details .other-positions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section.position-details .other-positions h2 {
  font-family: Helvetica-Cond;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

@media only screen and (max-width: 960px) {
  section.position-details .other-positions h2 {
    grid-column: -1/1;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
  }
}

section.position-details .other-positions article {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  background: var(--position-theme-color);
}

@media only screen and (max-width: 960px) {
  section.position-details .other-positions article {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  section.position-details .other-positions article:nth-child(odd) a {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media only screen and (max-width: 460px) {
  section.position-details .other-positions article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 1rem;
  }
  section.position-details .other-positions article:nth-child(odd) a {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

section.position-details .other-positions article a {
  text-decoration: none;
  position: relative;
}

section.position-details .other-positions article a .info-box {
  min-height: 190px;
  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;
  padding: 1.5rem;
}

@media only screen and (max-width: 460px) {
  section.position-details .other-positions article a .info-box {
    min-height: 130px;
  }
}

section.position-details .other-positions article a .info-box::after {
  content: "";
  background: url(../img/arrow-right.svg) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

section.position-details .other-positions article a .info-box:hover::after {
  opacity: 1;
}

section.position-details .other-positions article a .info-box h3 {
  color: var(--light-txt-color);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  font-family: Helvetica-Cond;
}

section.position-details .other-positions article a .info-box p {
  color: var(--light-txt-color);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
}

section.position-details .other-positions article .img-container {
  height: 190px;
}

section.position-details .other-positions article img,
section.position-details .other-positions article video {
  width: 100%;
  height: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}

section .back-btn {
  margin-top: 3rem;
  text-decoration: none;
  color: var(--main-txt-color);
  border: 1px solid #e1e1e1;
  width: 170px;
  height: 40px;
  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;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

section .back-btn:hover {
  border-color: var(--position-theme-color);
}

@media only screen and (max-width: 960px) {
  section .back-btn {
    display: none;
  }
}

section .back-btn svg {
  height: 14px;
  margin-right: 0.6rem;
  stroke: var(--position-theme-color);
}

section.subpage {
  padding: 5rem 1rem;
}

section.subpage .path {
  padding-left: 0;
}

section.subpage h1 {
  font-family: Helvetica-Cond;
  color: var(--superfund-green);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}

section.subpage h3 {
  margin: 2.2rem 0 1rem;
}

section.subpage p {
  margin-bottom: 1rem;
  line-height: 1.3;
}

section.subpage a {
  color: var(--superfund-green);
  text-underline-offset: 2px;
}

section.subpage ul {
  margin-block: 0.5rem;
  padding-left: 0;
  padding-right: 0;
}

section.subpage ul li {
  color: var(--main-txt-color);
  margin-bottom: 0.5rem;
  list-style-type: none;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.subpage ul li:before {
  content: "\2022 ";
  color: var(--superfund-green);
  padding-right: 1rem;
}

section.subpage ul .sublist {
  padding: 0 1.5rem;
}

section.subpage ul .sublist > ul.padding-bottom {
  padding-bottom: 1rem;
}

section.subpage ul .sublist > ul li p {
  margin-bottom: 0;
}

section.subpage .underline-txt {
  text-decoration: underline;
  display: block;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  min-height: 2rem;
  background-color: var(--superfund-green);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ticker-wrap .ticker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 35px;
  white-space: nowrap;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-name: ticker;
          animation-name: ticker;
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}

.ticker-wrap .ticker .ticker-item {
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 1rem;
  color: white;
  position: relative;
}

.ticker-wrap .ticker .ticker-item::after {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--light-txt-color);
  position: absolute;
  right: 0;
  top: 0;
}

.ticker-wrap .ticker .ticker-item::after:last-child::after {
  display: none;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@font-face {
  font-family: Helvetica-Bold;
  src: url(./fonts/HelveticaLTStd-BoldCond.otf);
}

@font-face {
  font-family: Helvetica-Cond;
  src: url(./fonts/HelveticaLTStd-Cond.otf);
}

header .top-info {
  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;
  min-height: 120px;
}

@media only screen and (max-width: 900px) {
  header .top-info {
    min-height: 100px;
  }
}

@media only screen and (max-width: 650px) {
  header .top-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 0;
  }
}

header .top-info h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.75rem;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-family: Helvetica-Cond;
}

header .top-info .logo-wrapp {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .top-info .logo-wrapp > a:first-of-type {
  margin-right: 3rem;
}

header .top-info .logo-wrapp img {
  display: block;
  height: 60px;
}

@media only screen and (max-width: 900px) {
  header .top-info .logo-wrapp img {
    height: 50px;
  }
}

@media only screen and (max-width: 600px) {
  header .top-info .logo-wrapp img {
    height: 45px;
  }
}

@media only screen and (max-width: 400px) {
  header .top-info .logo-wrapp img {
    height: 35px;
  }
}

header .hero-section {
  height: 750px;
  background: url(../img/hero-bg.jpeg) no-repeat center;
  background-size: cover;
  position: relative;
}

@media only screen and (max-width: 670px) {
  header .hero-section {
    height: 300px;
  }
}

header .hero-section::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #222;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.75;
}

header .hero-section .hero-container {
  min-height: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
}

header .hero-section .hero-container h1 {
  color: var(--light-txt-color);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  text-transform: uppercase;
  text-align: center;
  font-family: Helvetica-Cond;
  line-height: 1.5;
}

@media only screen and (max-width: 600px) {
  header .hero-section .hero-container h1 br {
    display: none;
  }
}

header .hero-section .hero-container h2 {
  color: var(--light-txt-color);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-top: 1.5rem;
  text-align: center;
  text-transform: uppercase;
}

header .hiring-video-section {
  padding: 5rem 0;
  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;
}

header .hiring-video-section video {
  width: 100%;
  max-width: 960px;
}

header .goodies-section {
  min-height: 535px;
  background: #f3f3f3;
  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;
  padding: 4rem 0;
}

header .goodies-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  color: var(--main-txt-color);
  margin-bottom: 4rem;
  text-align: center;
  font-family: Helvetica-Cond;
}

header .goodies-section .goodies-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  grid-gap: 3rem;
}

@media only screen and (max-width: 1260px) {
  header .goodies-section .goodies-container {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 760px) {
  header .goodies-section .goodies-container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: initial;
            column-gap: initial;
  }
}

@media only screen and (max-width: 600px) {
  header .goodies-section .goodies-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}

header .goodies-section .goodies-container > div {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .goodies-section .goodies-container > div .image-holder {
  width: 22vw;
  max-width: 150px;
  height: 22vw;
  max-height: 150px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 600px) {
  header .goodies-section .goodies-container > div .image-holder {
    width: 60vw;
    height: 60vw;
    max-width: initial;
    max-height: initial;
  }
}

header .goodies-section .goodies-container > div span {
  color: var(--main-txt-color);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.1rem);
  text-align: center;
}

@media only screen and (max-width: 600px) {
  header .goodies-section .goodies-container > div span {
    width: 90%;
    font-size: 1.3rem;
  }
}

header .goodies-section .goodies-container > div:nth-child(1) .image-holder {
  background-image: url(../img/kaffe_and_tee.jpg);
}

header .goodies-section .goodies-container > div:nth-child(2) .image-holder {
  background-image: url(../img/modern-office.jpg);
}

header .goodies-section .goodies-container > div:nth-child(3) .image-holder {
  background-image: url(../img/gesundes_fruhstuck.jpg);
}

header .goodies-section .goodies-container > div:nth-child(4) .image-holder {
  background-image: url(../img/plant_based_lunch.jpg);
}

header .goodies-section .goodies-container > div:nth-child(5) .image-holder {
  background-image: url(../img/tischwuzzler_tischtennis.jpeg);
}

header .goodies-section .goodies-container > div:nth-child(6) .image-holder {
  background-image: url(../img/sport-and-team.jpg);
}

header.secondary {
  background: var(--box-bg-color);
}

header.secondary h3 {
  color: var(--light-txt-color);
}

footer {
  background: var(--box-bg-color);
  padding: 5rem 0;
  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;
}

footer p {
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
  color: var(--gray-txt-color);
}

footer p:first-child {
  margin-bottom: 1.5rem;
  text-align: justify;
}

footer p:nth-child(2) {
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--gray-txt-color);
  margin-inline: 0.5rem;
  text-underline-offset: 2px;
}

footer a.no-underline {
  text-decoration: none;
}

footer a:hover {
  color: var(--light-txt-color);
  text-decoration: underline;
}
/*# sourceMappingURL=main.css.map */