body {
  margin: 0;
}

p, li {
  font-size: 20px;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#bannerimage {
  width: 100%;
  background-image: url('https://a.cdnlead.com/campaign_sites_assets/Alignment-Health/ANE0003/ANE0003-banner-desktop.png');
  height: 40vw;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

#bannerimage .logo {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 25%;
  height: auto;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

li {
  margin-bottom: 20px;
}

ul li {
  position: relative;
  padding-left: 20px;
}

ul li::before {
  content: '★';
  color: #215732;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
}

.green-bg {
  background-color: #215732;
  color: white;
}

h2 {
  color: #215732;
  font-size: 30px;
  font-weight: bold;
}

.yellow-color {
  color: #fce055;
}

.footer {
  background-color: rgb(242, 242, 242);
  /* height: 150px; */
}

.footer h1 {
  color: #215732;
  font-weight: bold;
  font-size: 50px;
}

.footer-row {
  height: 100%;
}

.footer a {
  color: #215732;
  text-decoration: none;
}

.footer a:hover {
  color: #76f9a0;
}

.submit-button {
  font-size: 30px;
  background-color: #fce055;
  border: #fce055;
  color: #215732;
}

.submit-button:hover {
  background-color: #977f07;
  border: #977f07;
  color: #215732;
}

.schedule-dropdown{
  padding-left: 10px;
  padding-right: 11px;
}

.phone-footer{
  font-size: 45px;
}

@media only screen and (max-width: 1250px) {
  .hero {
    background-size: cover;
  }
  /* .content-row {
    flex-direction: column-reverse;
  } */
  .desktop-only {
    display: none;
  }
  .footer {
    height: initial;
  }
  h2 {
    font-size: 26px;
  }
  p, li {
    font-size: 20px;
  }
}

@media only screen and (max-width: 900px) {
  .hero {
    background-size: cover;
  }
}

@media only screen and (max-width: 600px) {
  h2 {
    font-size: 15px;
  }
  p, li {
    font-size: 14px;
  }
  li {
    margin-bottom: 10px;
  }
  .footer h1 {
    font-size: 20px;
  }
  .hero .logo {
    top: 15px;
  }
  .phone-footer{
    font-size: 20px;
  }
}

