#banner {
  margin: 24px;
  margin-top: 1.5rem;
  border-radius: 40px;
  padding: 14px 100px;
  padding-top: 13rem;
  padding-bottom: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: linear-gradient(
    to right,
    #f8ede0,
    #fbece5,
    #faeceb,
    #f7eef0,
    #f3eff2,
    #f1eff3,
    #eeeff3,
    #eceff3,
    #e6eef3,
    #dfeef1,
    #d9eded,
    #d5ece6
  );
  height: 20rem;
}

#banner h1 {
  font-family: "Inter", sans-serif;
  color: #1d2939;
  text-align: center;
  font-size: 68px;
  font-weight: 600;
  line-height: 80px;
  margin-bottom: 20px;
  margin-top: 1rem;
}

.banner-cta-buttons {
  display: flex;
}

.banner-cta-buttons a {
  text-decoration: none;
}

.get-started,
.learn-more {
  border: none;
  cursor: pointer;
  outline: inherit;
  color: #fff;

  border-radius: 8px;
  padding: 15px 24px;
  overflow: hidden;
  margin-top: 1rem;
  margin-right: 0.5rem;
  font-size: 14px;
}

.get-started {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #fff;
  background: linear-gradient(to top, #000 50%, #6938ef 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
}

.get-started:hover {
  background-position: bottom;
}

.learn-more {
  color: black;
  background: linear-gradient(to top, #6938ef 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
  text-align: center;
}

.learn-more:hover {
  background-position: bottom;
  color: white;
}

#higlighted-word-better {
  color: var(--primary-600, #6938ef);
  font-family: Arial;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
}

#banner p {
  color: #1f2c3d;
  text-align: center;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  padding-left: 8rem;
  padding-right: 8rem;
}

@media (max-width: 640px) {
  #banner h1 {
    font-size: 48px !important;
    font-weight: 600 !important;
    line-height: 56px !important;
    margin-top: 0px !important;
  }

  #banner p {
    padding: 0 1rem !important;
  }
}

@media (max-width: 1000px) {
  #banner {
    margin: 0px;
    height: auto;
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 7rem;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-radius: 0px;
  }

  #banner h1 {
    margin: 0px;
    font-size: 52px;
    line-height: 64px;
    margin-top: 2rem;
  }

  #banner p {
    padding: 0px 2rem;
    line-height: 26px;
    max-width: 500px;
  }
}
