@import url("https://fonts.googleapis.com/css2?family=Expletus+Sans:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@500&display=swap");
/* Variables*/
/*Resets*/
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  background: #020202;
  font-size: 1rem;
  font-family: "Hind", sans-serif;
  color: #FFFDFA;
}

@media screen and (max-width: 840px) {
  body {
    font-size: .8rem;
  }
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

ul.list-members {
  list-style: circle;
}

ul.list-members li {
  font-size: 1.2rem;
}

ul.list-members li span {
  color: #1383e9;
  font-family: "Expletus Sans", cursive;
  padding-left: .8rem;
}

h1 {
  font-size: 4rem;
  text-shadow: -1px 1px 0 #eeeaea;
  font-family: "Expletus Sans", cursive;
  color: #064663;
  margin: 0;
}

h2, h3 {
  font-size: 2rem;
  letter-spacing: .5em;
  text-shadow: -1px 1px 0 #3c4663;
  font-family: "Expletus Sans", cursive;
  color: #FFFDFA;
  margin: 0;
  padding: .5rem 1rem;
}

p {
  padding: .5rem 1.5rem;
  font-size: 1.2rem;
}

.main-container {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-perspective: 10px;
          perspective: 10px;
  width: 100%;
  margin: auto;
}

/* Nav */
nav.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  padding: 30px 0;
  font-size: 1.2rem;
  background: #FFFDFA;
}

nav.main-nav .logo {
  width: 60px;
}

nav.main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav.main-nav ul.main-menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}

@media screen and (max-width: 700px) {
  nav.main-nav ul.main-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFDFA;
    width: 50%;
    height: 100%;
    border-right: #FFFDFA 1px solid;
    opacity: 0.9;
    padding: 30px;
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
  }
  nav.main-nav ul.main-menu.show {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

nav.main-nav ul.main-menu li {
  padding: 0 10px;
}

@media screen and (max-width: 700px) {
  nav.main-nav ul.main-menu li {
    border-bottom: #ccc solid 1px;
    font-size: 14px;
  }
  nav.main-nav ul.main-menu li:last-child {
    border-bottom: 0;
  }
}

nav.main-nav ul.main-menu li a {
  padding-bottom: 2px;
}

nav.main-nav ul.main-menu li a:hover {
  color: #064663;
  border-bottom: 2px solid #064663;
}

ul.right-menu li a {
  padding-right: 1em;
}

.menu-btn {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 6em;
  z-index: 2;
  display: none;
}

@media screen and (max-width: 700px) {
  .menu-btn {
    display: block;
  }
  .menu-btn:hover {
    opacity: 0.5;
  }
}

.pg-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  z-index: -1;
}

.background,
.foreground {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.background {
  -webkit-transform: translateZ(-10px) scale(2);
          transform: translateZ(-10px) scale(2);
}

.foreground {
  -webkit-transform: translateZ(-5px) scale(1.5);
          transform: translateZ(-5px) scale(1.5);
}

/*Page Links and Buttons*/
.pg-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.pg-links img {
  max-width: 24px;
  height: 24px;
}

.pg-links .card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 1rem;
}

.pg-links .card-wrap .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.pg-links .card-wrap .flexible {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.pg-links div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: .9rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.pg-links div a img, .pg-links div a span {
  width: 4rem;
  height: auto;
  font-size: 2rem;
}

/* Parallax Spacer*/
.parallax-spacer1 {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /*fixed = parallax
  scroll = normal
*/
  background-attachment: scroll;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 7, 1, 0.7)), to(#FFFDFA)), url("../img/img_square_and_compass.png") no-repeat center left/contain;
  background: linear-gradient(rgba(8, 7, 1, 0.7), #FFFDFA), url("../img/img_square_and_compass.png") no-repeat center left/contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: .8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 4rem;
}

.section-light {
  background-color: #FFFDFA;
  color: #020202;
}

.section-dark {
  background-color: #020202;
  color: #FFFDFA;
}

/*Greeting Section*/
.pg-greeting {
  width: 100%;
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'statement wmPhoto' 'scripture wmphoto';
  gap: .9em;
}

@media screen and (max-width: 800px) {
  .pg-greeting {
        grid-template-areas: 'wmphoto' 'statement' 'scripture';
  }
}

.pg-greeting .greeting-statement {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: statement;
}

.pg-greeting .greeting-scripture {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: scripture;
  font-family: "Expletus Sans", cursive;
}

.pg-greeting .greeting-photo {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: wmPhoto;
}

.pg-greeting .greeting-photo img {
  width: 100%;
  max-height: 400px;
}

/* Follow */
.follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0 30px;
}

.follow a {
  padding-left: 1.2rem;
}

.follow a:hover {
  color: #064663;
}

/* Footer*/
.footer {
  font-size: 1em;
  padding: 1.5rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 800px) {
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer div {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer div i {
  margin-right: 10px;
}

.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 700px) {
  .footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer li {
  margin-right: 2rem;
  margin-bottom: 1.4rem;
}

.footer li:hover {
  border-bottom: 2px solid #262626;
}

.footer li:hover a {
  color: #064663;
}

.pg-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pg-about .pg-about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  padding: 1rem 2rem;
}

.pg-about .pg-about-content ul {
  list-style: disc;
}

.pg-about .pg-about-content ul, .pg-about .pg-about-content ol {
  font-size: 1.5rem;
}

@media screen and (max-width: 700px) {
  .pg-about .pg-about-content ul, .pg-about .pg-about-content ol {
    font-size: .8rem;
  }
}

.pg-about .pg-about-content span {
  font-weight: normal;
  color: #064663;
  margin-left: 12px;
}
/*# sourceMappingURL=style.css.map */