* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #fff;
  font-family: cinzel;
}


.head {
  top: 0vw;
  height: 8vw;
  width: 100%;
  position: fixed;
  z-index: 5;
  background-color: #c1a164;
  z-index: 9999;
}
@media (min-width: 320px) and (max-width: 480px) {}
.head img {
  height: 5vw;
  width: 5vw;
  border-radius: 10vw;
  position: absolute;
  left: 1vw;
  top: 1.5vw;
  border: solid 0.15vw rgb(36, 84, 218);
  cursor: pointer;
  animation: border-color-animation 3s infinite;
}
@keyframes border-color-animation {
  0% {
    border-color: rgb(36, 84, 218);
  }
  33% {
    border-color: rgb(255, 0, 0);
  }
  66% {
    border-color: rgb(0, 255, 0);
  }
  100% {
    border-color: rgb(36, 84, 218);
  }
}
.head h1 a{
  color: #111;
  text-decoration: none;
  position: relative;
  left: 7vw;
  top: 0.1vw;
  font-size: 1.8vw;
  cursor: pointer;
  font-family: cinzel;
}
.head p a{
  color: #111;
  position: relative;
  left: 7vw;
  top: 0.2vw;
  font-size: 1.3vw;
  cursor: pointer;
  text-decoration: none;
  font-family: cinzel;
}





.logo img {
  height: 5vw;
  width: 5vw;
  border-radius: 10vw;
  z-index: 9999;
  position: fixed;
  right: 1vw;
  top: 1.5vw;
  cursor: default;
}


.menu {
  text-align: center;
  /* position: fixed; */
  /* top: 3vw; */
  left: 43vw;
  z-index: 3;
  z-index: 9999;
}
.menu ul {
  display: flex;
  list-style: none;
  font-size: 1vw;
  padding: 0;
  margin: 0;
}
.menu ul li {
  position: relative;
  margin: 0 0.7vw;
  padding: 0.7vw;
}
.menu ul li a {
  text-decoration: none;
  color: #111;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  font-family: cinzel;
  font-weight: 700;
}
.menu ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.3vw;
  width: 0;
  height: 0.2vw;
  background-color: #fff;
  transform: translateX(-50%);
  transition: width 0.4s ease-in-out;
}
.menu ul li a:hover {
  color: #444;
}
.menu ul li a:hover::after {
  width: 50%;
}
.menu-1 {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: auto;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background-color: #c1a164;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.menu-1 li {
  padding: 0.7vw 1vw;
  white-space: nowrap;
  background-color: transparent;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu-1 li a {
  text-decoration: none;
  font-family: cinzel,bold;
  transition: color 0.3s ease;
}
.menu-1 li a:hover {
  color: #534c4c;
}
.menu ul li:hover .menu-1 {
  opacity: 1;
  visibility: visible;
}
.menu ul li:hover .menu-1 li {
  opacity: 1;
  transform: translateY(0);
}
.menu-1 li:nth-child(1) {
  transition-delay: 0.1s;
}
.menu-1 li:nth-child(2) {
  transition-delay: 0.2s;
}
.menu-1 li:nth-child(3) {
  transition-delay: 0.3s;
}
.menu-1 li:nth-child(4) {
  transition-delay: 0.4s;
}
.menu-1 li:nth-child(5) {
  transition-delay: 0.5s;
}
.menu ul li:not(:hover) .menu-1 {
  opacity: 0;
  visibility: hidden;
}
.menu ul li:not(:hover) .menu-1 li {
  opacity: 0;
  transform: translateY(-10px);
  transition-delay: 0s;
}
.menu-1 ul {
  padding: 0;
  margin: 0;
  display: block;
}
.arrow {
  display: inline-block;
  margin-left: 0.3vw;
  font-size: 1vw;
  transition: transform 0.3s ease;
}
.has-submenu:hover .arrow {
  transform: rotate(180deg);
}


.slider {
  position: relative;
  top: 8vw;
  width: 100%;
  height: 45vw;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.small-txt{
  font-size: 0.8rem!important;
}
.slide img {
  filter: brightness(0.9) contrast(1.3) saturate(1.5);
  width: 100%;
  height: 90%;
  object-fit: cover;
  display: block;
}
.nav-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 0%;
  cursor: pointer;
  z-index: 1;
}
.nav-arrow.left {
  left: 10px;
}
.nav-arrow.right {
  right: 10px;
}
.nav-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.back{
  margin-bottom: 2rem;
  background: #c1a164;
  color: #000;
  text-decoration: underline;
  padding-left: 7px;
  border-radius: 3px;
}
.alert-success {
  --bs-alert-color: #121212;
  --bs-alert-bg: #c1a164bf;
  --bs-alert-border-color: #c1a164;
  color: #000 !important;
}
.alert-success:hover {
  --bs-alert-bg: #6496c1;
  --bs-alert-border-color: #6496c1;
}
.container {
  display: flex;
  justify-content: space-between;
  gap: 0.2vw;
  margin-top: 3.5vw;
  background-color: #fff;
  padding: 0 2rem;
  /* height: 28.5vw; */
  font-family: Bodoni Moda;
}
.thumbnail {
  position: relative;
  /* top: 2.5vw; */
  width: 100%;
  /* height: 24vw; */
  overflow: hidden;
  border: 0.2vw solid #010101;
  border-radius: 0.5vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  transition: transform 0.3s ease;
}
.thumbnail:hover {
  transform: translateY(-0.3vw);
}
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.thumbnail .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  color: #fff;
  font-size: 1vw;
  font-weight: bold;
  opacity: 0;
  text-align: center;
  padding: 1.3vw;
  width: 80%;
  height: 71%;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #010101;
  transition: opacity 0.3s ease, transform 0.5s ease;
  box-shadow: 0 0 15px 5px rgba(243, 156, 18, 0.8);
}
.thumbnail .text h2 {
  margin-bottom: 2vw;
}
.thumbnail:hover .text {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: fadePopSmooth 0.5s ease-out forwards;
}
.thumbnail .text:not(:hover) {
  animation: popDown 0.5s ease-out forwards;
}
@keyframes fadePopSmooth {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes popDown {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}


.fade-section {
  position: relative;
  top: 0vw;
  width: 100%;
  height: 26vw;
  overflow: hidden;
  background-color: #eae5e5;
  margin-bottom: 2vw;
  font-family: cinzel;
  border-radius: 10px;
}
.background-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.title {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2vw;
  color: #111;
  text-align: center;
}
.content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  top: 35%;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.left-image {
  width: 18vw;
  height: 18vw;
  position: relative;
  top: -4vw;
  margin-left: 5vw;
  margin-right: 2vw;
}
.left-image img {
  width: 100%;
  height: 100%;
}
.right-content {
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.right-content p {
  font-size: 1.3vw;
  color: #111;
  margin: 0;
  padding-right: 2vw;
  flex-grow: 1;
  margin-bottom: 1vw;
  font-family: Bodoni Moda;
}
.right-content button {
  display: inline-block;
  font-family: cinzel;
  padding: 1.2vw 3vw;
  color: #252525;
  background-color: #fff;
  border: 2px solid #c1a164;
  border-radius: 2vw;
  cursor: pointer;
  font-size: 1vw;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: bold;
  transition: color 1s ease, border-color 1s ease;
  position: relative;
  z-index: 1;
  width: 35%;
}
.right-content button::before {
  content: '';
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 0%;
  height: 0%;
  background-color: #c1a164;
  transition: width 1s ease, height 1s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.right-content button:hover::before {
  width: 300%;
  height: 300%;
}
.right-content button:hover {
  color: #fff;
  border-color: #fff;
}
.show {
  opacity: 1 !important;
}
.hide {
  opacity: 0 !important;
}


.promise-container {
  position: relative;
  top: 0vw;
  width: 100%;
  height: 5vw;
  text-align: left;
  border-radius: 1vw;
  background-color: #fff;
  border: #c1a164 solid 0.2vw;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: cinzel;
}
.static-text {
  margin: 0.2vw;
  padding: 1vw 2vw;
  background-color: #c1a164;
  border-radius: 1vw;
  border: #c1a164 solid 0.2vw;
  color: #e6e9e6;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  left: -0.2vw;
}
.moving-text {
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  color: #111;
  white-space: nowrap;
  animation: moveText 20s linear infinite;
  z-index: 1;
}
@keyframes moveText {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}


.pastor-intro {
  text-align: center;
  background: #eae5e5;
  padding: 2vw;
  position: relative;
  top: 2vw;
  width:93%;
  height: auto;
  margin: auto;
  border-radius: 1vw;
  margin-bottom: 3vw;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3), 0px -4px 15px rgba(0, 0, 0, 0.3), 4px 0px 15px rgba(0, 0, 0, 0.3), -4px 0px 15px rgba(0, 0, 0, 0.3);
}
.pastor-intro p{
  font-size: 1.1vw;
  color: #111;
  font-family: Bodoni Moda;
  margin: 1.2vw 0;
}
.pastor-intro h1 {
  font-size: 2vw;
  margin: 1.2vw 0;
  color: #111;
  font-family: cinzel;
}
.pastor-intro h2 {
  margin: 1vw 0;
  color: #111;
  font-family: cinzel;
}
.pastor-intro pre {
  font-family: Bodoni Moda;
  font-size: 1.3vw;
  color: #111;
  margin-bottom: 0vw;
  text-align: left;
}
.learn-more {
  display: inline-block;
  padding: 0.5vw 3vw;
  color: #252525;
  background-color: #fff;
  border: 2px solid #c1a164;
  border-radius: 2vw;
  cursor: pointer;
  font-family: cinzel;
  font-size: 1.1vw;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: bold;
  transition: color 1s ease, border-color 1s ease;
  position: relative;
  z-index: 1;
}
.learn-more::before {
  content: '';
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 0%;
  height: 0%;
  background-color: #c1a164;
  transition: width 1s ease, height 1s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.learn-more:hover::before {
  width: 300%;
  height: 300%;
}
.learn-more:hover {
  color: #fff;
  border-color: #fff;
}


.Event-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}
.Calendar-image {
  position: fixed;
  right: 1vw;
  top: 81%;
  transform: translateY(-50%);
  width: 3.5vw;
  height: 3.5vw;
  z-index: 3;
  border-radius: 10vw;
}

.Gallery-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}
.Gallery-image {
  position: fixed;
  right: 1vw;
  top: 88%;
  transform: translateY(-50%);
  width: 3.5vw;
  height: 3.5vw;
  z-index: 3;
  border-radius: 10vw;
}

.Whatsapp-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}
.Whatsapp-image {
  position: fixed;
  right: 1vw;
  top: 95%;
  transform: translateY(-50%);
  width: 3.5vw;
  height: 3.5vw;
  z-index: 3;
  border-radius: 10vw;
}


.video {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  position: relative;
  margin-top: 1vw;
  background-color: #eae7e7;
  width: 99%;
  box-sizing: border-box;
  border-radius: 10px;
  margin-left: 0.5vw;
}
.video-container {
  width: 48%;
  height: auto;
  overflow: hidden;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.paragraph-container {
  width: 100%;
  height: auto;
  padding: 20px;
  line-height: 1.6;
  font-size: 1rem;
  font-family: Bodoni Moda;
  text-align: justify;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.paragraph-container p {
  margin: 0;
}
.paragraph-container h4 {
  text-align: center;
  margin: 0;
  margin-bottom: 1vw;
}
@media (max-width: 768px) {
  

  .head h1 a{
    top: -3.9vw;
  }
  .head p a{
    top: -11.8vw;
  }
  .video {
    flex-direction: column;
  }

  .video-container,
  .paragraph-container {
    width: 100%;
  }

  .video-container video {
    object-fit: cover;
  }
}


.contact-us {
  /* display: flex; */
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 0 rgba(0, 123, 255, 0);
  border-radius: 10px;
  width: 100%;

  max-width: 800px;
  /* margin-top: 1vw; */
  position: relative;
  /* margin-left: 17%; */
  /* margin-bottom: 1vw; */
  transition: box-shadow 1s ease-in-out;
  border: #c1a164 solid 0.1vw;
}
.contact-form {
  flex: 1;
  padding: 20px;
  /* pointer-events: auto; */
  z-index: 3;
}
.contact-form h2 {
  margin-bottom: 15px;
  justify-self: center;
  /* position: relative;
  left: 10vw; */
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form button {
  background: #c1a164;
  color: #000000;
  /* border: none; */
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 3px #000;
  padding: 0.4rem;
  cursor: pointer;
  border-radius: 5px;
  position: relative;
  width: 100%;
}
.contact-form button:hover {
  background: #c1a164;
  border: 1px solid #000;
}
.contact-info {
  padding: 20px;
  text-align: center;
  overflow: hidden;
}
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-left: 5vw;
  margin-top: 5px;
  margin-bottom: 5px;
}
.social-icons a {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.contact-us iframe {
  width: 100%;
  height: 260px;
  border: none;
  margin-top: 10px;
}
.contact-us h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5vw;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}
.contact-us.scrolled h1 {
  opacity: 0;
  /* pointer-events: none; */
}
.contact-us.scrolled .contact-form,.contact-us.scrolled .contact-info {
  opacity: 1;
  transform: translateY(0);
}
.contact-us h1 {
  text-align: center;
  font-size: 2.5vw;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}
.contact-us.scrolled h1 {
  opacity: 0;
  /* pointer-events: none; */
}
.contact-form, .contact-info {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
  z-index: 3;
}
.contact-us::before, .contact-us::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 10px;
}
.contact-us::before {
  top: -4px;
  left: -4px;
  border-left: 4px solid #c1a164;
  border-top: 4px solid #c1a164;
  z-index: -1;
}
.contact-us::after {
  bottom: -4px;
  right: -4px;
  border-right: 4px solid #c1a164;
  border-bottom: 4px solid #c1a164;
}
.contact-us.animated-border::before {
  animation: borderLeftTopToRightBottom 2s ease-in-out forwards;
  opacity: 1;
}
.contact-us.animated-border::after {
  animation: borderRightBottomToLeftTop 2s ease-in-out forwards;
  opacity: 1;
}
.contact-us.border-hidden {
  box-shadow: 0 0 15px #c1a164;
}
.contact-us.border-hidden::before, .contact-us.border-hidden::after {
  opacity: 0;
}
@keyframes borderLeftTopToRightBottom {
  0% {
    width: 0%;
    height: 0%;
  }
  50% {
    width: 0%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
}
@keyframes borderRightBottomToLeftTop {
  0% {
    width: 0%;
    height: 0%;
  }
  50% {
    width: 0%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
}


footer {
  background-color: #c1a164;
  color: white;
  padding: 2vw 2vw;
  font-family: cinzel;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-content a {
  color: #fff;
  text-decoration: none;
}
.footer-content div {
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
}
.footer-content .contactus-info p {
  margin: 8px 0;
}
.footer-content .quick-links ul, .footer-content .legal ul {
  list-style-type: none;
  padding-left: 0;
}
.footer-content .quick-links li, .footer-content .legal li {
  margin: 8px 0;
}
.footer-content .quick-links a, .footer-content .legal a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-content .quick-links a:hover, .footer-content .legal a:hover {
  color: #444;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #fff;
  padding-top: 10px;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  line-height: 1vw;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-content div {
    width: 100%;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

