.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 200ms ease-in forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 200ms ease-in forwards;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  min-height: 100%;
  font-size: 100%;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 200;
  line-height: 1.3;
  overflow-x: hidden;
}
body.noscroll {
  overflow: hidden;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h2 {
  font-weight: 700;
  text-transform: uppercase;
  color: #3694a1;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.25);
}

h1 {
  visibility: hidden;
}

#wrapper {
  min-height: 100vh;
  position: relative;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.body {
  clear: both;
  padding-bottom: 250px;
}
@media (max-width: 63.9375em) {
  .body {
    padding-bottom: 616px;
  }
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.button {
  padding: 0.875rem 2.1875rem;
  background: #3694a1;
  border: 4px solid #f0898c;
  text-transform: uppercase;
  color: white;
  border-radius: 100vh;
  cursor: pointer;
  font-weight: 500;
  transition: all 300ms ease-in-out;
}
.button:hover {
  background: #f0898c;
  border: 4px solid #3694a1;
}

.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(#333333, transparent);
  z-index: 1;
}
.header__navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header nav {
  position: relative;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
  background-color: white;
  z-index: 2;
}
@media (max-width: 63.9375em) {
  .header nav {
    padding: 5px;
  }
}
.header__logo {
  padding: 0;
  width: 14.96875rem;
  height: 4.375rem;
}
.header__logo img {
  width: 100%;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #3694a1;
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__links a {
  position: relative;
  color: #3694a1;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.header__links a:not(:last-child) {
  margin-right: 32px;
}
.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -31px;
  background: #f0898c;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.header__links a:hover {
  color: #f0898c;
  transition: color 300ms ease-in-out;
}
.header__links a:hover::before {
  opacity: 1;
}
.header__menu {
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 1.5rem;
  background-color: white;
  padding: 1.625rem;
  border-radius: 5px;
  z-index: 2;
}
.header__menu a {
  display: block;
  color: #f0898c;
  padding: 0.625rem;
  text-align: center;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #3694a1;
}

.footer {
  color: white;
  text-align: center;
  overflow-x: hidden;
  padding: 40px;
}
@media (min-width: 64em) {
  .footer {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr) 2fr;
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas: "logo links1 links2 cta" "social links1 links2 copy";
    justify-items: start;
  }
}
.footer a {
  color: white;
}
.footer__logo {
  background-color: white;
  width: 14.96875rem;
  height: 4.375rem;
  padding: 4px;
  border-radius: 10px;
}
@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
  }
}
@media (min-width: 64em) {
  .footer__social {
    grid-area: social;
    align-self: flex-end;
  }
}
.footer__social a {
  display: inline-block;
}
.footer__social a:not(:last-child) {
  margin-right: 1rem;
}
.footer__social img {
  vertical-align: middle;
  height: 20px;
  width: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 2;
}
@media (min-width: 64em) {
  .footer__links {
    align-items: start;
  }
}
.footer__links a {
  text-transform: uppercase;
}
.footer__links a:hover {
  color: #cccccc;
}
@media (min-width: 64em) {
  .footer__links.col1 {
    grid-area: links1;
  }
}
@media (min-width: 64em) {
  .footer__links.col2 {
    grid-area: links2;
  }
}
@media (min-width: 64em) {
  .footer__cta {
    grid-area: cta;
    text-align: right;
    justify-self: end;
  }
}
@media (max-width: 63.9375em) {
  .footer__copy {
    position: relative;
    margin-top: 30px;
  }
}
@media (min-width: 64em) {
  .footer__copy {
    grid-area: copy;
    text-align: right;
    justify-self: end;
    align-self: flex-end;
  }
}
@media (max-width: 63.9375em) {
  .footer__margin {
    margin-bottom: 1.875rem;
  }
}

.intro {
  width: 100%;
  height: 100%;
  padding: 5px;
  margin: auto;
}

.hero {
  z-index: -1;
  background-color: #cccccc;
}
@media (min-width: 64em) {
  .hero {
    display: flex;
  }
}
.hero__hero {
  display: flex;
  flex-direction: row;
}
@media (max-width: 63.9375em) {
  .hero__hero {
    flex-direction: column-reverse;
  }
}
.hero__image {
  position: relative;
  content: "";
  background-image: url("../images/jesus.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 17.5rem;
  flex: 1;
  order: 2;
}
.hero__text {
  margin: 0.5rem;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  flex: 1;
  order: 1;
  padding: 1rem;
}
@media (max-width: 63.9375em) {
  .hero__text {
    margin: 0;
    border-radius: 0;
  }
}
.hero__text h1 {
  visibility: visible;
  font-weight: 400;
  font-size: 2.31rem;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero__text p {
  line-height: 1.5;
}

.vision {
  width: 100%;
}
.vision__video {
  display: block;
  width: 375px;
  margin: auto;
}

.social img {
  height: 20px;
  width: 20px;
}

.team {
  background-color: #cccccc;
  padding-top: 10px;
  padding-bottom: 10px;
}
.team__container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 63.9375em) {
  .team__container {
    flex-direction: column;
  }
}

.member {
  width: 22rem;
  background-color: #f0898c;
  border-radius: 10px;
  border: 3px solid #f0898c;
  margin: 4px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: 30px 1fr;
  grid-template-areas: "bnme bnme" "bdsc bdsc";
}
@media (max-width: 63.9375em) {
  .member {
    width: 95%;
    margin: 0;
    margin-bottom: 4px;
    align-self: center;
  }
}
.member__name {
  font-weight: 700;
  width: 100%;
  text-align: center;
  color: white;
  grid-area: bnme;
  text-transform: uppercase;
}
.member__desc {
  grid-area: bdsc;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 10px 10px;
}
.member__image {
  width: 120px;
  height: 158px;
  float: left;
}
.member__image img {
  height: 150px;
  width: 112px;
  margin-right: 6px;
  margin-bottom: 6px;
  border-bottom: 3px solid #f0898c;
  border-right: 3px solid #f0898c;
}
.member__bio p {
  padding: 0;
  margin: 0 5px 5px 5px;
  font-weight: 300;
  text-align: justify;
  font-size: 1rem;
}

.videos {
  width: 100%;
  padding: 0 2rem;
  display: flex;
  flex-direction: row;
  flex-flow: row wrap;
  justify-content: center;
}
.videos__watchon {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 5px;
}
.videos__platform {
  align-content: center;
  width: 11.875rem;
  height: 3.375rem;
  margin: 8px;
}
.videos__platform:hover {
  opacity: 0.25;
}

.video {
  width: 21.5625rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 2.5rem 10.25rem auto 1rem;
  grid-template-areas: "title" "video" "description" "date";
  background-color: #cccccc;
  border-radius: 5px;
  padding: 10px;
  margin: 5px;
}
.video__title {
  grid-area: title;
  align-self: flex-start;
  display: block;
  text-align: center;
  border-bottom: 1px solid #333333;
  font-weight: 400;
  text-transform: uppercase;
  height: 2.5rem;
  line-height: 1;
}
.video__video {
  grid-area: video;
  align-items: flex-start;
  justify-self: start;
  height: 10.25rem;
  margin: 3px auto;
}
.video__video iframe {
  width: 17.5rem;
  height: 9.84375rem;
}
.video__date {
  height: 1rem;
  grid-area: date;
  display: block;
  align-self: flex-end;
  text-align: center;
  border-top: 1px solid #333333;
}
.video__description {
  grid-area: description;
  justify-self: start;
}
.video__description p {
  text-align: justify;
}

.podcasts__listenon {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.podcasts__platform {
  align-content: center;
  width: 11.875rem;
  height: 3.375rem;
  margin: 8px;
}
.podcasts__platform:hover {
  opacity: 0.25;
}
.podcasts__player {
  max-width: 660px;
  margin: 0 auto;
}
.podcasts__player iframe {
  overflow: hidden;
  width: 100%;
}
@media (max-width: 63.9375em) {
  .podcasts__player iframe {
    border-radius: 0px;
    height: 500px;
    overflow: hidden;
  }
}

.events__video {
  width: 35rem;
  margin: 0 auto;
}
.events__video iframe {
  width: 100%;
}
@media (max-width: 63.9375em) {
  .events__video {
    width: 100%;
  }
}

.gallery {
  margin-bottom: 20px;
}
.gallery img {
  height: 450px;
  object-fit: contain;
}
.gallery__menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@media (max-width: 63.9375em) {
  .gallery__menu {
    flex-direction: column;
  }
}
.gallery__menu a {
  padding: 0.875rem 2.1875rem;
  background: #3694a1;
  border: 4px solid #f0898c;
  text-transform: uppercase;
  color: white;
  border-radius: 100vh;
  cursor: pointer;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  margin: 5px;
  text-align: center;
}
.gallery__menu a:hover {
  background: #f0898c;
  border: 4px solid #3694a1;
}

/* Slideshow container */
.slideshow-container {
  display: block;
  max-width: 1000px;
  position: relative;
  margin: auto;
  color: transparent;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  text-align: center;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  color: transparent;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.contact {
  padding: 20px;
  margin-bottom: 5px;
  margin: 0 auto;
  margin-bottom: 5px;
}
@media (min-width: 64em) {
  .contact {
    border: 1px solid black;
    border-radius: 4px;
    width: 75%;
  }
}
@media (max-width: 63.9375em) {
  .contact {
    width: 100%;
  }
}
.contact p {
  display: flex;
  flex-direction: row;
  justify-items: flex-start;
}
@media (max-width: 87.4375em) {
  .contact p {
    flex-direction: column;
  }
}
.contact label {
  justify-self: flex-start;
  width: 100px;
}
.contact input,
.contact textarea {
  justify-self: flex-start;
}

.warn {
  background-color: red;
  color: white;
}

.booking {
  background-color: #cccccc;
  display: flex;
  padding: 1rem;
  border-radius: 5px;
}
.booking__image {
  align-self: start;
  justify-self: center;
  padding: 0.5rem;
  background-color: white;
  border-radius: 5px;
}
.booking__welcome {
  align-self: flex-start;
  justify-self: center;
  padding: 1rem;
  width: 90%;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  font-weight: 500;
}
.booking__cta {
  text-align: center;
  padding: 1rem;
}

.testimonials {
  display: flex;
  padding: 20px;
  width: 100%;
  align-content: center;
  justify-content: center;
  justify-content: space-around;
  flex-flow: row wrap;
}

.testimonial {
  background-color: black;
  width: 25rem;
  padding: 20px;
  border-radius: 20px;
  color: white;
  margin-bottom: 5px;
}
.testimonial__item {
  justify-content: flex-start;
  font-weight: 400;
}
.testimonial__from {
  justify-content: flex-end;
  font-weight: 100;
  font-style: italic;
}

.comingSoon {
  clear: both;
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  font-size: 5rem;
}/*# sourceMappingURL=styles.css.map */