:root {
  --background: white;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --border: #C7C7C7;
  --grey: #6B6981;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #f8f8f8;
  --grey-bg-5: #F6F6F6;
  --green: #87B229;
  --red: #E21313;
  --orange: #F18C00;
  --dark-blue: #0F1531;
  --text-color-main: #2D3643;
}

/* Tenant 1 (KM) theme */
.tenant1 {
  --brandPrimary: #e6007e;
  --brandPrimaryHover: #c00068;
  --brandSecondary: #f6f6f6;
  --brandSecondaryHover: #e5e5e5;
}

.cookie-consent-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.cookie-consent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cookie-consent-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}
.cookie-consent-container .cookie-consent-body {
  position: relative;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--box-shadow);
  max-width: 800px;
  width: 100%;
  padding: 28px 32px;
}
.cookie-consent-container .cookie-consent-body .cookie-consent-texts {
  border-right: 1px solid var(--border);
}
.cookie-consent-container .cookie-consent-body .cookie-consent-texts .cookie-consent-title {
  font-weight: 600;
}
.cookie-consent-container .cookie-consent-body .cookie-consent-texts .cookie-consent-description {
  margin: 0;
  font-size: 14px;
  color: var(--grey);
}
.cookie-consent-container .cookie-consent-body .cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 768px) {
  .cookie-consent-container {
    align-items: center;
    padding: 0;
  }
  .cookie-consent-container .cookie-consent-body {
    width: 80%;
    padding: 24px 12px;
  }
  .cookie-consent-container .cookie-consent-body .cookie-consent-texts {
    border-right: none;
    margin-bottom: 20px;
  }
  .cookie-consent-container .cookie-consent-body .cookie-consent-texts .cookie-consent-title {
    font-size: 18px;
  }
  .cookie-consent-container .cookie-consent-body .cookie-consent-button-group {
    flex-direction: column;
    gap: 10px;
  }
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
}
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px !important;
  font-family: "Poppins", sans-serif !important;
  color: var(--text-color-main) !important;
}

main {
  max-width: 100%;
  overflow: hidden;
}

h1 {
  font-size: 45px;
  letter-spacing: -2.25px;
  font-weight: bold;
}

h2 {
  font-size: 30px;
  letter-spacing: -1.5px;
}

h3 {
  font-size: 25px;
  letter-spacing: -1.25px;
}

h4 {
  font-size: 20px;
  letter-spacing: -1px;
}

.small-text {
  font-size: 14px;
}

a {
  cursor: pointer;
  color: var(--text-color-main);
}
a:hover {
  color: var(--text-color-main);
  text-decoration: underline;
}

input[type=radio] {
  accent-color: var(--brandPrimary);
}

.btn-primary, .btn-outline-primary {
  height: 50px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 5px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px !important;
  }
}
.info-drawer {
  position: relative;
  float: right;
}
.info-drawer .info-drawer-content {
  position: fixed;
  right: -100%;
  width: 600px;
  transition: right 0.4s ease;
  z-index: 1000;
  overflow-y: auto;
  border-radius: 14px;
  top: 33%;
}
.info-drawer .info-drawer-content .drawer-close-button {
  position: absolute;
  left: 10px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}
.info-drawer .info-drawer-content .row {
  margin-left: 0;
  margin-right: 0;
}
.info-drawer .info-drawer-content .drawer-left {
  background-color: var(--brandPrimary);
  color: white;
  padding: 20px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  gap: 10px;
}
.info-drawer .info-drawer-content .drawer-left .phone-hint {
  font-size: 17px;
}
.info-drawer .info-drawer-content .drawer-left .contact-phone {
  font-size: 20px;
  color: white;
  font-weight: 600;
}
.info-drawer .info-drawer-content .drawer-right {
  background-color: white;
  color: black;
  padding: 20px;
  font-size: 12px;
}
.info-drawer .info-drawer-content .drawer-right h5 {
  color: var(--brandPrimary);
  font-size: 17px;
}
.info-drawer .info-drawer-content .drawer-left,
.info-drawer .info-drawer-content .drawer-right {
  transition: background-color 0.3s ease;
}
.info-drawer .drawer-toggle:checked ~ .info-drawer-content {
  right: 0;
}
.info-drawer .info-drawer-toggle-area {
  position: fixed;
  right: -60px;
  z-index: 1001;
  top: 33%;
}
.info-drawer .info-drawer-toggle-area button {
  border: none;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--brandPrimary);
  color: white;
  padding: 10px 15px;
}
.info-drawer .info-drawer-toggle-area label {
  display: flex;
  align-items: center;
  float: right;
  width: 144px;
  height: 211px;
  gap: 10px;
  background-image: url("/images/png/contact.png");
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 10px;
  cursor: pointer;
}
.info-drawer .info-drawer-toggle-area .drawer-close-icon {
  display: none;
}
.info-drawer .info-drawer-toggle-area .drawer-open-label {
  display: inline;
}
.info-drawer .drawer-toggle:checked ~ .info-drawer-toggle-area label .drawer-close-icon {
  display: inline-block;
}
.info-drawer .drawer-toggle:checked ~ .info-drawer-toggle-area label .drawer-open-label {
  display: none;
}
.info-drawer .drawer-toggle:checked ~ .info-drawer-toggle-area {
  display: none;
}
@media (max-width: 1200px) {
  .info-drawer {
    display: none;
  }
}

.main-header {
  width: 100%;
  background: transparent;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
}
.main-header .header-container-lg {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
}
.main-header .header-container-lg.scrolled {
  background-color: white;
  box-shadow: 0 0 11px var(--box-shadow);
  border-radius: 0 0 30px 30px;
  transition: background-color 0.5s ease;
}
.main-header .hamburger-menu {
  display: none;
}
.main-header .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header .logo-container img {
  width: 100%;
}
.main-header .btn.btn-primary {
  height: auto;
}
.main-header .main-navigation {
  padding: 0 15px;
}
.main-header .main-navigation ul {
  margin: 0;
  padding: 0;
  display: inline-flex;
  list-style: none;
}
.main-header .main-navigation ul li:not(:last-of-type) {
  padding-right: 10px;
}
.main-header .main-navigation ul li a {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color-main);
}
.main-header .main-navigation ul li a span {
  display: inline-block;
  padding: 0 10px;
}
.main-header .main-navigation ul li a.active {
  color: var(--brandPrimary);
  font-weight: 600;
}
.main-header .main-navigation ul li a.active span {
  display: inline-block;
  border-bottom: 5px solid;
  padding: 0 10px;
}
.main-header .main-navigation ul li a :hover {
  color: var(--brandPrimary);
  text-decoration: none;
}
.main-header .main-navigation ul li a :hover span {
  display: inline-block;
  border-bottom: 2px solid;
  padding: 0 10px;
}

@media (max-width: 1200px) {
  .main-header .header-container-lg {
    display: none;
  }
}
.footer {
  padding: 40px 0;
  background-color: #2d3643;
  color: #fff;
}
.footer .footer-row {
  padding: 40px 0 20px 0;
}
.footer .footer-row:first-of-type {
  border-bottom: 1px solid var(--underline-2);
}
.footer .footer-row h4 {
  margin: 15px 0;
}
.footer .footer-row a {
  color: #fff;
}
.footer .payment-grid {
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: 20px;
  row-gap: 10px;
}
.footer .information-links {
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.footer .information-links a:not(:last-child) {
  margin-bottom: 10px;
}
.footer .magazin {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer .magazin .how-works-text {
  color: var(--brandPrimary);
  font-weight: bold;
  text-transform: uppercase;
}
.footer .magazin .separator {
  width: 1px;
  height: 20px;
  background-color: var(--underline);
  margin: 0 15px;
}
.footer .separator {
  width: 100%;
  height: 1px;
  background-color: var(--underline-2);
  margin-top: 15px;
  margin-bottom: 30px;
  opacity: 0.41;
}
.footer .telephone {
  text-decoration: none;
  color: #fff;
}
.footer .telephone:hover {
  text-decoration: underline;
}
.footer .opening-time {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}
.footer .opening-time b, .footer .opening-time span {
  font-size: 14px;
}
.footer .opening-time span {
  font-weight: lighter;
}
.footer .new-jobs-image {
  max-width: 164px;
  max-height: 164px;
}
.footer .social-grid {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  column-gap: 30px;
  row-gap: 10px;
}
.footer .social-grid img {
  cursor: pointer;
}

.license-footer {
  min-height: 57px;
  display: flex;
  align-items: center;
  background-color: var(--brandPrimary);
  color: #fff;
  font-size: 14px;
}
.license-footer span {
  color: white;
}
.license-footer .right-side {
  text-align: end;
}
.license-footer .right-side a:not(:last-child) {
  margin-right: 47px;
}

@media (max-width: 992px) {
  .license-footer {
    height: 77px;
  }
  .license-footer .row {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .license-footer .row .left-side, .license-footer .row .right-side {
    text-align: center;
  }
  .license-footer .row .right-side {
    margin-bottom: 10px;
  }
  .license-footer .row .right-side a:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .license-footer {
    height: 90px;
    padding: 15px 0;
  }
}
.not-found-page-container {
  height: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 150px auto;
}
.not-found-page-container .text-404 {
  font-size: 10em;
  font-family: "Comic Sans MS", sans-serif;
  color: var(--brandTertiary);
}
.not-found-page-container h1 {
  text-transform: uppercase;
}
.not-found-page-container h1 span {
  font-size: 30px;
}
.not-found-page-container .button-like {
  display: block;
  width: fit-content;
  font-weight: bold;
  background-color: var(--brandPrimary);
  color: white;
  padding: 15px 20px;
  margin-top: 20px;
}
.not-found-page-container .button-like:hover {
  text-decoration: none;
}

.partner-slideshow {
  margin-bottom: 60px;
}

/*# sourceMappingURL=not-found.css.map */
