:root {
  --lcf-green: #a5c3aa;
  --lcf-softgreen: #e9f4de;
  --lcf-softblue: #6da1d9;
}
@font-face {
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Regular.ttf');
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'PT Sans', sans-serif;
}
html, body { height: 100%; }
html {
  scroll-behavior: smooth;
}
body { background: #fff; }
/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::selection{
  background: rgb(0,123,255,0.3);
}
section {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}
section .title h1 { color:white; }
section.section { width:100%; padding-right: 100px; padding-left:100px; }
a { text-decoration: none; }
hr { margin-top: 15px; margin-bottom: 15px; }
.content{
  max-width: 1250px;
  margin: auto;
  padding: 0 30px;
}
._navbar{
  position: fixed;
  width: 100%;
  z-index: 2;
  padding: 25px 0;
  transition: all 0.3s ease;
}
._navbar.sticky{
  background: #fff;
  padding: 10px 0;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}
._navbar .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
._navbar .logo img{
  width: 180px;
}
._navbar .menu-list{
  display: inline-flex;
  margin: 0;
}
.menu-list li{
  list-style: none;
}
.menu-list li.logo-mobile { display: none;}
.menu-list li a{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-left: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
._navbar.sticky .menu-list li a { color: #2a2a2a;}
a.active { color: var(--lcf-green) !important;}
.menu-list li a:hover{
  color: var(--lcf-softblue);
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.sections {
    position: relative;
    z-index: 5;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.btns {
  display: flex;
  gap: 15px;
}
/* ================= */
/* Start About US == */
/* ================= */
.about {
  /*height: 100vh; */
  width: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}
.about .main img {
  width: 580px;
  max-width: 100%;
  height: auto;
  padding: 0 10px;
}
.all-text {
  width: 600px;
  max-width: 100%;
  padding: 0 10px;
}
.all-text.constitution {
  width: 100%;
  text-align: center;
}
.main {
  width: 1290px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.all-text h4 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #000;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 10px;
}
.all-text h1, h1.title {
  font-size: 65px;
  color: #111111;
  font-weight: 700;
  margin-bottom: 20px;
}
.all-text p {
  font-family: 'PT Sans', sans-serif;
  font-size: 22px;
  color: #777777;
  line-height: 30px;
  margin-bottom: 35px;
}

/* ================= */
/* End About US == */
/* ================= */

/* ================= */
/* Start Gallery == */
/* ================= */
section.gallery {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.media-thumb {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px; }
  .media-thumb:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgb(109 161 217 / 80%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .media-thumb img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: .3s transform ease;
    -o-transition: .3s transform ease;
    transition: .3s transform ease; }
  .media-thumb .media-text {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    margin-top: 20px; }
    .media-thumb .media-text h3 {
      font-size: 1.5rem;
      font-weight: 900;
      color: #fff;
      margin: 0;
      padding: 0; 
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8), 0px 0px 2px  rgba(0,0,0,1);
    }
    .media-thumb .media-text .location {
      font-size: .8rem;
      color: rgba(26, 55, 77, 0.5); }
    .media-thumb .media-text h3, .media-thumb .media-text .location {
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
  .media-thumb:hover {
    z-index: 3; }
    .media-thumb:hover h3 {
      color: #ffffff; }
    .media-thumb:hover .location {
      color: rgba(255, 255, 255, 0.5); }
    .media-thumb:hover img {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
    .media-thumb:hover:after {
      opacity: 1;
      visibility: visible; }
    .media-thumb:hover .media-text {
      -webkit-transition-delay: .2s;
      -o-transition-delay: .2s;
      transition-delay: .2s;
      opacity: 1;
      visibility: visible; }
.owl-3-slider .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  .owl-3-slider .owl-nav .owl-prev, .owl-3-slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 30px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    @media (max-width: 767.98px) {
      .owl-3-slider .owl-nav .owl-prev, .owl-3-slider .owl-nav .owl-next {
        display: none; } }
  .owl-3-slider .owl-nav .owl-prev {
    left: -50px; }
    .owl-3-slider .owl-nav .owl-prev:hover {
      left: -65px;
      color: #1A374D; }
  .owl-3-slider .owl-nav .owl-next {
    right: -50px; }
    .owl-3-slider .owl-nav .owl-next:hover {
      color: #1A374D;
      right: -65px; }
    .owl-3-slider .owl-nav .owl-next span {
      display: inline-block;
      -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
      transform: rotate(-180deg); }

.owl-3-slider:hover .owl-nav {
  opacity: 1;
  visibility: visible; }

.owl-single .owl-dots, .owl-carousel .owl-dots {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  .owl-single .owl-dots .owl-dot, .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 5px; }
    .owl-single .owl-dots .owl-dot span, .owl-carousel .owl-dots .owl-dot span {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.2); }
    .owl-single .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot.active span {
      background: #1A374D; }

.owl-carousel .owl-item img {
    min-height: 500px;
    object-fit: cover;
}

/* ================= */
/* End Gallery == */
/* ================= */

.activities-section {
    background: var(--lcf-green);
}
.cta-container {
  display: flex;
  justify-content: center;
}

.activities-item {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}
.activities-item:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #1A374D;
}

/* =================== */
/* Start Contact US == */
/* =================== */
.contact-us {

  background: linear-gradient(90deg, var(--lcf-green) 0%, var(--lcf-green) 30%, var(--lcf-softgreen) 30%, #fff 100%);
  background: #fff;
  position: relative;
  width: 100%;
  padding: 140px 250px;
}
.contact-us .title {
  display: flex;
  justify-content: center;
  align-items: center;  
  font-size: 2em;
}
.contact-us .title h2 {
  color: black;
  font-weight: 500;
}
.form-container {
  grid-area: form;
}
.info-container {
  grid-area: info;
}
.map-container {
  grid-area: map;
}
.contact {
  padding: 40px;
  background: #f5f6fa;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
}
.box {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 5fr 5fr;
  grid-template-areas:
  "form info"
  "form map";
  grid-gap: 20px;
  margin-top: 30px;
}
.contact h3 {
  font-weight: 500;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.formBox {
  position: relative;
  width: 100%;
}
.formBox .row50 {
  display: flex;
  gap: 20px;
}
.inputBox {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 50%;
}
.formBox .row100 .inputBox {
  width: 100%;
}
.inputBox span {
  color: #000;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: normal;
}
.inputBox input, .inputBox textarea, select {
  background: #fff;
  color: #a3a3a3;
  font: inherit;
  box-shadow: 0 6px 10px 0 rgb(0 0 0 / 10%);
  border: 0;
  outline: 0;
  padding: 22px 18px;
}
.inputBox input::placeholder, .inputBox textarea::placeholder { color:#a3a3a3 }
.inputBox textarea {
  font-size: 1.1em;
  outline: none;
  resize: none;
  min-height: 220px;
  margin-bottom: 10px;
}
.inputBox ._btn {
  max-width: 180px;
}
.inputBox ::placeholder { color: #f00 }
.info-container { /*background-color:#0e3959*/  }
.info-container h3 { color: black; }
.info-container .infoBox div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.info-container .infoBox div span {
  min-width: 30px;
  height: 30px;
  color: #fff;
  background: var(--lcf-green);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  border-radius: 50%;
  margin-right: 15px;
}
/*.info-container .infoBox div p {
  color: #000;
  font-size: 1.1em;
  font-weight: bold;
} */
.info-container .infoBox div a {
  text-decoration: none;
  color: #483c3c;
  font-size: 1.1em;
}
.sci {
  margin-top: 40px;
  display: flex;
}
.sci li {
  list-style: none;
  margin-right: 15px;
}
.sci li a {
  color: yellow;
  font-size: 2em;
  color: #ccc;
}
.sci li a:hover {
  color: purple;
}

.map-container { padding:0 }
.map-container iframe { width:100%; height:100%; }
/* ================= */
/* End Contact us == */
/* ================= */

/* ================================================ */
/* Start components (button, input, links, etc. === */
/* =================================================*/
._btn {
  background: white;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: bolder;
  color: #111111;
  outline: none;
  box-shadow: 0px 16px 32px 0px rgb(0 0 0 / 20%);
  /*margin-right: 20px; */
  text-align: center;
  width: 200px;
}

._btn:hover {
  background: var(--lcf-green);
  color: white;
  transition: .3s;
  cursor: pointer;
}

._btn.b-black {
  background: #111111;
  color: white;
}
/* ================================================ */
/* Start components (button, input, links, etc. === */
/* =================================================*/

.hero {
  padding: 10rem 0 10rem 0;
  background: url(../img/bible-banner2.jpg);
  background-position: bottom;
  margin-bottom: 100px;
}
.hero h1 {
    color: #fff;
    font-size: 55px;
    font-weight:700; }
    @media (max-width: 991.98px) {
      .hero h1 {
        font-size: 45px; } }
    .hero h1 .typed-words {
      position: relative; }
      .hero h1 .typed-words:before {
        position: absolute;
        height: 7px;
        background-color: #B1D0E0;
        bottom: 0;
        left: 0;
        right: 0; }
.hero .container.pt-50 { padding-top: 50px; }
.hero .intro-wrap {
  position: relative;
  z-index: 1;
}
.hero .slides {
    background: #ffffff;
    max-width: 800px;
    left: -100px;
    z-index: 0;
    position: relative;
    /*border-radius: 200px; */
    -webkit-box-shadow: 0 25px 50px -10px rgba(26, 55, 77, 0.4);
    box-shadow: 0 25px 50px -10px rgba(26, 55, 77, 0.4);
    height: 608px;
    margin-bottom: -200px; }
.hero .slides img {
  object-fit: cover;
}

@media (max-width: 991.98px) {
      .hero .slides {
        left: 0; } }
    .hero .slides img {
      position: absolute;
      /* border-radius: 200px; */
      opacity: 0;
      -webkit-transition: 4s opacity ease;
      -o-transition: 4s opacity ease;
      transition: 4s opacity ease;
      background: #ffffff; }
      .hero .slides img.active {
        opacity: 1;
        z-index: 1; }
.form {
  position: relative;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  z-index: 9;
  padding: 30px;
  background: #ffffff; }
.banner{
  background: url("../img/bible.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  filter: brightness(0.5);

  display: flex;
  padding: 100px;
}
#ourmanna-verse {
  text-align: center;
}
p#mannaverse {
  font-size: 17px;
}
p#mannaverse-reference {
  font-weight: bold;
  color: var(--lcf-green);
  font-size: 18px;
}
.aboust{
  padding: 30px 0;
}
.about.bg {
  background-image: url(../img/church.jpg);
  background-position: bottom;
  filter: ;
}
.about .title{
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}
.about p{
  padding-top: 20px;
  text-align: justify;
}
.about-full-text {
  font-size: 1.5rem;
  font-family: 'PT Sans', sans-serif;
}
.about.bg { flex-direction:column; height:auto; padding-bottom: 100px}
.about.bg p { color: #fff; font-size: 1.2em; font-family: 'PT Sans', sans-serif; }
.about.bg .title { color: #fff; margin-bottom: 50px; }
.gallery { width:100%; height:100vh; background: #0a141d; }
.icon{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.menu-list .cancel-btn{
  position: absolute;
  right: 30px;
  top: 20px;
}
.section-whatishappening {
  padding: 70px 0;
}
.section-title {
  position: relative;
  padding-bottom: 20px;
  display: inline-block; }
  .section-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #1A374D; }
  .section-title.text-center:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
.feature-img-bg {
  border-radius: 20px;
  background-size: cover; }
  @media (max-width: 991.98px) {
    .feature-img-bg {
      height: 300px !important;
      margin-bottom: 30px; } }

/* Constitution */
h3.constitution-title {
  font-size: 24px;
  font-weight: bold;
  color: black;
}
h5.constitution-subtitle {
  font-size: 20px;
  font-weight: bold;
}
p.constitution-paragraph {
  font-size: 18px;
}
div.indented { padding-left: 50px; }

/* Footer */
.footer {
  width: 100%;
  /*background-color: #0a141d; */
  background-color: var(--lcf-green);
  text-align: center;
}

.footer .row {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px;
  padding: 45px 0px;
}

.footer .row .col figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .row .col figure img {
  width: 250px;
}

.footer .row .col h2 {
  color: whitesmoke;
  margin-bottom: 25px;
  font-size: 20px;
}

.footer .row .useful-links {
  list-style: none;
}
.footer a.address { color: white; text-decoration: underline; }
.footer .row .useful-links li { margin-bottom: 10px; }
.footer .row .useful-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.footer .row .socials a {
  display: inline-block;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: whitesmoke;
  margin-right: 10px;
  background-color: #0d2033;
  text-align: center;
  transition: all 300ms ease;
}

.footer .row .socials a:hover {
  color: aqua;
}

.footer .footer-bottom {
  background-color: #0a1a2a;
  padding: 15px 10px;
  text-align: center;
  color: white;
}

/* Media queries */
@media (max-width: 1230px) {
  .content{
    padding: 0 60px;
  }
  .about {
    width: 100%;
    height: auto;
    padding: 60px 0;
  }
  .all-text {
    text-align: center;
    margin-top: 40px;
  }
}
@media (max-width: 1100px) {
  .content{
    padding: 0 40px;
  }
}
@media (max-width: 900px) {
  .footer .row { grid-template-columns: repeat(2, 1fr); }
  .content{
    padding: 0 30px;
  }
  .contact-us { background: linear-gradient(180deg, var(--lcf-softgreen) 0%, var(--lcf-softgreen) 30%, var(--lcf-softgreen) 30%, #fff 100%) }
  .contact-us { padding:20px }
  .box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "form"
      "info"
      "map";
  }
  .map-container { min-height:300px }
  .formBox .row50 {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  .inputBox {
    width: 100%;
  }
  .contact:not(.map-container) { padding:30px }
}
@media (max-width: 868px) {
  body.disabled{
    overflow: hidden;
  }
  .icon{
    display: block;
  }
  .icon.hide{
    display: none;
  }
  ._navbar .menu-list{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: #222;
    transition: all 0.3s ease;
  }
  ._navbar.show .menu-list{
    left: 0%;
  }
  ._navbar .menu-list li{
    margin-top: 45px;
  }
  ._navbar .menu-list li.logo-mobile { display: block; margin: auto;}
  ._navbar .menu-list li.logo-mobile a img { width: 150px;}
  ._navbar .menu-list li a{
    font-size: 23px;
    margin-left: -100%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  ._navbar.show .menu-list li a{
    margin-left: 0px;
  }
  .footer .row {
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    padding: 35px 0px;
  }

  .about .main img {
    margin-bottom: 35px;
  }
  .all-text h1, h1 {
    font-size: 45px;
    margin-bottom: 20px;
  }
}

/**
 * Overlay
 * -- only show for tablet and up
 */
@media only screen and (min-width: 40em) {
  .modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  }
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
/**
 * Modal
 */
._modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  width: 600px;
  max-width: 75rem;
  min-height: 20rem;
  padding: 1rem;
  border-radius: 3px;
  opacity: 0;
  overflow-y: auto;
  visibility: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: scale(1.2);
  transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
}
._modal .close-modal {
  position: absolute;
  cursor: pointer;
  top: 5px;
  right: 15px;
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition-delay: 0.3s;
}
._modal .close-modal svg {
  width: 1.75em;
  height: 1.75em;
}
._modal ._modal-content {
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition-delay: 0.3s;
  text-align: center;
}
._modal ._modal-content h3 { font-weight:bold; }
._modal.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  /*background-image: url(../img/logo-lcf-black.png);
  background-repeat: no-repeat;
  background-position: center bottom; */
}
._modal.active ._modal-content {
  opacity: 1;
}
._modal.active .close-modal {
  transform: translateY(10px);
  opacity: 1;
}

/**
 * Mobile styling
 */
@media only screen and (max-width: 39.9375em) {
  h1 {
    font-size: 1.5rem;
  }

  ._modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    transform: scale(1.1);
    padding: 0 !important;
  }

  .close-modal {
    right: 20px !important;
  }
}

@media (min-width: 1200px)
  .container {
    width: 1170px;
  }
}
@media (min-width: 992px)
  .container {
    width: 970px;
  }
}
@media (min-width: 768px)
  .container {
    width: 750px;
  }
}
@media (max-width: 380px) {
  ._navbar .logo img{
    width: 90px;
  }
}