html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  font-family: "Kalam", sans-serif;
  background: #D77A61;
}

a {
  text-decoration: none;
}

.section-container {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 50vh;
  padding: 11vh 10px;
}
.section-container:nth-child(even) {
  background: #D77A61;
}
.section-container:nth-child(odd) {
  background-color: #223843;
}
@media (min-width: 992px) {
  .section-container {
    padding: 7vh 10px;
  }
}

.section-divider {
  width: 80%;
  margin: 20px auto;
  border: medium dashed #EFF1F3;
}

@keyframes background-gradient {
  0% {
    background-position: 20% 0%;
  }
  50% {
    background-position: 80% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}
#landing {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  scroll-snap-align: start;
}

#landing video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#landing-container-inner {
  display: flex;
  flex-direction: column;
  color: black;
  position: absolute;
  width: 100%;
  text-align: center;
  height: 100vh;
  top: 50px;
}
@media (min-width: 576px) {
  #landing-container-inner {
    height: 90vh;
    top: 15vh;
  }
}
@media (min-width: 768px) {
  #landing-container-inner {
    height: 80vh;
  }
}
@media (min-width: 992px) {
  #landing-container-inner {
    min-height: 600px;
    height: 60vh;
  }
}

#service-times {
  white-space: pre-wrap;
}

#landing-photo-credits {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: end;
  margin-right: 2%;
}

#more-info {
  position: flex;
  padding-top: 80vh;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(248, 248, 248, 0.75);
  max-width: 100px;
  max-height: 100px;
  width: 10vh;
  height: 10vh;
}

#directions-container {
  margin-top: auto;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  #directions-container {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  #directions-container {
    margin-bottom: 10px;
  }
}

#church-name {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (min-width: 576px) {
  #church-name {
    line-height: normal;
  }
}

#welcome-msg {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 576px) {
  #welcome-msg {
    line-height: normal;
  }
}

.landing-logo-container {
  display: block;
}
@media (min-width: 992px) {
  .landing-logo-container {
    display: none;
  }
}

.landing-logo {
  width: 50vw;
  max-height: 100px;
}
@media (min-width: 576px) {
  .landing-logo {
    max-height: 200px;
    max-width: 300px;
  }
}

.live-stream-button-container {
  margin: 0 auto;
  margin-top: 20px;
}

.belief {
  max-width: 700px;
  line-height: 1.3;
  width: 90vw;
  margin: 0 auto;
}
.belief p {
  white-space: pre-wrap;
}

.belief-button-container {
  max-width: 90vw;
  margin: 0 auto;
}

.belief-button-text {
  font-size: 1.2rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .belief-button-text {
    font-size: 1.5rem;
    font-weight: 700;
  }
}

#staff-header {
  text-align: center;
}

#staff-list {
  width: calc(100vw - 20px - 5px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  #staff-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.staff-member {
  display: block;
  text-align: start;
}
@media (min-width: 768px) {
  .staff-member {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.staff-member-image {
  width: 85vw;
  max-width: 350px;
  display: block;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  float: none;
}
@media (min-width: 992px) {
  .staff-member-image {
    float: left;
    width: 40vw;
    max-height: 50vh;
    margin-left: 0;
    margin-right: 20px;
  }
}

.staff-member-text {
  white-space: pre-line;
  width: 85vw;
  max-width: 700px;
  line-height: 1.3;
  margin-top: 2px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .staff-member-text {
    width: 100%;
    margin-top: 0;
    padding-right: 25px;
  }
}

.staff-name {
  margin-bottom: 10px;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.staff-position {
  font-style: italic;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.staff-member-description {
  white-space: pre-wrap;
}

#contact {
  min-height: 0;
  padding: 2rem 0;
}

#contact-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: top;
  justify-content: center;
}
@media (min-width: 768px) {
  #contact-container {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .contact-container-inner {
    margin: 0 5vw;
  }
}

.socials-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.socials-icon-margin {
  margin: 0 1rem;
}

#contact-meeting-times-container p {
  white-space: pre-wrap;
  margin-bottom: 0;
}

#about {
  text-align: center;
}

#about-container-outer {
  width: 100%;
}

#about-container-inner {
  width: calc(100% - 40px);
  padding: 0 20px;
  line-spacing: 1.3;
}
@media (min-width: 992px) {
  #about-container-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
#about-container-inner img {
  width: 80vw;
  max-width: 702px;
  max-height: 468px;
}
@media (min-width: 992px) {
  #about-container-inner img {
    width: 30vw;
    height: 20vw;
    min-width: 402px;
    min-height: 268px;
    max-width: 1200px;
    max-height: 900px;
  }
}
#about-container-inner p {
  width: 80vw;
  max-width: 700px;
  white-space: pre-wrap;
  text-align: start;
  margin: 0 auto;
}
@media (min-width: 992px) {
  #about-container-inner p {
    margin: 0 20px;
    padding-right: 10px;
  }
}

#meeting-times {
  text-align: center;
}

#meeting-times-container-outer {
  width: 100%;
}

#meeting-times-container-inner {
  width: calc(100% - 40px);
  padding: 0 20px;
  line-spacing: 1.3;
}
@media (min-width: 992px) {
  #meeting-times-container-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
}
#meeting-times-container-inner img {
  width: 80vw;
  max-width: 702px;
  max-height: 468px;
}
@media (min-width: 992px) {
  #meeting-times-container-inner img {
    width: 30vw;
    height: 20vw;
    min-width: 402px;
    min-height: 268px;
    max-width: 1200px;
    max-height: 900px;
    padding-right: 10px;
  }
}
#meeting-times-container-inner p {
  width: 80vw;
  max-width: 400px;
  white-space: pre-wrap;
  text-align: left;
  margin: 0 auto;
}
@media (min-width: 992px) {
  #meeting-times-container-inner p {
    margin: 0 20px;
  }
}

#photo-gallary-inner-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#photo-gallary-inner-container img {
  width: 80vw;
  max-width: 702px;
  max-height: 468px;
  margin: 10px;
}
@media (min-width: 992px) {
  #photo-gallary-inner-container img {
    width: 30vw;
    height: 20vw;
    min-width: 402px;
    min-height: 268px;
    max-width: 1200px;
    max-height: 900px;
  }
}

#events-header {
  width: 100%;
  text-align: center;
}

#events-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
#events-list hr {
  border: 0;
  height: 2px;
  width: 50%;
  position: relative;
  margin: 10px auto;
  background-color: #fff;
}

.event-item {
  max-width: 800px;
  width: 80vw;
}

.event-image {
  width: 300px;
  height: 300px;
  object-fit: fill;
}

.event-item-body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.event-title {
  width: 100%;
  margin: 0;
  padding: 0;
}

.event-link-a {
  color: #0d6efd;
  text-decoration: underline;
}

.event-link-btn {
  margin-top: 10px;
}

.event-date {
  color: #e9ecef;
}

.fs-1 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .fs-1 {
    font-size: 2.75rem;
  }
}
@media (min-width: 992px) {
  .fs-1 {
    font-size: 2.5rem;
  }
}

.fs-2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .fs-2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .fs-2 {
    font-size: 2rem;
  }
}

.fs-3 {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .fs-3 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .fs-3 {
    font-size: 1.75rem;
  }
}

.fs-4 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .fs-4 {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .fs-4 {
    font-size: 1.5rem;
  }
}

.fs-5 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .fs-5 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .fs-5 {
    font-size: 1.25rem;
  }
}

.fs-6 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .fs-6 {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .fs-6 {
    font-size: 1rem;
  }
}

.h1 {
  font-weight: 700;
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .h1 {
    font-size: 2.75rem;
  }
}
@media (min-width: 992px) {
  .h1 {
    font-size: 2.5rem;
  }
}

.h2 {
  font-weight: 700;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .h2 {
    font-size: 2.35rem;
  }
}
@media (min-width: 992px) {
  .h2 {
    font-size: 2rem;
  }
}

.h3 {
  font-weight: 700;
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .h3 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .h3 {
    font-size: 1.75rem;
  }
}

.h4 {
  font-weight: 700;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .h4 {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .h4 {
    font-size: 1.5rem;
  }
}

.h5 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .h5 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .h5 {
    font-size: 1.25rem;
  }
}

.h6 {
  font-weight: 700;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .h6 {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .h6 {
    font-size: 1rem;
  }
}

.unselectable-text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.highlight-primary {
  display: inline;
  background: #D77A61;
  color: #000;
  box-shadow: 0.2em 0 0 #D77A61, -0.2em 0 0 #D77A61;
  padding: 0.11em 0.05em;
  line-height: 1.3em;
}
@media (min-width: 992px) {
  .highlight-primary {
    padding: 0.25em 0;
    box-shadow: 0.5em 0 0 #D77A61, -0.5em 0 0 #D77A61;
    line-height: normal;
  }
}

.highlight-secondary {
  display: inline;
  background: #223843;
  color: #fff;
  box-shadow: 0.2em 0 0 #223843, -0.2em 0 0 #223843;
  padding: 0.11em 0.05em;
  line-height: 1.3em;
}
@media (min-width: 992px) {
  .highlight-secondary {
    padding: 0.25em 0;
    box-shadow: 0.5em 0 0 #223843, -0.5em 0 0 #223843;
    line-height: normal;
  }
}

.highlight-light {
  display: inline;
  background: #EFF1F3;
  color: #000;
  box-shadow: 0.2em 0 0 #EFF1F3, -0.2em 0 0 #EFF1F3;
  padding: 0.11em 0.05em;
  line-height: 1.3em;
}
@media (min-width: 992px) {
  .highlight-light {
    padding: 0.25em 0;
    box-shadow: 0.5em 0 0 #EFF1F3, -0.5em 0 0 #EFF1F3;
    line-height: normal;
  }
}

.btn {
  appearance: none;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 6px;
  box-shadow: rgba(10, 10, 10, 0.25) 0 1px 0;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}
.btn:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}
.btn:disabled {
  cursor: default;
}
.btn a {
  text-decoration: none;
}

.btn-primary {
  background-color: #D8B4A0;
  color: #fff;
}
.btn-primary:hover {
  background-color: #ba7b58;
}
.btn-primary:focus {
  box-shadow: #ba7b58;
  outline: none;
}
.btn-primary:disabled {
  background-color: #013889;
  color: #fff;
  border-color: rgba(10, 10, 10, 0.25);
}
.btn-primary a {
  color: #fff;
}

.btn-secondary {
  background-color: #6c757d;
  color: #000;
}
.btn-secondary:hover {
  background-color: #3d4246;
}
.btn-secondary:focus {
  box-shadow: #3d4246;
  outline: none;
}
.btn-secondary:disabled {
  background-color: black;
  color: #fff;
  border-color: rgba(10, 10, 10, 0.25);
}
.btn-secondary a {
  color: #000;
}

.btn-more-info {
  position: absolute;
  bottom: 10vh;
  margin: 0 auto;
  text-align: center;
  animation: pulse 4s ease 0s infinite;
}
.btn-more-info a {
  text-decoration: none;
  color: #f8f8f8;
}
.btn-more-info svg {
  max-width: 100px;
  max-height: 100px;
  width: 10vh;
  height: 10vh;
}
.btn-more-info:hover {
  animation: none;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background-color: rgba(16, 14, 12, 0.5);
  color: #EFF1F3;
  border: 3px solid #EFF1F3;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.btn-outline:hover {
  color: #000;
  background-color: #EFF1F3;
  border-color: #EFF1F3;
}
.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(239, 241, 243, 0.5);
}
.btn-outline:disabled {
  color: #013889;
  background-color: transparent;
  border-color: #013889;
  cursor: not-allowed;
}
.btn-outline a {
  color: none;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.btn-outline a:hover {
  color: #000;
}
@media (min-width: 576px) {
  .btn-outline {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .btn-outline {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

.btn-outline-light {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  color: #EFF1F3;
  border: 3px solid #EFF1F3;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #EFF1F3;
  border-color: #EFF1F3;
}
.btn-outline-light:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(239, 241, 243, 0.5);
}
.btn-outline-light:disabled {
  color: #013889;
  background-color: transparent;
  border-color: #013889;
  cursor: not-allowed;
}
.btn-outline-light a {
  color: none;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.btn-outline-light a:hover {
  color: #000;
}
@media (min-width: 576px) {
  .btn-outline-light {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .btn-outline-light {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

.btn-outline-light-sm {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  color: #EFF1F3;
  border: 3px solid #EFF1F3;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.btn-outline-light-sm:hover {
  color: #000;
  background-color: #EFF1F3;
  border-color: #EFF1F3;
}
.btn-outline-light-sm:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(239, 241, 243, 0.5);
}
.btn-outline-light-sm:disabled {
  color: #013889;
  background-color: transparent;
  border-color: #013889;
  cursor: not-allowed;
}
.btn-outline-light-sm a {
  color: none;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.btn-outline-light-sm a:hover {
  color: #000;
}
@media (min-width: 576px) {
  .btn-outline-light-sm {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .btn-outline-light-sm {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 5vh;
  z-index: 1000;
  align-items: center;
  padding: 0;
  margin: 0;
  display: block;
  background-color: none;
  color: #fff;
}
@media (min-width: 992px) {
  .navbar {
    background-color: rgba(239, 241, 243, 0.8);
    display: flex;
    min-height: 50px;
    height: 6vh;
    padding: 0 1vw;
  }
}

.navbar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1vw;
  width: 100%;
}

.navbar-logo {
  position: absolute;
  left: 1vw;
}
.navbar-logo img {
  height: 100%;
  max-height: 40px;
}
@media (min-width: 576px) {
  .navbar-logo img {
    max-height: 40px;
  }
}
@media (min-width: 768px) {
  .navbar-logo img {
    max-height: 40px;
  }
}

.navbar-links {
  display: none;
  gap: 2rem;
}
@media (min-width: 576px) {
  .navbar-links {
    display: flex;
  }
}
.navbar-links a {
  color: #000;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 100;
  transition: color 0.3s ease;
}
.navbar-links a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 576px) {
  .navbar-links a {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .navbar-links a {
    font-size: 1.1rem;
  }
}

#nav-mobile {
  visibility: visible;
  display: flex;
  flex-direction: column;
  background-color: rgba(239, 241, 243, 0.8);
  color: #000;
  min-height: 5vh;
}
@media (min-width: 992px) {
  #nav-mobile {
    visibility: hidden;
  }
}

#nav-mobile-menu {
  display: none;
}

#nav-mobile-menu.is-active {
  display: flex;
  flex-direction: column;
  background-color: #EFF1F3;
  color: #000;
}

#navbar-mobile-logo-hamburger-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 93vw;
  padding-top: 1vh;
  padding-right: 5vw;
  padding-left: 2vw;
}

#nav-hamburger-label {
  font-size: 1.25rem;
}
@media (min-width: 576px) {
  #nav-hamburger-label {
    font-size: 2rem;
  }
}

#navbar-mobile-hamburger {
  margin-left: auto;
}

#nav-hamburger {
  display: none;
}

.navbar-mobile-logo {
  width: 50px;
  height: 50px;
}
.navbar-mobile-logo img {
  height: 100%;
  max-height: 50px;
}
@media (min-width: 576px) {
  .navbar-mobile-logo img {
    max-height: 50px;
  }
}
@media (min-width: 768px) {
  .navbar-mobile-logo img {
    max-height: 40px;
  }
}

#nav-mobile-menu {
  padding-left: 0;
  list-style: none;
  margin-top: 0;
}
#nav-mobile-menu li {
  align-items: center;
  width: 100vw;
  text-align: center;
  border-top: solid;
  padding-top: 7px;
  padding-bottom: 7px;
}
#nav-mobile-menu li:first-child {
  border-top: none;
}
#nav-mobile-menu li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 3rem;
  color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#nav-mobile-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#nav-desktop {
  visibility: hidden;
  display: none;
}
@media (min-width: 992px) {
  #nav-desktop {
    display: flex;
    visibility: visible;
  }
}

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