
h1 {
    font-size: 1.2em;
    color: black;
    text-align: left;
    padding: 0.75em 30% 1em 1em;
    font-weight: lighter;
}

header {
    height: 4em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blue {
    background-color: #94c6d4;
    width: auto;
    height: auto;
}
.footer-scroll {
  position: relative; 
  bottom: 0px;
  background-color: #94c6d4;
  padding: 0.75em 1em 1.25em 1em;
  width: 100%;
  height: 5em;
}
.footer-no-scroll {
  position: absolute; 
  bottom: 0px;
  background-color: #94c6d4;
  padding: 0.75em 1em 1.25em 1em;
  width: 100%;
  height: 5em;
}
.label{
  width: 80%;
  margin: 7% 10% 7% 10%;
}
select{
  width: 100%;
}

.submit-button{
  appearance: none;   
  padding: 1em;
  background-color: #AAC5AB;   
  border: 0px solid rgba(27, 31, 35, .15);   
  border-radius: 15px;   
  box-shadow: rgba(27, 31, 35, .1) 0 3px;

}

/*progress bar*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.center{
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
.container {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 400px;
  width: 90%;
}
.container .steps {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.steps .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: #999;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #e0e0e0;
  transition: all 200ms ease;
  transition-delay: 0s;
}
.steps .circle.active {
  transition-delay: 100ms;
  border-color: #94c6d4;
  color: #94c6d4;
}
.steps .progress-bar {
  position: absolute;
  height: 4px;
  width: 100%;
  background: #e0e0e0;
  z-index: -1;
}
.progress-bar .indicator {
  position: absolute;
  height: 100%;
  width: 0%;
  background: #94c6d4;
  transition: all 300ms ease;
}

 
.keyline {
  border-top: 3px solid #aac5ab; 
  margin-top: 30px; 
}
 
.full-width-image {
  width: 100%; 
  display: block; 
  opacity: 0.7;
}
 
.homebutton {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40%; 
  background-color: #aac5ab;
  border-radius: 15px;
  border: none; 
  cursor: pointer;
  appearance: none;
  padding: 1em;
  box-shadow: rgba(27, 31, 35, 0.1) 0 3px;
  color: inherit;
  text-decoration: none;
}
 
.imagehome {
  position: absolute;
  bottom: 2.5em;
}