* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  margin: 0;
  padding: 0;
  height: 80px;
  width: 100%;
}
.invest-banner {
  border-radius: 8px;
  border: 1px solid #92EABE;
  background: #FAFBFD;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  width: 80%
}

.invest-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.invest-content p {
  color: #000;
  font-family: sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
}

.highlight {
  color: #00AB4E;
  font-family: sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

.invest-button button {
  border-radius: 6px;
  background: #2272F5;
  outline: none;
  border: none;
  color: #fff;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  body{
    height: 150px;
  }
  .invest-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .invest-button {
    margin-top: 12px;
    width: 100%;
  }

  .invest-button button {
    width: 100%;
    text-align: center;
  }
.invest-anchor{
width: 100%;
}