.landing-section {
  background-color: var(--colorPrimaryDark);
  height: 100vh;
  position: relative;
}

.landing-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 10;
  position: relative;
}

.landing-wrapper .logo {
  display: none;
}

.klaus {
  position: absolute;
  bottom: 0;
  right: 100px;
}

.background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.sticky {
  position: sticky;
  top: 50px;
  height: 150px;
  display: flex;
  /* width: 100%; */
  justify-content: flex-end;
  align-items: flex-start;
  right: 50px;
  margin-top: -150px;
  z-index: 900;
  padding-right: 50px;
}

.sticky .button {
  font-size: 20px;
  padding: 15px 30px;
  border: 1px solid var(--colorBG);
}

.sticky .contact-button {
  width: 60px;
  height: 60px;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--colorSecondary);
  border: 1px solid var(--colorBG);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: top 0.3s ease, bottom 0.3s ease;
  position: relative;
  /* bottom: 50px; */
  /* right: 50px; */
  margin-left: 30px;
  /* z-index: 900; */
}

.sticky .contact-button i {
  font-size: 20px;
  color: white;
}

@media (max-width: 768px) {
  .background {
    object-position: left;
  }

  .sticky {
    justify-content: flex-start;
    right: unset;
    left: 50px;
  }

  .sticky .button {
    display: none;
  }

  .landing-wrapper .logo {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 50px;
    object-fit: contain;
    position: absolute;
    display: block;
  }
}
