@font-face {
  font-family: SohneLeicht;
  src: url("/assets/fonts/Sohne-Leicht.otf");
}
@font-face {
  font-family: SohneKraftig;
  src: url("/assets/fonts/Sohne-Kraftig.otf");
}
@font-face {
  font-family: SohneHalbfett;
  src: url("/assets/fonts/Sohne-Halbfett.otf");
}
* {
  margin: 0;
  padding: 0;
  font-family: SohneLeicht, sans-serif;
  box-sizing: border-box;
}

.loader-wrap {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 7000;
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  animation: animate 1s linear infinite;
}

@keyframes animate {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
.header {
  background: linear-gradient(to bottom, #FFFFFF 57.79%, rgba(255, 255, 255, 0) 86.69%);
  background: #ffffff;
}
@media (min-width: 1024px) {
  .header {
    background: linear-gradient(to right, #FFFFFF 20%, rgba(255, 255, 255, 0) 101.42%);
    height: 906px;
  }
}
.header .mob-none {
  display: none;
}
.header .nav-wrap--mobile {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  min-width: 320px;
  max-width: 360px;
  height: 100vh;
  padding: 32px 0;
  border-right: 1px solid #E5E9F2;
  overflow-y: scroll;
  animation: slide-in 1s;
  z-index: 1000;
}
.header .nav-wrap--mobile::-webkit-scrollbar {
  display: none;
}
@keyframes slide-in {
  from {
    left: -360px;
  }
  to {
    left: 0;
  }
}
.header .logo-wrap--mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 20px;
}
.header .products-link--mobile,
.header .resources-link--mobile {
  color: #575A65;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.header .products-link--mobile span,
.header .resources-link--mobile span {
  font-family: SohneKraftig, sans-serif;
}
.header .about-wrap--mobile {
  margin-bottom: 64px;
  padding: 16px 20px;
}
.header .about--mobile {
  font-family: SohneKraftig, sans-serif;
  color: #575A65;
  text-decoration: none;
}
.header .login--mobile,
.header .signup--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1656C1;
  border: 1px solid #E5E9F2;
  background-color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  height: 56px;
  font-family: SohneKraftig, sans-serif;
  margin: 0 20px;
}
@media (min-width: 1024px) {
  .header .login--mobile,
.header .signup--mobile {
    display: none;
  }
}
.header .signup--mobile {
  margin-bottom: 16px;
  background-color: #1656C1;
  color: #FFFFFF;
}
.header .products-menu--mobile,
.header .resources-menu--mobile {
  display: none;
  padding: 0 20px;
}
.header .products-menu--item {
  display: block;
  padding: 16px 0;
  text-decoration: none;
}
.header .products-menu--item p {
  font-family: SohneKraftig, sans-serif;
  color: #323643;
}
.header .products-menu--item span {
  color: #575A65;
  font-size: 0.75rem;
}
.header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 32px 0;
}
@media (min-width: 1280px) {
  .header .navbar {
    padding: 32px 10%;
  }
}
@media (min-width: 1536px) {
  .header .navbar {
    max-width: 1440px;
    margin: auto;
    padding: 32px 0;
  }
}
.header .navbar__left {
  display: flex;
  align-items: center;
}
.header .nav-links {
  display: none;
}
@media (min-width: 1280px) {
  .header .nav-links {
    display: flex;
    margin-left: 72px;
  }
}
.header .products-menu,
.header .resources-menu {
  display: none;
}
.header .products-link,
.header .resources-link {
  color: #575A65;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header .products-link span,
.header .resources-link span {
  font-family: SohneKraftig, sans-serif;
  margin-right: 10px;
  display: block;
}
.header .resources-link {
  margin-left: 34px;
}
.header .about {
  font-family: SohneKraftig, sans-serif;
  color: #575A65;
  text-decoration: none;
  margin-left: 34px;
}
.header .navbar__right {
  display: flex;
  align-items: center;
}
.header .auth {
  display: none;
}
@media (min-width: 1024px) {
  .header .auth {
    display: flex;
    align-items: center;
  }
}
.header .auth .lang {
  padding-right: 20px;
  border-right: 1px solid #575A65;
  height: 24px;
}
.header .auth .login {
  font-family: SohneKraftig, sans-serif;
  color: #575A65;
  margin-left: 20px;
  text-decoration: none;
}
.header .auth .signup {
  width: 135px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: SohneKraftig, sans-serif;
  color: #FFFFFF;
  border-radius: 4px;
  background-color: #1656C1;
  text-decoration: none;
  margin-left: 24px;
}
.header .hamburger {
  margin-left: 24px;
}
@media (min-width: 1280px) {
  .header .hamburger {
    display: none;
  }
}
.header .show-drop {
  display: grid;
  gap: 8px;
  position: absolute;
  width: 280px;
  background-color: #FFFFFF;
  padding: 12px;
  box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}
.header .item--desktop {
  padding: 12px;
  background-color: #F9FAFC;
}
@media (min-width: 1024px) {
  .header {
    height: auto;
  }
}
@media (min-width: 1536px) {
  .header {
    margin: 0 auto;
    width: 1440px;
    padding: 0;
  }
}

.logo {
  margin-top: 8px;
}

.user-profile-wrap {
  cursor: pointer;
}
.user-profile-wrap .user-profile {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-profile-wrap .user-profile h3 {
  color: #1656C1;
  font-family: SohneHalbfett, sans-serif;
}
@media (max-width: 640px) {
  .user-profile-wrap .user-profile h3 {
    display: none;
  }
}
.user-profile-wrap .user-profile .initials {
  font-family: SohneHalbfett, sans-serif;
  background-color: #1656C1;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
}

.logoutbtn {
  display: none;
  position: absolute;
  margin-top: 20px;
  right: 48px;
  padding: 20px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #E5E9F2;
  cursor: pointer;
}
.logoutbtn button {
  cursor: pointer;
  font-family: SohneHalbfett, sans-serif;
  background-color: #1656C1;
  color: #fff;
  height: 54px;
  width: 192px;
  border-radius: 4px;
  border: none;
}

.logoutbtnMob {
  font-family: SohneHalbfett, sans-serif;
  background-color: #1656C1;
  color: #fff;
  height: 54px;
  width: 192px;
  border-radius: 8px;
  border: none;
  margin-left: 16px;
}

.no-user-mob {
  display: none !important;
}

.user-found-mob {
  display: none !important;
}

.hero-section {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .hero-section {
    margin-top: 58px;
    display: flex;
    flex-direction: row-reverse;
    padding: 0 32px 92px;
  }
}
@media (min-width: 1280px) {
  .hero-section {
    padding: 0 56px 92px 10%;
  }
}
@media (min-width: 1536px) {
  .hero-section {
    padding: 0 0 92px 0;
    width: 1440px;
    margin: 58px auto;
    justify-content: space-between;
  }
}

.hero--details {
  padding: 32px 32px 64px;
}
@media (min-width: 1024px) {
  .hero--details {
    padding: 0;
    margin-right: 56px;
  }
}
@media (min-width: 1440px) {
  .hero--details {
    margin-right: auto;
  }
}

.hero--title {
  font-family: SohneHalbfett, sans-serif;
  font-size: 1.75rem;
  color: #323643;
  line-height: 36px;
}
@media (min-width: 1024px) {
  .hero--title {
    margin-top: 78px;
  }
}
@media (min-width: 1440px) {
  .hero--title {
    width: 440px;
  }
}

.hero--text {
  color: #575A65;
  line-height: 26px;
  margin-top: 16px;
}
@media (min-width: 1440px) {
  .hero--text {
    width: 398px;
  }
}

.positions-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: SohneKraftig, sans-serif;
  color: #FFFFFF;
  background-color: #1656C1;
  border-radius: 8px;
  border: none;
  outline: none;
  width: 100%;
  max-width: 320px;
  height: 56px;
  margin-top: 32px;
  margin-top: 40px;
}
.positions-link:focus, .positions-link:active {
  outline: none;
}

.hero--img-wrap {
  width: 100%;
  max-width: 743px;
  margin: auto;
}
.hero--img-wrap .hero--img {
  width: inherit;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero--img-wrap {
    border-radius: 8px;
  }
  .hero--img-wrap .hero--img {
    border-radius: 8px;
  }
}
@media (min-width: 1024px) {
  .hero--img-wrap {
    margin: 0;
  }
}

.testimonial-wrap {
  background-color: #F9FAFC;
}
@media (min-width: 768px) {
  .testimonial-wrap {
    padding-top: 32px;
  }
}
@media (min-width: 1024px) {
  .testimonial-wrap {
    padding: 32px;
  }
}
@media (min-width: 1280px) {
  .testimonial-wrap {
    padding: 80px 10% 80px 56px;
  }
}
@media (min-width: 1536px) {
  .testimonial-wrap {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .testimonial {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1536px) {
  .testimonial {
    width: 1440px;
    margin: auto;
  }
}

.testimony--img-wrap {
  width: 100%;
  max-width: 632px;
  margin: auto;
}
.testimony--img-wrap .testimony--img {
  width: inherit;
  object-fit: cover;
}
@media (min-width: 768px) {
  .testimony--img-wrap {
    border-radius: 8px;
  }
  .testimony--img-wrap .testimony--img {
    border-radius: 8px;
  }
}
@media (min-width: 1024px) {
  .testimony--img-wrap {
    max-width: 400px;
    margin: 0;
  }
}
@media (min-width: 1280px) {
  .testimony--img-wrap {
    max-width: 632px;
  }
}

.testimony--details {
  padding: 32px 32px 46px;
}
@media (min-width: 1024px) {
  .testimony--details {
    padding: 0;
    width: 529px;
    margin-left: 73px;
  }
}

.testimony--text {
  color: #575A65;
  line-height: 26px;
}
@media (min-width: 1280px) {
  .testimony--text {
    font-size: 1.125rem;
  }
}

.testimony--user {
  margin-top: 32px;
  color: #575A65;
}
.testimony--user .user-name {
  display: block;
  font-family: SohneKraftig, sans-serif;
}
.testimony--user .user-title {
  margin-top: 4px;
}
@media (min-width: 280px) {
  .testimony--user {
    margin-top: 56px;
  }
}

.growth-wrap {
  background-color: #1656C1;
  padding: 64px 32px 0;
}
@media (min-width: 1024px) {
  .growth-wrap {
    padding: 54px 32px;
  }
}
@media (min-width: 1280px) {
  .growth-wrap {
    padding: 54px 10%;
  }
}
@media (min-width: 1280px) {
  .growth-wrap {
    padding: 54px 0 54px 10%;
    overflow-x: hidden;
  }
}
@media (min-width: 1536px) {
  .growth-wrap {
    padding: 54px 0;
  }
}

.growth {
  color: #ffffff;
}
@media (min-width: 1024px) {
  .growth {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1440px) {
  .growth {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .growth .growth--details {
    margin-top: 168px;
  }
}
@media (min-width: 1536px) {
  .growth {
    width: 1440px;
    margin: auto;
  }
}

.growth--title {
  font-family: SohneHalbfett, sans-serif;
  line-height: 36px;
  font-size: 1.75rem;
}
@media (min-width: 1024px) {
  .growth--title {
    font-size: 2rem;
    width: 330px;
  }
}

.growth--text {
  line-height: 26px;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .growth--text {
    width: 475px;
  }
}

.growth--img-wrap {
  display: flex;
  justify-content: center;
}
.growth--img-wrap .growth--img-sm {
  display: inline-block;
  object-fit: cover;
  width: 296px;
  height: 247px;
  margin: 40px auto -84px;
  z-index: 50;
}
.growth--img-wrap .growth--img-lg {
  display: none;
  width: 649px;
  height: 550px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .growth--img-wrap {
    width: 50%;
    align-items: center;
    justify-content: flex-end;
  }
  .growth--img-wrap .growth--img-sm {
    margin: 0 0;
  }
}
@media (min-width: 1280px) {
  .growth--img-wrap {
    flex-direction: column;
    width: unset;
  }
  .growth--img-wrap .growth--img-lg {
    display: block;
  }
  .growth--img-wrap .growth--img-sm {
    margin-bottom: -200px;
  }
}
@media (min-width: 1536px) {
  .growth--img-wrap .growth--img-lg {
    border-radius: 8px;
  }
}

.workplace {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 96px;
}
@media (min-width: 1024px) {
  .workplace {
    margin: 0;
    padding: 80px 32px;
    flex-direction: row-reverse;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .workplace {
    padding: 80px 56px 80px 10%;
  }
}
@media (min-width: 1536px) {
  .workplace {
    width: 1440px;
    margin: auto;
    padding: 80px 0;
    justify-content: space-between;
  }
}

.workplace--img-wrap {
  width: 100%;
  max-width: 632px;
  margin: auto;
}
.workplace--img-wrap .workplace--img {
  width: inherit;
  object-fit: cover;
}
@media (min-width: 768px) {
  .workplace--img-wrap {
    border-radius: 8px;
  }
  .workplace--img-wrap .workplace--img {
    border-radius: 8px;
  }
}
@media (min-width: 1024px) {
  .workplace--img-wrap {
    margin: 0;
  }
}

.workplace--details {
  padding: 0 32px 32px;
}
@media (min-width: 1024px) {
  .workplace--details {
    margin-right: 85px;
  }
  .workplace--details .workplace--text {
    width: 532px;
  }
}
.workplace--details .workplace--title {
  font-family: SohneHalbfett, sans-serif;
  color: #323643;
  font-size: 1.75rem;
  line-height: 36px;
  width: 234px;
}
@media (min-width: 1024px) {
  .workplace--details .workplace--title {
    font-size: 2rem;
    width: 100%;
  }
}
.workplace--details .workplace--text {
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 31px;
}

.values-wrap {
  padding: 64px 32px;
  background-color: #F9FAFC;
}
@media (min-width: 1280px) {
  .values-wrap {
    padding: 168px 10% 104px;
  }
}
@media (min-width: 1536px) {
  .values-wrap {
    padding: 168px 0 104px;
  }
}

.values {
  display: grid;
  row-gap: 64px;
}
@media (min-width: 1024px) {
  .values {
    grid-template-columns: 0.4fr 1fr;
  }
}
@media (min-width: 1280px) {
  .values {
    grid-template-columns: 0.3fr 1fr;
  }
}
@media (min-width: 1536px) {
  .values {
    width: 1440px;
    margin: auto;
  }
}

.values--title {
  font-family: SohneHalbfett, sans-serif;
  font-size: 1.75rem;
  color: #323643;
}

.values--details {
  display: grid;
  row-gap: 48px;
}
@media (min-width: 1280px) {
  .values--details {
    grid-template-columns: 1fr 1fr;
    column-gap: 96px;
  }
}

.values--item .item--title {
  font-family: SohneHalbfett, sans-serif;
  font-size: 1.75rem;
  color: #323643;
}
.values--item .item--text {
  font-size: 1.125rem;
  line-height: 31px;
  margin-top: 16px;
  color: #575A65;
}
@media (min-width: 1280px) {
  .values--item .item--title {
    font-size: 2rem;
  }
}

.view-pos-wrap {
  padding: 64px 20px 40px;
}
@media (min-width: 1280px) {
  .view-pos-wrap {
    padding: 80px 10%;
  }
}
@media (min-width: 1536px) {
  .view-pos-wrap {
    padding: 80px 0;
  }
}

.view-pos {
  background-color: #1656C1;
  padding: 40px 16px 24px;
  border-radius: 8px;
}
.view-pos .view-pos--text {
  font-family: SohneHalbfett, sans-serif;
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
}
.view-pos .view-pos--link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: SohneKraftig, sans-serif;
  color: #FFFFFF;
  background-color: #1656C1;
  border-radius: 8px;
  border: none;
  outline: none;
  width: 100%;
  max-width: 320px;
  height: 56px;
  margin-top: 32px;
  background-color: #ffffff;
  color: #1656C1;
  margin: 40px auto 0;
}
.view-pos .view-pos--link:focus, .view-pos .view-pos--link:active {
  outline: none;
}
@media (min-width: 1536px) {
  .view-pos {
    width: 1440px;
    margin: auto;
  }
}

.footer {
  margin-top: 40px;
  padding: 32px;
}
@media (min-width: 1024px) {
  .footer {
    margin-top: 80px;
    padding: 64px 32px;
  }
}
@media (min-width: 1280px) {
  .footer {
    padding: 64px 10%;
  }
}
@media (min-width: 1536px) {
  .footer {
    padding: 0 0 40px;
  }
}
.footer .footer--links-wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .footer .footer--links-wrap {
    flex-direction: row;
  }
}
@media (min-width: 1536px) {
  .footer .footer--links-wrap {
    max-width: 1440px;
    margin: auto;
  }
}
.footer .footer--links-wrap .footer--links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 88px;
  row-gap: 48px;
}
@media (min-width: 1024px) {
  .footer .footer--links-wrap .footer--links {
    margin: 0 0 0 223px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 40px;
  }
}
@media (min-width: 1440px) {
  .footer .footer--links-wrap .footer--links {
    column-gap: 112px;
  }
}
.footer .products .products--title,
.footer .company .products--title,
.footer .help .products--title,
.footer .legal .products--title {
  font-family: SohneKraftig, sans-serif;
  color: #323643;
}
.footer .products .products--text,
.footer .company .products--text,
.footer .help .products--text,
.footer .legal .products--text {
  color: #575A65;
  margin-top: 16px;
  text-decoration: none;
  display: block;
}
.footer .social-links-wrap {
  padding: 16px 0;
  border-top: 1px solid #E5E9F2;
  border-bottom: 1px solid #E5E9F2;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .footer .social-links-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .footer .social-links-wrap {
    margin-top: 64px;
  }
}
@media (min-width: 1536px) {
  .footer .social-links-wrap {
    max-width: 1440px;
    margin: 64px auto 0;
  }
}
.footer .app-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 16px;
}
.footer .app-links .app-store-link {
  margin-top: 16px;
}
@media (min-width: 375px) {
  .footer .app-links {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer .app-links .app-store-link {
    margin-left: 16px;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .footer .app-links {
    justify-content: start;
    padding: 0;
  }
}
.footer .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  border-top: 1px solid #E5E9F2;
}
@media (min-width: 768px) {
  .footer .social-links {
    padding: 0;
    border: none;
  }
}
.footer .social-links .facebook,
.footer .social-links .linkedin {
  margin-left: 16px;
}
.footer .copyright-wrap {
  margin-top: 32px;
}
.footer .copyright-wrap .copyright {
  font-size: 0.6rem;
  line-height: 13px;
  color: #575A65;
  text-align: center;
  max-width: 688px;
  margin: auto;
}