* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ol,
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6, nav ul li a, .subhead, label, button, .button, input[type="submit"] {
  font-family: "Secular One", serif;
  color:#222;
}
p {
  margin-bottom: 20px;
  line-height: 1.5em;
}
body {
  background-image: url("images/cardstock.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  background-color: #2b2446;
  font-family: "Roboto", sans-serif;
}
a {
  color: #008bd8;
  text-decoration: none;
}
a:hover {
  color: #003c8b;
}
.wrapper {
  width: 90vw;
  max-width: 800px;
  margin: auto;
}
header {
  text-align: center;
}
.tab {
  color: #444;
  background-color: #ffffff;
  border-radius: 10px 10px 0 0;
}
.subhead {
  padding: 0 0 20px;
}
nav ul li {
  display: inline-block;
  margin: 0 2px;
}
nav ul li a {
  padding: 14px;
  transition: padding 0.1s ease;
  font-size: 15px;
  display: block;
  box-shadow: inset 0 -5px 5px rgba(0, 0, 0, 0.1);
}
nav ul li a:hover:not(.active) {
  box-shadow: none;
  padding: 14px 17px;
}
nav ul li a.active {
  box-shadow: none;
  font-weight: bold;
  color: black;
}
#nav-opener {
  display: none;
}
h1 {
  margin-bottom: 0;
}
.logo {
  max-width: 100%;
  margin-top: 10px;
}
.phone a {
  color: #003c8b;
}
.phone a:hover {
  color: #008bd8;
}
.subhead {
  color: white;
  text-align: center;
  padding: 10px;
  background-color: #2b2446;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
.subhead span {
  display: block;
}
.serving {
  font-size: 12px;
  font-weight: normal;
  font-family: "Roboto", sans-serif;
}
.cities {
  padding-top: 3px;
  font-size: 13px;
}
main {
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  color: #111;
  min-height: 300px;
}
main ul {
  list-style-type: circle;
  list-style-position: outside;
  margin-left: 30px;
  margin-bottom: 20px;
}
main li {
  margin-bottom: 5px;
}
main img {
  max-width: 100%;
}
footer {
  text-align: center;
}
.copyright {
  font-size: 12px;
  margin: 40px 0;
}
.form-field {
  padding: 10px 0;
}
label {
  display: block;
  font-weight: bold;
  margin-bottom: 3px;
}
input,
textarea {
  border: 1px solid #aaa;
  padding: 6px 10px;
  border-radius: 4px;
  outline: 0;
}
input {
  width: 100%;
  max-width: 300px;
}
textarea {
  width: 100%;
  height: 200px;
}
button,
.button,
input[type="submit"] {
  font-size: 14px;
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border-radius: 5px;
  outline: 0;
  border: 0;
  cursor: pointer;
}
button:hover,
.button:hover,
input[type="submit"]:hover {
  background-color: black;
}
main .split {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
main .split div:first-child {
  flex: 2;
  padding-right: 20px;
}
main .split div:last-child {
  flex: 1.5;
}
.socials {
  position: fixed;
  right: 0;
  bottom: 20vh;
  width: auto;
  background-color: white;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  padding: 10px 5px;
  border-radius: 10px 0 0 10px;
  transition: padding 0.2s ease-out;
  display: block;
}
.socials:hover {
  padding-right: 10px;
}
.socials li {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 0 5px;
}
.socials img {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .socials {
    padding: 5px;
  }
  .socials li {
    display: block;
    margin: 5px 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 760px) {
  nav {
    padding: 5px;
    color: #333;
    background-color: #ffffff;
    border-radius: 10px 10px 0 0;
    width: auto;
    display: inline-block;
    transition: width 0.5s ease-out;
    box-shadow: inset 0 -5px 5px rgba(0, 0, 0, 0.1);
  }
  nav ul {
    max-height: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
    padding: 0;
  }
  nav.open ul {
    max-height: 250px;
    width: auto;
  }
  nav ul li {
    display: block;
    border-bottom: 2px solid #ddd;
  }
  nav ul li a {
    box-shadow: none;
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  #nav-opener {
    display: block;
    cursor: pointer;
    padding: 7px 10px;
  }
  nav.open #nav-opener {
    display: none;
  }
  main .split {
    flex-direction: column;
  }
  main .split div:first-child {
    flex: 1;
    padding-right: 0;
    padding-bottom: 10px;
  }
  main {
    font-size: 12px;
  }
}
