html {
  min-width: 375px;
}

body {
  min-width: 375px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #222;
}

h2 {
  font-size: 28px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

.hero {
    max-width: 460px;
}
  
.btn-outline {
  border: 1px solid #000;
  background: transparent;
  color: #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

.logo {
  width: 130px;
}

.nav-item a {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.navbar-nav {
  gap: 50px;
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler:focus {
  box-shadow: unset;
}

.navbar-collapse.show, .navbar-collapse.collapsing {
  background-color: #fff;
  padding: 1rem;
  margin-left: -15px;
  margin-right: -15px;
}

.btn-outline {
  border-radius: 0;
  border-width: 2px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero h1 {
  font-weight: 700;
  font-size: 47px;
}

.hero h1 span {
  color: #82C44A;
}

.hero h2 {
  font-size: 32px;
  color: #999;
  font-weight: 200;
}

.btn-primary {
  background-color: #82C44A;
  border-color: #82C44A;
  font-size: 22px;
  font-weight: 300;
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn-primary:hover {
  background-color: #4ba841;
  border-color: #4ba841;
}

:not(.btn-check) + .btn-primary:active {
  background-color: #4ba841;
  border-color: #4ba841;
}

#top {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
  z-index: 2;
  position: relative;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  z-index: -1;
  overflow-x: hidden;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

#how-it-works {
  background: linear-gradient(180deg, #F3F0D4 0%, #FFFFFF 100%);
}

.section-header {
  margin-bottom: 80px;
}

.upload-input {
  display: none;
}

.upload-area {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 38px;
  border: 1px dashed #D9D9D9;
  border-radius: 40px;
}

.upload-area:hover {
border-color: #3864dc;
}

.upload-area .btn-primary {
  width: auto;
}

.upload-area > label {
  text-align: center;
  font-weight: bold;
}

.btn-upload {
  font-size: 22px;
  font-weight: 300;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #fff;
  background-color: #82C44A;
  border-color: #82C44A;
}

.btn-upload:hover {
  background-color: #4ba841;
  border-color: #4ba841;
  color: #fff;
}


#get-started {
}

#features {
  padding-top: 0px;
  padding-bottom: 80px;
  background-color: #F3F0D6;
}

footer {
  background-color: #F2F2F5;
  padding: 40px 0;
}


.flying {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 85px;
  height: 64px;
  background: url('../images/step2.svg') no-repeat center center / cover;
}

@keyframes diagonalFadeOut {
  0% {
    bottom: 30%;
    left: 30%;
    opacity: 1;
  }
  50% {
    bottom: 50%;
    left: 50%;
    opacity: 1;
  }
  80% {
    bottom: 80%;
    left: 80%;
    opacity: 0;
  }

  100% {
    bottom: 80%;
    left: 80%;
    opacity: 0;
  }
}

.flying {
  animation: diagonalFadeOut 2s linear infinite;
}

@media(max-width: 767px) {
  h1 {
    font-size: 32px;
  }

  .hero {
    background: rgba(255,255,255,0.85);
    padding: 1rem;
  }

  .hero-image {
    width: 80%;
  }

  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.pl-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pl-feature-label {
  text-align: left;
}

.pl-feature-value {
  text-align: right;
}