/* base style */

/* Fix style process */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'IBM Plex Serif', serif;
  background-color: #231F20;
  color: #16A152;
}

.page {
  display: flex;
  flex-wrap: wrap;
  max-width: 750px;
  margin: 0 auto;
}

/* header */

.menu {
  /* width: 100%; */
  display: flex;
  /* background-color: black; */
  /* We want to make sure we have enough height for logo */
  height: 80px;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.menu-item {
  margin: 0;
  color: white;
}

.logo {
  /* margin-top: 10px; */
}

/* article  -- for each section*/

.section {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  /* height: 300px; */
  /* padding: 10px 0; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  /* background-color: #231F20; */
  /* border: solid 1px grey; */
  /* padding: 10px; */
  text-align: center;
  color: #16A152;
  /* margin: 30px 0;c */
}

/* We should probably remove this and make the sections unique */

.section div {
  margin-bottom: 10px;
  /* padding: 0 10px; */
}

.services {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.services div {
  margin: 10px;
  text-align: left;
}

.services ul {
  list-style-position: inside;
}

.section h1 {
  justify-content: flex-start;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.contact-info div {
  margin-bottom: 10px;
}

.cover {
  display: block;
  padding: 0px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  /* We need to set the height to 100% to keep the image from bleeding out of box */
  /* max-width: 700px; */
}

footer .menu-item {
  /* padding-right: 25px; */
  border-right: 1px solid grey;
}

/* Form */

.contact-info {
  font-family: "Helvetica", "Arial", sans-serif;
  /* font-size: 16px; */
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* margin-top: 30px;
  margin-bottom: 30px; */
  /* margin: 30px auto; */
}

.contact-form-header {
  text-align: center;
  /* border: 1px solid #D6D9DC; */
  width: 100%;
  margin-bottom: 30px;
  /* margin: 30px 0; */
  /* padding: 0 10px; */
  /* padding: 50px; */
}

.contact-form-header h2 {
  margin-bottom: 20px;
}

.contact-form {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  /* padding: 0 20px; */
  /* margin: 0 0 30px 0; */
  max-width: 550px;
}

.form-row {
  margin-bottom: 5px;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}

.form-row label {
  margin-bottom: 15px;
}

.form-row input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background-color: aliceblue;
  border: 1px solid grey;
  color: darkslategray;
}

.form-row input:invalid {
  border: 1px solid #D55C5F;
  color: #D55C5F;
  box-shadow: none;
  /* Remove default red glow in Firefox */
}

.form-row textarea {
  /* font-family: "Helvetica", "Arial", sans-serif; */
  font-size: 14px;
  border: 1px solid #D6D9DC;
  /* border-radius: 3px; */
  background-color: aliceblue;
  min-height: 200px;
  padding: 10px;
  margin-bottom: 5px;
  resize: none;
  color: darkslategray;
}

.section .quote {
  /* width: 90%; */
  margin-left: auto;
  margin-right: auto;
}

.submit-btn {
  font-size: 16px;
  font-weight: bold;
  /* color: #FFFFFF; */
  /* background-color: #5995DA; */
  background-color: aliceblue;
  border: 5px solid darkslategray;
  color: darkslategray;
  /* border-radius: 3px; */
  padding: 10px 40px;
  cursor: pointer;
  align-self: flex-start;
}

.form-row button:hover {
  background-color: #76AEED;
}

.form-row button:active {
  background-color: #407FC7;
}

.form-row:last-of-type {
  margin-bottom: 0;
}

.content-break {
  /* TODO: add centering too */
  border: 1px solid grey;
  /* border-width: thin; */
  margin: 0 auto;
  text-align: center;
  width: 85%;
}

/* Logo */

/* Footer */

.footer-menu {
  width: 100%;
  display: flex;
  /* We want to make sure we have enough height for logo */
  height: 80px;
  justify-content: space-around;
  align-items: center;
}

.footer-logo {
  width: 25px;
  height: 25px;
}

.footer-group {
  display: flex;
  width: 50%;
  height: 80px;
  justify-content: space-around;
  align-items: center;
}