.hero-section {
  background: radial-gradient(ellipse at 50% 90%, #97D7FF 0%, #9E8FE8 30%, #7E65D8 40%, #7453DB 60%);
  font-family: "Poppins", sans-serif;
  min-height: 500px;
  padding-top: 3vh;
  padding-bottom: 3.5vh;
  margin-bottom: 5vh;
  width: 100vw;
}

.hero-wrap {
   margin-top: 20vh;
   margin-bottom: 8vh;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: white;
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: var(--letter-spacing, normal);
}

.hero-title span,
.hero-title strong,
.hero-title b {
   font-weight: var(--font-weight-one-bold);
}

.hero-description {
  color: white;
  font-family: "Lato", sans-serif;
  text-align: center;
  max-width: 500px;
}

/* Search
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.hero-search {
   display: flex;
   align-items: center;
   box-sizing: border-box;
   width: 100%;
   max-width: 500px;
   margin: 5vh auto 0;
   padding: 6px 6px 6px 26px;
   cursor: pointer;
   border-radius: 100px;
   background-color: var(--color-one);
}

.hero-search span:first-of-type {
   font-size: 1.8rem;
   line-height: 1.2;
   overflow: hidden;
   flex: 1 0 50%;
   white-space: nowrap;
   text-overflow: ellipsis;
   opacity: var(--opacity-two);
}

.hero-search span:last-of-type {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 24px;
   height: 24px;
   padding: 10px;
   border-radius: 100%;
   background-color: var(--ghost-accent-color);
}

.hero-search svg {
   width: 14px;
}

/* Flat */
.hero-search.is-flat {
   transition: background-color .16s ease;
}

.hero-search.is-flat:hover {
   background-color: var(--color-two);
}

/* Linear */
.hero-search.is-linear {
   transition: border-color .16s ease;
   border: var(--border) var(--color-border-one);
   background-color: var(--color-body);
}

.hero-search.is-linear:hover {
   border-color: var(--color-border-two);
}

/* Shadow & Accent*/
.hero-search.is-shadow {
   transition: all .2s ease;
   background-color: var(--color-seven);
   box-shadow: 0 11px 50px -10px rgba(0, 0, 0, .3);
}

.hero-search.is-shadow:hover {
   transform: translateY(-2px);
   box-shadow: 0 15px 50px -10px rgba(0, 0, 0, .4);
}

/* RWD — Hero
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:1480px) and (min-width:1025px) {
   .hero-title {
      font-size: 4.6rem;
   }

}

@media (max-width:1480px) {
   .hero-wrap {
      margin-top: 20vh;
      margin-bottom: 7vh;
   }

   .hero-title {
      max-width: 850px;
   }

   .hero-search span:first-of-type {
      font-size: 1.6rem;
   }

}

@media (max-width:1280px) {
   .hero-search {
      max-width: 400px;
   }

   .hero-search span:last-of-type {
      padding: 8px;
   }

}

@media (max-width:1024px) and (min-width:769px) {
   .hero-title {
      font-size: 4rem;
   }

}

@media (max-width:1024px) {
   .hero-wrap {
      margin-top: 20vh;
   }

   .hero-title {
      max-width: 750px;
   }

   .hero-search {
      max-width: 360px;
      margin-top: 4vh;
   }

}

@media (max-width:768px) {
   .hero-section{
      width: 100%;
   }
   .hero-title {
      font-size: 3.4rem;
      max-width: 620px;
   }

}

@media (max-width:480px) {
   .hero-wrap {
      margin-bottom: 5.5vh;
   }

   .hero-section {
      padding-bottom: 2vh;
      min-height: 400px;
   }

   .hero-title {
      text-align: center;
   }

   .hero-description {
      width: 90%;
      font-size: 18px;
   }

   .hero-search {
      max-width: 100%;
   }

   .fake-search-form {
      max-width: 90%;
   }
   
   .fake-search-form > form {
      max-width: 70%;
   }

   .fake-search-input {
      max-width: 100%;
   }

   .fake-search-input::placeholder {
      font-size: 14px;
   }

}

.nurture-search-button {
  width: 45px;
  height: 45px;
  padding: 10px;
  background: #AFF96E;
  border-radius: 45px;
  border: none;
  box-shadow: 0px -5px 0px 0px rgba(0, 0, 0, 0.10) inset;
  cursor: pointer;
}

.fake-search-form {
   display: flex;
   flex-direction: row;
   justify-content: space-around;
   align-items: center;
   background-color: white;
   border-radius: 100px;
   height: 50px;
   width: 500px;
   margin-top: 5vh;
}

.fake-search-input {
  width: 400px;
  background-color: white;
  height: 40px;
  border-radius: 100px 40px 40px 100px;
  padding-left: 20px;
  cursor: pointer;
}