.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 48px 24px;
  position: relative;
  background-color: var(--black);
}

.home .frame {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  align-items: flex-start;
  gap: 112px;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.home .luther-logo {
  position: relative;
  width: 99.22px;
  height: 32px;
  object-fit: cover;
}

.home .text-wrapper {
  position: relative;
  width: fit-content;
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-small-font-size);
  text-align: center;
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  text-decoration: underline;
  white-space: nowrap;
  font-style: var(--paragraph-small-font-style);
  transition: color 0.3s ease;
}

.home a:hover .text-wrapper {
  color: var(--white);
  transform: scale(0.98);
  transition: .2s;
}

.home .intro {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.home .image {
  position: relative;
  width: 48px;
  height: 48px;
  object-fit: cover;
  transition: transform .2s ease;

}

.intro .image:hover {
    transform: scale(1.15) rotate(-3deg);
}

.home .p {
  position: relative;
  align-self: stretch;
  font-family: var(--h1-font-family);
  font-weight: var(--h1-font-weight);
  color: var(--white);
  font-size: var(--h1-font-size);
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  font-style: var(--h1-font-style);
}

.home .div-2 {
  position: relative;
  align-self: stretch;
  font-family: var(--paragraph-font-family);
  font-weight: var(--paragraph-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-font-size);
  letter-spacing: var(--paragraph-letter-spacing);
  line-height: var(--paragraph-line-height);
  font-style: var(--paragraph-font-style);
}

.home .span {
  font-weight: var(--paragraph-font-weight);
  letter-spacing: var(--paragraph-letter-spacing);
  font-family: var(--paragraph-font-family);
  font-style: var(--paragraph-font-style);
  line-height: var(--paragraph-line-height);
  font-size: var(--paragraph-font-size);
}

a {
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  font-size: var(--paragraph-small-font-size);
  font-style: var(--paragraph-small-font-style);
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  transition: color 0.3s ease;
  transition: transform .2s ease;
  color: var(--opacity-white-50);
  text-decoration: underline;
  text-decoration-color: var(--opacity-white-50);
  transition: transform .3s ease;
}

a:hover {
  color: var(--white);
  text-decoration-color: var(--white);
  transform: scale(0.98);}

.home .text-wrapper-2 {
  font-weight: var(--paragraph-font-weight);
  letter-spacing: var(--paragraph-letter-spacing);
  text-decoration: underline;
  font-family: var(--paragraph-font-family);
  font-style: var(--paragraph-font-style);
  line-height: var(--paragraph-line-height);
  font-size: var(--paragraph-font-size);
}

.home .frame-2 {
  display: flex;
  align-items: center;
  gap: 96px;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
  overflow: visible;
  white-space: normal;
}

.home .logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 0;
}

.home .logo-set {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
  transition: transform .3s ease;
}

.home .logo-set img:hover{
  opacity: 75%;
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .home .logo-set {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 60px;
  }
  
  .home .hausjournal,
  .home .northbound-logo,
  .home .appinio-logo,
  .home .colority-logo,
  .home .gartenjournal-logo {
    width: auto;
    max-width: 100px;
  }
}

/* Animation removed */

.home .hausjournal {
  position: relative;
  max-width: 112.56px;
  width: 112.56px;
  max-height: 24px;
  height: 24px;
}

.home .northbound-logo {
  position: relative;
  max-width: 134.51px;
  width: 134.51px;
  max-height: 24px;
  height: 24px;
}

.home .appinio-logo {
  position: relative;
  max-width: 71.07px;
  width: 71.07px;
  max-height: 24px;
  height: 24px;
}

.home .colority-logo {
  position: relative;
  max-width: 90.23px;
  width: 90.23px;
  max-height: 24px;
  height: 24px;
  object-fit: cover;
}

.home .gartenjournal-logo {
  position: relative;
  max-width: 127.53px;
  width: 127.53px;
  max-height: 24px;
  height: 24px;
}

.home .projects {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 124px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .home .projects {
    gap: 80px;
  }
  
  .home .appinio-title,
  .home .cashforyou-title {
    height: auto;
  }
}

.home .div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.home .appinio-title {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: auto;
  max-height: 563.93px;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.home .div-3:hover .appinio-title {
  transform: scale(0.99);
}

.home .content {
  height: 64px;
  border-radius: 32px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.logo-img {
  position: relative;
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.description {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 auto;
  align-items: center;
  position: relative;
}

.text-wrapper-3 {
  margin-top: -1.00px;
  font-family: var(--title-font-family);
  font-weight: var(--title-font-weight);
  color: var(--white);
  font-size: var(--title-font-size);
  letter-spacing: var(--title-letter-spacing);
  line-height: var(--title-line-height);
  position: relative;
  align-self: stretch;
  font-style: var(--title-font-style);
}

.home .cashforyou-title {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: auto;
  max-height: 563.07px;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.home .div-3:hover .cashforyou-title:hover {
  transform: scale(0.99);
}

.div-4 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.text-wrapper-4 {
  position: relative;
  width: fit-content;
  font-family: var(--paragraph-font-family);
  font-weight: var(--paragraph-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-font-size);
  letter-spacing: var(--paragraph-letter-spacing);
  line-height: var(--paragraph-line-height);
  white-space: nowrap;
  font-style: var(--paragraph-font-style);
}

.home .about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .section {
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .text-wrapper-5 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  color: var(--white);
  font-size: var(--h3-font-size);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  font-style: var(--h3-font-style);
}

.home .those-are-products {
  position: relative;
  align-self: stretch;
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  color: var(--white);
  font-size: var(--h3-font-size);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  font-style: var(--h3-font-style);
}

.home .section-2 {
  flex-wrap: wrap;
  gap: 24px 24px;
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .skills {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.home .text-wrapper-6 {
  position: relative;
  width: 205px;
  margin-top: -1.00px;
  font-family: var(--paragraph-font-family);
  font-weight: var(--paragraph-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-font-size);
  letter-spacing: var(--paragraph-letter-spacing);
  line-height: var(--paragraph-line-height);
  font-style: var(--paragraph-font-style);
}

.home .text-wrapper-7 {
  position: relative;
  width: 205px;
  font-family: var(--paragraph-font-family);
  font-weight: var(--paragraph-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-font-size);
  letter-spacing: var(--paragraph-letter-spacing);
  line-height: var(--paragraph-line-height);
  font-style: var(--paragraph-font-style);
}

.home .div-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .headline {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  color: var(--white);
  font-size: var(--h2-font-size);
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  font-style: var(--h2-font-style);
}

.home .list-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .div-6 {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .img-2 {
  position: relative;
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.home .description-2 {
  display: flex;
  justify-content: space-between;
  flex: 1;
  flex-grow: 1;
  align-items: flex-start;
  position: relative;
}

.home .text-wrapper-8 {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: var(--paragraph-font-family);
  font-weight: var(--paragraph-font-weight);
  color: var(--white);
  font-size: var(--paragraph-font-size);
  letter-spacing: var(--paragraph-letter-spacing);
  line-height: var(--paragraph-line-height);
  font-style: var(--paragraph-font-style);
}

.home .div-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 0px 0px 30px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-9 {
  width: auto;
  position: relative;
  margin-top: -1.00px;
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-small-font-size);
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  font-style: var(--paragraph-small-font-style);
}

.text-wrapper-9-white {
  width: 100%;
  position: relative;
  margin-top: -1.00px;
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  color: var(--white);
  font-size: var(--paragraph-small-font-size);
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  font-style: var(--paragraph-small-font-style);
}

.home .line {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
}

.home .appinio {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  flex: 0 0 auto;
  position: relative;
  align-self: stretch;
}

.home .description-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  flex: 1;
  flex-grow: 1;
  align-items: flex-start;
  position: relative;
}

.home .frame-3 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.home .text-wrapper-10 {
  width: 97px;
  position: relative;
  margin-top: -1.00px;
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-small-font-size);
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  font-style: var(--paragraph-small-font-style);
}

footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: transparent;
}

.luther-logo-footer {
  position: relative;
  width: 74.42px;
  height: 24px;
  object-fit: cover;
}

.frame-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.frame-5 {
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-11 {
  margin-top: -1.00px;
  position: relative;
  width: fit-content;
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-small-font-size);
  text-align: center;
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  text-decoration: underline;
  white-space: nowrap;
  font-style: var(--paragraph-small-font-style);
  transition: color 0.3s ease;
}

a:hover .text-wrapper-11 {
  color: var(--white);
  transform: scale(0.98);
  transition: .2s;
}

.text-wrapper-12 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-small-font-size);
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  text-decoration: underline;
  white-space: nowrap;
  font-style: var(--paragraph-small-font-style);
  transition: color 0.3s ease;
}

a:hover .text-wrapper-12 {
  color: var(--white);
  transform: scale(0.98);
  transition: .2s;
}

.frame-6 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 40px;
  align-self: stretch;
  position: relative;
  flex: 0 0 auto;
}

hr {
  border: none;
  background-color: #FFFFFF;
  opacity: 25%;
  width: 100%;
  height: 0.25px;
}


/* Project */

.project {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 48px 32px;
  position: relative;
  background-color: var(--black);
}

.project .frame-7 {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  align-items: flex-start;
  gap: 112px;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.luther-logo-3 {
  position: relative;
  width: 99.22px;
  height: 32px;
  object-fit: cover;
}

.project .text-wrapper-13 {
  position: relative;
  width: fit-content;
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-small-font-size);
  text-align: center;
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  text-decoration: underline;
  white-space: nowrap;
  font-style: var(--paragraph-small-font-style);
}

.project .frame-9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.project .picture {
  align-self: stretch;
  width: 100%;
  height: auto;
  max-height: 562.82px;
  position: relative;
  object-fit: contain;
}

@media (max-width: 768px) {
  .project .picture {
    height: auto;
  }
}

.project .frame-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.project .description-4 {
  display: inline-flex;
  height: 64px;
  align-items: center;
  gap: 20px;
  position: relative;
  border-radius: 32px;
}

.project .project-logo {
  position: relative;
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.project .frame-11 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  flex: 0 0 auto;
}

.project .text-wrapper-14 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--title-font-family);
  font-weight: var(--title-font-weight);
  color: var(--white);
  font-size: var(--title-font-size);
  letter-spacing: var(--title-letter-spacing);
  line-height: var(--title-line-height);
  font-style: var(--title-font-style);
}

.project .text-wrapper-15 {
  position: relative;
  align-self: stretch;
  font-family: var(--paragraph-font-family);
  font-weight: var(--paragraph-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-font-size);
  letter-spacing: var(--paragraph-letter-spacing);
  line-height: var(--paragraph-line-height);
  font-style: var(--paragraph-font-style);
}

.project .text-wrapper-16 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  color: var(--white);
  font-size: var(--h3-font-size);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  font-style: var(--h3-font-style);
}

.project .frame-12 {
  gap: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.project .frame-13 {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.project .frame-14 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 24px;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.project .picture-2 {
  flex: 1;
  min-width: 300px;
  flex-grow: 1;
  height: auto;
  max-height: 448px;
  position: relative;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .project .picture-2 {
    height: auto;
  }
}

.luther-logo-4 {
  position: relative;
  width: 100px;
  height: 32.25px;
  object-fit: cover;
}

.project .frame-15 {
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.project .text-wrapper-17 {
  margin-top: -1.00px;
  position: relative;
  width: fit-content;
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-small-font-size);
  text-align: center;
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  text-decoration: underline;
  white-space: nowrap;
  font-style: var(--paragraph-small-font-style);
}

.project .text-wrapper-18 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-small-font-size);
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  text-decoration: underline;
  white-space: nowrap;
  font-style: var(--paragraph-small-font-style);
}

.project .frame-16 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 40px;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.project .text-wrapper-19 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--paragraph-small-font-family);
  font-weight: var(--paragraph-small-font-weight);
  color: var(--opacity-white-50);
  font-size: var(--paragraph-small-font-size);
  letter-spacing: var(--paragraph-small-letter-spacing);
  line-height: var(--paragraph-small-line-height);
  white-space: nowrap;
  font-style: var(--paragraph-small-font-style);
}

.project .frame-17 {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

#appInfo {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

#appInfo #appstores img {
  max-height: 32px;
  padding-right: 8px;
}

#appInfo #appstores img:hover {
  transform: scale(0.98);
  transition: .2s;
  opacity: .9;
}

#appInfo #rating {
  max-height: 24px;
}

.frame-12 .picture {
    border-radius: 20px;
}

.frame-14 .picture-2 {
    border-radius: 20px;
}

.frame-9 .picture {
    border-radius: 20px;
}

.div-4 {
  padding-bottom: 40px;
}

.div-2 .span a {
  font-size: 16px;
}

.div-2 .span a:hover {
  transition: .2s;
}

.intro #firstLine {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  gap:16px;
}

.top {
  display: flex;
  flex-direction: column;
  gap: -4px;
}

@media (max-width: 768px) {
  #appInfo {
    flex-direction: column;
    align-items:flex-start;
    align-content: left;
    justify-content: left;
  }

  #appInfo #appstores img {
    padding-bottom: 20px;
    max-height: 48px;
  }

  .intro .p {
    font-size: 24px;
    line-height: 40px;
  }

  .home .image {
    width: 40px;
    height: 40px;
  }
}