* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  --color: rgb(29, 85, 182);
}

body {
  font-family: "Lato", sans-serif;
}

.hero {
  position: relative;
}

.wallpaper {
  width: 100%;
  opacity: 0.7;
  min-height: 47vh;
}

.appt-btn {
  background-color: var(--color);
  color: white;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 17px;
  font-weight: 600;
  padding: 14px 30px;
  cursor: pointer;
  box-shadow: 0px 10px 20px rgb(29, 30, 34);
  border: none;
  display: inline-block;
  line-height: 1.43;
  white-space: nowrap;
  vertical-align: middle;
}

.appt-btn:active {
  transform: translate(-50%, -42%);
  box-shadow: 0px 7px 20px rgb(29, 30, 34);
}

.banner {
  position: absolute;
  width: 40%;
  top: 5%;
  left: 3%;
  border: rgb(29, 85, 182) ridge 5px;
  border-radius: 10px;
}

.info {
  min-height: 47vh;
  background-color: rgb(34, 34, 34);
  color: white;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.info-section {
  width: 65%;
  padding: 5rem;
}

.info-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-body {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5rem;
}

footer {
  min-height: 6vh;
  justify-content: center;
  display: flex;
  align-items: center;
  background-color: rgb(100, 95, 95);
  /* background-color: rgb(29, 85, 182); */
  color: white;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .banner {
    border-width: 3px;
    border-radius: 8px;
  }
  .wallpaper {
    min-height: 35vh;
  }
  .appt-btn {
    font-size: 14px;
  }
  .info {
    display: flex;
    flex-direction: column;
    min-height: 60vh;
  }
  .info-section {
    width: 100%;
    padding: 2rem;
  }
}

/* Good Faith Estimate Notice */
.gfe-notice {
  background-color: rgb(45, 45, 45);
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 3rem;
  font-size: 0.95rem;
  line-height: 1.5rem;
}

.gfe-notice h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.gfe-notice p {
  margin-bottom: 0.75rem;
}

@media screen and (max-width: 768px) {
  .gfe-notice {
    padding: 1.5rem;
    font-size: 0.9rem;
  }
}
