@charset "UTF-8";
.column-container {
  display: flex;
  align-items: stretch;
}
.column-container .column {
  flex: 1 1 0px;
  padding: 10px;
  margin: 10px;
  border-width: 2px;
  border-style: solid;
  line-height: 1.6em;
}
.column-container .column p:nth-child(1) {
  font-size: 1.2em;
  margin: 0;
}
.column-container .column:nth-child(even) {
  border-color: #2b5403ff;
  background: #d9edb4;
}
.column-container .column:nth-child(even) p:nth-child(1) {
  color: #2b5403ff;
}
.column-container .column:nth-child(odd) {
  background: #f7e3be;
  border-color: #8d4104ff;
}
.column-container .column:nth-child(odd) p:nth-child(1) {
  color: #8d4104ff;
}

@media screen and (max-width: 900px) {
  .column-container {
    flex-direction: column;
  }
}
#home-landing {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)), url("../img/photo/home-cover.jpg");
  background-position: 70% 0%;
}

#contact-landing {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)), url("../img/photo/contact-cover.jpg");
  background-position: 70%;
}

.contact-info {
  margin: 20px auto;
  text-align: center;
  font-size: 1.5em;
}
.contact-info .contact-type {
  font-weight: bold;
  color: #450354ff;
}

#about-landing {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)), url("../img/photo/about-cover.jpg");
  background-position: 70%;
}

#maggie-about-img {
  max-height: 500px;
}

@media screen and (max-width: 500px) {
  figure {
    margin: 10px;
  }
}
#services-landing {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)), url("../img/photo/services-cover.jpg");
  background-position: 50% 0%;
}

.services-group {
  max-width: 1000px;
  margin: auto;
}

.accordion-button {
  cursor: pointer;
  background: linear-gradient(45deg, #2b5403ff, #8d4104ff);
  transition: 0.4s;
  padding: 20px;
  color: white;
  margin-bottom: 0;
  border: none;
  outline: none;
  position: relative;
}
.accordion-button::after {
  content: "▼";
  position: absolute;
  right: 20px;
}
.accordion-button.active {
  background: linear-gradient(45deg, #8d4104ff, #2b5403ff);
}

.accordion-panel {
  display: none;
  overflow: hidden;
  background-color: #d9edb4;
  padding: 20px;
}

.service {
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #450354ff;
  box-shadow: inset 0px 0px 3px 1px #450354ff;
}

#resources-landing {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)), url("../img/photo/resources-cover.jpg");
  background-position: 50% 0%;
}

.resource {
  margin: 20px auto;
  max-width: 800px;
  padding: 10px;
  border: 1px solid #450354ff;
  box-shadow: inset 0px 0px 3px 1px #450354ff;
}
.resource a {
  color: #450354ff;
  font-weight: bold;
}

@font-face {
  font-family: "PTSans";
  src: url("../font/PT_Sans/PTSans-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PTSans";
  src: url("../font/PT_Sans/PTSans-Italic.ttf");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "PTSans";
  src: url("../font/PT_Sans/PTSans-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "PTSans";
  src: url("../font/PT_Sans/PTSans-BoldItalic.ttf");
  font-weight: bold;
  font-style: italic;
}
body {
  margin: 0;
  font-family: "PTSans", sans-serif;
  font-size: 17px;
  background-image: url("../img/photo/paper.png");
}

@media screen and (max-width: 400px) {
  body {
    font-size: 15px;
  }
}
img {
  max-height: 100%;
  max-width: 100%;
}

header {
  display: flex;
  box-shadow: 0px 0px 10px black;
  background: white;
}
header img {
  height: 120px;
}
header nav {
  margin-left: auto;
  margin-right: 40px;
}
header nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
}
header nav ul li {
  list-style-type: none;
}
header nav ul a {
  display: block;
  padding: 10px;
  margin: 20px;
  color: white;
  background: #2b5403ff;
}
header nav ul a[href="#"] {
  background: #8d4104ff;
}
header nav ul a:hover {
  box-shadow: 5px 5px 3px gray;
}

@media screen and (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header img {
    height: 80px;
  }
  header nav {
    display: block;
    margin: 0;
  }
  header nav ul {
    flex-wrap: wrap;
  }
  header nav a {
    font-size: 0.9em;
    padding: 10px !important;
    margin: 10px !important;
  }
}
main {
  padding: 20px;
}

footer {
  background-color: gray;
  box-shadow: 0px 0px 10px black inset;
}
footer p {
  color: white;
  text-align: center;
  padding: 30px 0;
  margin: 0;
}

.landing-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: cover;
}
.landing-poster .landing-poster-text {
  font-size: 2.5em;
  text-align: center;
  text-shadow: 2px 2px 3px black;
  max-width: 1000px;
  padding: 20px;
  margin: 100px 0;
  color: white;
}

@media screen and (max-width: 600px) {
  .landing-poster .landing-poster-text {
    font-size: 1.5em;
  }
  .landing-poster .landing-poster-text blockquote {
    margin: 10px;
  }
}
p.large {
  font-size: 1.6em;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 1.5em;
  text-align: center;
  margin: 20px;
  padding: 20px;
  color: #450354ff;
}

@media screen and (max-width: 600px) {
  p.large {
    font-size: 1.3em;
  }
}
em {
  font-weight: bold;
}

a {
  text-decoration: none;
}

a.block-link {
  display: block;
  text-align: center;
  background: linear-gradient(45deg, #2b5403ff, #8d4104ff);
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  font-size: 1.2em;
  color: white;
  border: 2px solid white;
}

a.block-link:hover {
  color: #8d4104ff;
  border: 2px solid #8d4104ff;
  background: white;
}

li {
  list-style-type: square;
}

figure img {
  display: block;
  margin: auto;
}
figure figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 0.8em;
}

article.contained {
  font-size: 1.2em;
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
}

/*# sourceMappingURL=main.css.map */
