:root {
  --ph-col-grey-landing-background: hsla(240, 3%, 12.9%, 1);
  --ph-col-grey-landing-background-less-opacity: hsla(240, 3%, 12.9%, 1);
}

@media (min-width: 1024px) {
  h2 {
    font-size: var(--ph-fs-25);
  }
  p, li {
    font-size: var(--ph-fs-16);
  }
}
body, html {
  display: grid;
  margin: 0 auto !important;
}

body {
  overflow-y: initial;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 50px;
}

sl-input:not(:last-of-type) {
  margin-bottom: var(--sl-spacing-small);
}

.input-holder sl-button {
  margin: 20px 0 10px;
  width: 100%;
}
.input-holder sl-button::part(base) {
  color: var(--ph-col-white);
  font-size: var(--ph-fs-16);
}

.restrict-width {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .restrict-width {
    padding: 0 15px;
  }
}
.restrict-width > p {
  padding: 0 5px;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 10;
}

.landing-section {
  text-align: center;
  position: relative;
  max-width: 100vw;
  overflow: hidden;
  padding: 60px 0;
}

.landing-bg-light {
  background: var(--ph-col-white);
  color: var(--ph-col-grey-text-landing);
}
.landing-bg-light h2 span, .landing-bg-light .restrict-width > p {
  background: white;
  z-index: 1;
  position: relative;
}

.landing-bg-dark {
  background-image: url("/img/landing/bg_beton.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--ph-col-white);
}
.landing-bg-dark h2 {
  color: var(--ph-col-white);
}
.landing-bg-dark sl-card::part(base) {
  border: none;
}

.background-image-excavator {
  position: absolute;
  bottom: 100px;
  left: -65px;
  width: 200px;
  opacity: 0.5;
  z-index: 0;
}
@media (min-width: 768px) {
  .background-image-excavator {
    bottom: 25px;
    left: -65px;
  }
}
@media (min-width: 1024px) {
  .background-image-excavator {
    bottom: 160px;
  }
}

.background-image-tool {
  position: absolute;
  bottom: -190px;
  right: -105px;
  width: 250px;
  opacity: 0.5;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .background-image-tool {
    bottom: 70px;
    right: -100px;
  }
}
@media (min-width: 1024px) {
  .background-image-tool {
    bottom: 150px;
    right: -130px;
    width: 350px;
  }
}

.background-image-gears {
  position: absolute;
  top: -15px;
  right: -65px;
  width: 200px;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .background-image-gears {
    top: -45px;
    right: 155px;
  }
}
@media (min-width: 1024px) {
  .background-image-gears {
    top: -45px;
    right: 200px;
    width: 250px;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: 300px;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 350px);
  }
}
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 350px);
  }
}
.card-grid sl-card {
  height: 100%;
  z-index: 1;
}
.card-grid sl-card::part(base) {
  height: 100%;
  border-radius: 10px;
  border-width: 2px;
  background: var(--ph-col-white);
  color: var(--ph-col-grey-text-landing);
}
.card-grid sl-card::part(body) {
  padding: 25px 40px;
}
.card-grid sl-card sl-icon + h3 {
  color: var(--ph-col-grey-text-landing);
}
.card-grid sl-card p:last-of-type {
  margin-bottom: 0;
}
.card-grid sl-icon {
  color: var(--ph-col-beige);
  font-size: var(--ph-fs-25);
  display: block;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .card-grid sl-icon {
    font-size: 35pt;
  }
}
.card-grid .cta-card {
  z-index: 1;
}
.card-grid .cta-card:hover {
  text-decoration: none;
}
.card-grid .cta-card:hover sl-card::part(base) {
  background: var(--ph-col-grey-light);
}

.beige-fill {
  background: var(--ph-col-beige);
  color: var(--ph-col-white);
}

.tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 768px) {
  .tile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}
@media (min-width: 1024px) {
  .tile-grid {
    gap: 35px 75px;
  }
}
.tile-grid h3 {
  border-radius: 10px;
  padding: 10px;
}
.tile-grid img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.tile-grid ul {
  text-align: left;
  list-style: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
}
.tile-grid ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--ph-fs-12);
  flex: 0 0 50%;
}
.tile-grid ul li sl-icon {
  color: var(--ph-col-beige);
  font-size: var(--ph-fs-25);
  flex-shrink: 0;
}
.tile-grid .check-lists {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
}

.cable-image-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .cable-image-container {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .cable-image-container {
    grid-template-columns: 1fr 1fr;
  }
}
.cable-image-container img {
  max-width: 100%;
}

sl-button.landing-button::part(base) {
  font-size: var(--ph-fs-12);
  font-weight: bold;
}
sl-button.landing-button::part(label) {
  padding: var(--sl-spacing-2x-small) var(--sl-spacing-2x-large);
}

.testimonials {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 50px;
  justify-content: center;
}
.testimonials img {
  max-height: 45px;
}

.landing-register .register-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .landing-register .register-content {
    padding: 40px;
  }
}
@media (min-width: 1024px) {
  .landing-register .register-content {
    padding: 0 180px;
  }
}
.landing-register .register-content.wide {
  width: auto;
}
.landing-register .register-content sl-alert {
  margin: 15px 0;
}
.landing-register .register-content sl-alert::part(message) {
  line-height: 1.3em;
}
@media (min-width: 768px) {
  .landing-register .register-content sl-alert::part(message) {
    font-size: var(--ph-fs-12);
  }
}
.landing-register .register-content .input-holder {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .landing-register .register-content .input-holder {
    flex-direction: row;
    justify-content: space-between;
    width: 40vw;
  }
  .landing-register .register-content .input-holder sl-input {
    width: 49%;
  }
}
.landing-register .register-content form {
  padding: 0 5px;
}
.landing-register .background-image-tool {
  position: absolute;
  bottom: 30px;
  left: 10px;
  width: 150px;
  opacity: 0.3;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .landing-register .background-image-tool {
    bottom: -80px;
    left: -75px;
  }
}
.landing-register .background-image-gears {
  position: absolute;
  bottom: -120px;
  right: -55px;
  width: 200px;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .landing-register .background-image-gears {
    bottom: -100px;
    right: -120px;
  }
}
.landing-register .background-image-cable {
  position: absolute;
  bottom: 115px;
  right: -90px;
  width: 200px;
  opacity: 0.1;
}
@media (min-width: 1024px) {
  .landing-register .background-image-cable {
    width: 250px;
  }
}
.landing-register .background-image-cable2 {
  position: absolute;
  top: -15px;
  left: -20px;
  width: 200px;
  opacity: 0.1;
}
@media (min-width: 1024px) {
  .landing-register .background-image-cable2 {
    width: 250px;
  }
}

.cable-image-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .cable-image-container {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .cable-image-container {
    grid-template-columns: 1fr 1fr;
  }
}
.cable-image-container img {
  max-width: 100%;
}

sl-button.landing-button::part(base) {
  font-size: var(--ph-fs-12);
  font-weight: bold;
}
sl-button.landing-button::part(label) {
  padding: var(--sl-spacing-2x-small) var(--sl-spacing-2x-large);
}

.testimonials {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 50px;
  justify-content: center;
}
.testimonials img {
  max-height: 45px;
}

.landing-register .register-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .landing-register .register-content {
    padding: 40px;
  }
}
@media (min-width: 1024px) {
  .landing-register .register-content {
    padding: 0 180px;
  }
}
.landing-register .register-content.wide {
  width: auto;
}
.landing-register .register-content sl-alert {
  margin: 15px 0;
}
.landing-register .register-content sl-alert::part(message) {
  line-height: 1.3em;
}
@media (min-width: 768px) {
  .landing-register .register-content sl-alert::part(message) {
    font-size: var(--ph-fs-12);
  }
}
.landing-register .register-content .input-holder {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .landing-register .register-content .input-holder {
    flex-direction: row;
    justify-content: space-between;
    width: 40vw;
  }
  .landing-register .register-content .input-holder sl-input {
    width: 49%;
  }
}
.landing-register .register-content form {
  padding: 0 5px;
}
.landing-register .background-image-tool {
  position: absolute;
  bottom: 30px;
  left: 10px;
  width: 150px;
  opacity: 0.3;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .landing-register .background-image-tool {
    bottom: -80px;
    left: -75px;
  }
}
.landing-register .background-image-gears {
  position: absolute;
  bottom: -120px;
  right: -55px;
  width: 200px;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .landing-register .background-image-gears {
    bottom: -100px;
    right: -120px;
  }
}
.landing-register .background-image-cable {
  position: absolute;
  bottom: 115px;
  right: -90px;
  width: 200px;
  opacity: 0.1;
}
@media (min-width: 1024px) {
  .landing-register .background-image-cable {
    width: 250px;
  }
}
.landing-register .background-image-cable2 {
  position: absolute;
  top: -15px;
  left: -20px;
  width: 200px;
  opacity: 0.1;
}
@media (min-width: 1024px) {
  .landing-register .background-image-cable2 {
    width: 250px;
  }
}

.landing .landing-top {
  color: var(--ph-col-white);
  background: var(--ph-col-primary);
}
.landing .landing-top .restrict-width {
  display: flex;
  justify-content: space-between;
  padding: 5px 15px;
  align-items: center;
  height: 51px;
}
@media (min-width: 768px) {
  .landing .landing-top .restrict-width {
    justify-content: flex-end;
    padding: 15px;
  }
  .landing .landing-top .restrict-width .mail {
    margin-right: 30px;
  }
}
.landing .landing-top .restrict-width .anchors {
  margin-left: auto;
  position: initial;
  padding: initial;
}
@media (min-width: 768px) {
  .landing .landing-top .restrict-width .anchors {
    display: flex;
    align-items: center;
  }
}
.landing .landing-top .restrict-width .anchors .login {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .landing .landing-top .restrict-width .anchors .login::part(label) {
    font-size: var(--ph-fs-12);
  }
}
.landing .landing-top .restrict-width .anchors .register {
  font-size: var(--ph-fs-9);
  margin-right: 15px;
}
@media (min-width: 768px) {
  .landing .landing-top .restrict-width .anchors .register {
    font-size: var(--ph-fs-12);
  }
}
.landing .landing-top .restrict-width .anchors.hidden {
  display: none;
}
.landing .landing-top .restrict-width sl-dropdown sl-icon-button::part(base) {
  color: var(--ph-col-white);
}
.landing .landing-top a {
  color: var(--ph-col-white);
}
.landing .landing-top .contact.mail {
  margin-right: 20px;
}
.landing .landing-top .contact.phone {
  margin-right: auto;
}
.landing .landing-top .contact a {
  display: flex;
  align-items: center;
}
.landing .landing-top .contact sl-icon {
  margin-right: 5px;
}
.landing .landing-top .hide-on-pinned {
  display: none;
}
@media (min-width: 768px) {
  .landing .landing-top .hide-on-pinned {
    display: block;
  }
}
.landing .landing-logo-login {
  background: var(--ph-col-white);
  z-index: 1;
}
.landing .landing-logo-login .restrict-width {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .landing .landing-logo-login .restrict-width {
    flex-direction: row;
    padding: 5px 15px;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .landing .landing-logo-login .restrict-width {
    padding: 5px 40px;
  }
}
.landing .landing-logo-login .logo {
  max-width: 230px;
  margin: 20px auto;
  display: block;
}
@media (min-width: 768px) {
  .landing .landing-logo-login .logo {
    width: auto;
    height: 54px;
  }
}
.landing .landing-logo-login .container-actions {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .landing .landing-logo-login .container-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
.landing .landing-logo-login .button-login {
  width: 100%;
}
@media (min-width: 768px) {
  .landing .landing-logo-login .button-login {
    width: auto;
  }
}
.landing .landing-logo-login .button-login sl-dropdown, .landing .landing-logo-login .button-login sl-button[slot=trigger] {
  width: 100%;
}
@media (min-width: 768px) {
  .landing .landing-logo-login .button-login sl-dropdown, .landing .landing-logo-login .button-login sl-button[slot=trigger] {
    width: auto;
  }
}
.landing .landing-logo-login .button-login sl-button[slot=trigger] {
  min-width: 135px;
}
.landing .landing-logo-login .button-login sl-button[slot=trigger]::part(base) {
  font-size: var(--ph-fs-14);
}
.landing .landing-logo-login .button-login sl-dropdown::part(panel) {
  width: 330px;
  padding: 15px;
  background: var(--ph-col-primary);
  border-color: var(--ph-col-primary);
}
@media (min-width: 768px) {
  .landing .landing-logo-login .button-login sl-dropdown {
    margin-right: 25px;
  }
  .landing .landing-logo-login .button-login sl-dropdown sl-button[slot=trigger]::part(base) {
    font-size: var(--ph-fs-18);
  }
  .landing .landing-logo-login .button-login sl-dropdown sl-button[slot=trigger]::part(label) {
    padding: var(--sl-spacing-2x-small) var(--sl-spacing-2x-large);
  }
}
.landing .landing-logo-login .button-login sl-dropdown a {
  color: var(--ph-col-white);
  display: flex;
  justify-content: flex-end;
  margin: 5px 0;
}
.landing .landing-logo-login .button-login sl-dropdown .passwordInfoText {
  color: var(--ph-col-white);
}
.landing .landing-logo-login .button-login sl-dropdown #resetViaPinForm .info-text {
  color: var(--ph-col-white);
}
.landing .landing-logo-login .button-login sl-dropdown #resetViaPinForm sl-input[name=email] {
  margin-top: var(--sl-spacing-medium);
  width: 205px;
  justify-self: center;
}
.landing .landing-logo-login .button-login sl-dropdown #resetViaPinForm sl-input[name=email]::part(form-control-label) {
  color: var(--ph-col-white);
}
.landing .landing-logo-login .button-login sl-dropdown #resetViaPinForm .pin-text {
  margin: var(--sl-spacing-small) 0;
  color: var(--ph-col-white);
}
.landing .landing-logo-login .button-login sl-dropdown #resetViaPinForm .pin-holder {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.landing .landing-logo-login .button-login sl-dropdown #resetViaPinForm .pin-holder sl-input {
  max-width: 33px;
  margin-bottom: 0;
}
.landing .landing-logo-login .button-login sl-dropdown #resetViaPinForm .pin-holder sl-input::part(input) {
  padding: 0;
  text-align: center;
  font-size: var(--ph-fs-20);
}
.landing .landing-logo-login .button-login sl-dropdown #resetViaPinForm .back-button {
  justify-content: center;
}
.landing .landing-logo-login .register {
  font-size: var(--ph-fs-18);
  color: var(--ph-col-primary);
  margin: 15px 0;
  line-height: var(--ph-fs-20);
}
.landing .landing-logo-login .register span {
  font-size: var(--ph-fs-14);
  color: var(--ph-col-beige);
  text-decoration: underline;
}
.landing .landing-logo-login .register:hover, .landing .landing-logo-login .register:visited {
  text-decoration: none;
}
.landing .button-login .passwordInfoText {
  font-size: 10pt;
  margin-top: 20px;
}
.landing .button-login .input-holder #passwordStrengthContainer {
  margin: 10px 0 0;
}
.landing .button-login .input-holder #passwordStrengthContainer sl-progress-bar[value="25"] {
  --sl-color-primary-600: var(--sl-color-danger-600);
}
.landing .button-login .input-holder #passwordStrengthContainer sl-progress-bar[value="50"] {
  --sl-color-primary-600: var(--sl-color-warning-600);
}
.landing .button-login .input-holder #passwordStrengthContainer sl-progress-bar[value="75"] {
  --sl-color-primary-600: var(--sl-color-primary-100);
}
.landing .button-login .input-holder #passwordStrengthContainer sl-progress-bar[value="100"] {
  --sl-color-primary-600: var(--sl-color-success-600);
}
.landing .button-login .input-holder sl-alert {
  margin: 0 0 var(--sl-spacing-medium);
}
.landing .landing-pg-image {
  position: relative;
}
.landing .landing-pg-image img {
  width: 100%;
  height: auto;
  display: block;
}
.landing .landing-pg-image .teaser {
  width: 100%;
  background-color: rgb(var(--ph-col-white-transparancy-landing));
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .landing .landing-pg-image .teaser {
    position: absolute;
    top: 50%;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 35px 25px;
    animation: slide-left 3s;
    border-radius: 20px;
    max-width: 750px;
  }
}
@media (min-width: 1024px) {
  .landing .landing-pg-image .teaser {
    max-width: 1000px;
  }
}
.landing .landing-pg-image .teaser h2, .landing .landing-pg-image .teaser p {
  color: var(--ph-col-grey-infotext);
}
@keyframes slide-left {
  from {
    left: 150%;
  }
  to {
    left: 50%;
  }
}

.landing-footer {
  background: var(--ph-col-primary);
  color: var(--ph-col-white);
  padding: 5px 15px;
  text-align: center;
  height: min-content;
}
@media (min-width: 768px) {
  .landing-footer .restrict-width {
    text-align: initial;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.landing-footer a {
  color: var(--ph-col-white);
}
.landing-footer .name-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .landing-footer .name-links {
    flex-direction: row;
    gap: 35px;
    margin-bottom: 0;
  }
}
.landing-footer .name, .landing-footer .links {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (min-width: 1024px) {
  .landing-footer .name, .landing-footer .links {
    font-size: var(--ph-fs-12);
  }
}
.landing-footer .socials a {
  display: inline-block;
}
.landing-footer .socials a:not(:last-of-type) {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .landing-footer .socials a:not(:last-of-type) {
    margin-right: 15px;
  }
}
.landing-footer .socials a sl-icon {
  font-size: var(--ph-fs-18);
}

h2:has(b) span, h3:has(b) span {
  font-weight: normal;
}

/*# sourceMappingURL=landingpage.css.map */
