@import url("https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}

@font-face {
  font-family: "MyFont";
  src: url("/Fonts/OTF/CabinetGrotesk-Bold.otf") format("woff2");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "MyFont", serif !important;
}

.fa-bars {
  color: white;
}

a {
  text-decoration: none !important;
}

/* navbar dropdown */
.submenu-parent {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  display: none;
  list-style: none;
  padding: 10px;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 10px;
}

.submenu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  font-size: 13px;
  transition: background 0.3s, color 0.3s;
  text-transform: uppercase;
}

.submenu li a:hover {
  background: #efefef;
  color: #0045e8;
}
.activate {
  /* background: #efefef; */
  color: #0045e8 !important;
}

.submenu-parent:hover .submenu {
  display: block;
}

/* Landing Page */
.top-bar {
  height: 13vh;
  display: flex;
  align-items: center;
}

.top-bar-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 12px;
  gap: 30px;
}

.top-bar-row div {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.navbar {
  background: #0045e8 !important;
  height: 15vh;
}

.navbar-brand span {
  font-size: 12px !important;
  color: white !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-nav {
  gap: 40px !important;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  color: white !important;
  font-size: 14px !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  height: 3px;
  width: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn-login {
  border-radius: 10px !important;
  border: 1px solid #fff !important;
  background: linear-gradient(90deg, #0045e8 0%, #306dff 100%);
  color: white !important;
  font-size: 13px !important;
  padding: 11px 45px !important;
}

.hero-section {
  background: url("/assets/images/hero-image.webp") no-repeat;
  height: 90vh;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 30px 30px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  color: white;
  text-align: center;
  align-items: center;
  height: 90vh;
  justify-content: center;
  width: 45%;
  margin: auto;
}

.hero-content p {
  padding: 15px 0;
}

.hero-buttons {
  gap: 20px;
  display: flex;
}

.hero-buttons > :nth-child(1) {
  background: #0045e8 !important;
}
.hero-buttons > :nth-child(1) a {
  color: white;
  text-decoration: none;
}
.hero-buttons > :nth-child(2) a {
  color: black;
  text-decoration: none;
}

.hero-buttons button {
  font-size: 12px !important;
  padding: 12px 30px !important;
  border-radius: 15px !important;
  border: none !important;
}

.welcome-content {
  text-align: center;
}

.welcome-section {
  padding: 50px 0;
}

.welcome-content h4 {
  padding: 15px 0;
}

.welcome-content p {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.welcome-image {
  padding-top: 30px;
}
.welcome-image img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 10px;
}

.img-div {
  background: #0045e8;
  margin-top: 20px;
  height: 100px;
  border-radius: 10px;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-row {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.service-row div {
  background: #eceeff;
  border: 1px solid #0045e8;
  height: 45vh;
  width: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.service-row div img {
  width: 30%;
}

.explorediv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.explorediv a {
  color: black;
  font-weight: 500;
}

.ministry-info {
  background: #d4ddff;
  color: white;
  height: 35vh;
  border-radius: 0 0 20px 0;
}

.ministry-info div {
  margin-left: 50px;
  background: #0045e8;
  height: 100%;
  padding: 30px;
  border-radius: 0 0 20px 0;
}

.ministry-info div p {
  font-size: 15px;
  padding-top: 10px;
}

.ministry-card img {
  border-radius: 20px 0 0 0;
  width: 100%;
}

.spinner-grow {
  width: 8px !important;
  height: 8px !important;
  background: white !important;
  border-radius: 50% !important;
}

.event-timer {
  background: #edf1ff;
  padding: 7px 25px;
  border-radius: 20px;
  display: flex;
  gap: 5px;
  align-items: center;
  width: 55%;
  margin-top: 15px;
  justify-content: center;
}

.event-timer span {
  font-size: 10px;
}

.event-details {
  display: flex;
  gap: 20px;
  align-items: center;
}

.event-timers span {
  font-size: 10px;
}

.event-timers {
  background: #ffe4e4;
  padding: 5px 25px;
  border-radius: 20px;
  display: flex;
  gap: 5px;
  align-items: center;
  width: 18%;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.event-card img {
  height: 45vh !important;
  object-fit: cover;
  border-radius: 20px 0 20px 0;
}

.event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card h5 {
  margin-top: 20px;
}
.event-card p {
  padding: 20px 0;
}
.btn-live-div > :nth-child(2) {
  background: #fff !important;
  color: #0045e8 !important;
  font-size: 13px !important;
  padding: 13px 30px !important;
  border-radius: 15px !important;
  border: 1px solid #0045e8 !important;
}
.btn-live-div > :nth-child(1) {
  background: red !important;
  color: #fff !important;
  font-size: 13px !important;
  padding: 13px 30px !important;
  border-radius: 15px !important;
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-learn {
  background: #0045e8 !important;
  color: white !important;
  font-size: 13px !important;
  padding: 13px 30px !important;
  border-radius: 15px !important;
}
/* .btn-learn-div {
  display: flex;
  align-items: flex-end;
  height: 100%;
} */
.btn-live-div {
  display: flex;
  align-items: flex-end;
  height: 100%;
  gap: 30px;
}

.building-section {
  background: #edf1ff;
  height: 100%;
  padding: 80px 0;
}

.building-image {
  display: flex;
  align-items: center;
  background: #0f004c;
  color: white;
  padding: 80px;
  justify-content: center;
  gap: 40px;
  border-radius: 20px;
}

.building-image img {
  width: 20%;
}

.building-section img {
  border-radius: 20px;
}

.resources {
  background: linear-gradient(to bottom, #f5f5f500, #000000ea),
    url("/assets/images/resources.webp") no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  height: 100%;
  padding: 30px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.resources a,
.donate a {
  color: white;
  text-decoration: none;
  display: block;
}

.resourceimg {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resourceimg img {
  width: 7%;
}

.donate {
  background: linear-gradient(to bottom, #f5f5f500, #000000ea),
    url("/assets/images/donate.webp") no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  height: 100%;
  padding: 30px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.green-image {
  background: #009d32;
  color: white;
  padding: 80px;
  border-radius: 20px;
  text-align: center;
}

.footer {
  background: black;
  height: 100%;
  border-radius: 30px 30px 0 0;
  padding: 50px 0;
  color: white;
}

.footer-logo img {
  width: 12%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo span {
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.socials img {
  width: 30px;
}

.footer-text {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

.footer-links {
  margin-top: 30px !important;
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 30px !important;
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: white;
}

.footer-row {
  display: flex;
  justify-content: space-between;
}

::placeholder {
  font-size: 14px;
}

.footer-input {
  padding-left: 20px !important;
  height: 45px !important;
  border-radius: 14px !important;
}

.btn-subscribe {
  background: #0045e8 !important;
  color: white !important;
  border-radius: 14px !important;
  padding: 12px 30px !important;
  border: none !important;
  font-size: 14px !important;
  margin-top: 10px;
}

/* About Us Page */
.hero-about-section {
  background: url("/assets/images/heroimage.webp") no-repeat;
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-about-section img {
  width: 70px;
  position: absolute;
  bottom: -40px;
  left: 47%;
}

.hero-about-content {
  display: flex;
  flex-direction: column;
  color: white;
  text-align: center;
  align-items: center;
  height: 60vh;
  justify-content: center;
  width: 50%;
  margin: auto;
}

.aboutcenter {
  text-align: center;
}

/* Ministry Page */
.ministry-card-text {
  width: 80%;
  margin-top: 20px;
}

.ministry-row {
  align-items: center;
}

.cta-section {
  background: #edf1ff;
  padding: 100px 0;
}

.btn-contact {
  background: #0045e8 !important;
  color: white !important;
  font-size: 13px !important;
  padding: 13px 30px !important;
  border-radius: 15px !important;
  border: none !important;
  margin-top: 20px;
}

/* About Us Page */
.welcome-text {
  display: flex !important;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
}

.welcome-text img {
  width: 60px !important;
  height: 60px !important;
}

.mission-section {
  background: #edf1ff;
  height: 100%;
  margin-bottom: 50px;
  padding-top: 30px;
  padding-bottom: 10px;
}

.mission-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.mission-title h5 {
  padding-top: 5px;
}

.mission-title img {
  width: 7%;
}

.mission-wrapper {
  margin-top: 40px;
}

.mission-text {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  gap: 20px;
}

.mission-text > :nth-child(1) {
  background: hsl(226, 70%, 36%);
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  color: white;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.mission-text > :nth-child(2) {
  font-size: 14px !important;
}

.mission-row {
  display: flex;
  justify-content: space-evenly;
}

.ministry-vision-text {
  width: 85%;
  margin-left: auto;
}

.focus-card {
  background: #0045e8;
  color: white;
  padding: 30px;
  border-radius: 20px 0 20px 0;
  height: 37vh;
  margin-bottom: 20px;
}
.focus-card p {
  padding-top: 10px;
}

.focus-section {
  margin-bottom: 20px;
}

.focus-div {
  background: white;
  height: 27px;
  margin-bottom: 20px;
  width: 50%;
  border-radius: 30px;
}
.focus-section h4 {
  padding: 20px;
}

/* Contact Section */
.hero-contact-section {
  background: url("/assets/images/contacthero.webp") no-repeat;
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-contact-section img {
  width: 70px;
  position: absolute;
  bottom: -40px;
  left: 47%;
}
.reachoutsection {
  margin-top: 70px;
  margin-bottom: 50px;
}
.addressdivwrap {
  margin-top: 50px;
}
.addressdiv {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.addressdiv span,
.addressdiv a {
  font-weight: 500;
  color: black;
  text-decoration: none;
}
.addressdiv .svg {
  background: #0045e8;
  padding: 10px;
  border-radius: 100%;
}
.reachoutbutton button {
  background: #0045e8;
  color: white;
  padding: 10px 30px;
  border-radius: 15px;
}
.reachoutbutton button:hover {
  background: #0045e8;
  color: white;
}
.reachoutbutton {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
.contactdiv {
  background: #0045e8;
  height: 100%;
  padding: 15px 40px 40px 40px;
  border-radius: 20px;
}
.contactdiv p a {
  color: white;
}
.contactdiv p {
  color: white;
  padding-top: 10px;
}
.contactdiv label {
  padding-top: 20px;
  padding-bottom: 15px;
  color: white;
}
.contactdiv input {
  border-radius: 0;
  height: 43px;
}
.contactdiv textarea {
  border-radius: 0;
  height: 120px;
}
.reachoutrow {
  display: flex;
  align-items: center;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 10px;
  color: white;
}

.recaptcha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.recaptcha img {
  width: 50px;
}
.sendmessage {
  background: white !important;
  width: 100%;
  color: #0045e8 !important;
  font-size: 14px !important;
  border-radius: 15px !important;
  padding: 10px 0 !important;
  margin-top: 30px;
}
.map iframe {
  width: 100%;
  height: 60vh;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Auido and Video page */
.youtube-section {
  margin-top: 70px;
  margin-bottom: 100px;
}
.youtubeheadtext {
  display: flex;
  justify-content: space-between;
}
.youtubeheadtext a,
.audioheadtext a {
  color: black;
  font-size: 14px;
}
.audioheadtext {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
.youtubesectionrow {
  justify-content: space-between;
  margin: 0 5px !important;
}

.youtubesectionrow .col-md-6 {
  border: 1px solid #a6a6a6;
  height: 50vh;
  width: 49%;
  border-radius: 15px;
  margin-top: 20px;
  overflow: hidden;
  padding: 0;
}

.youtube-card iframe {
  width: 100%;
  height: 50vh;
  border-radius: 15px;
  object-fit: cover;
}

.podcastsectionrow .col-md-4 {
  border-radius: 15px;
  margin-top: 30px;
}

.podcastsectionrowcard {
  background: #0045e8;
  padding: 15px;
  border-radius: 15px;
}

.podcastsectionrowcard-body {
  background: #0045e8;
  color: white;
  padding: 15px;
}

.podcastsectionrowcard-body h6 {
  padding-bottom: 10px;
}
.podcastsectionrowcard-body p {
  font-size: 14px;
}

.podcastsectionrowcard img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
}

.podcast-audio-player {
  display: flex;
  align-items: center;
  margin-top: 10px;
  background: white;
  border-radius: 5px;
  justify-content: space-between;
  padding: 5px 10px;
}

.play-btn {
  background: white;
  border: none;
  cursor: pointer;
}

.audio-progress {
  flex: 1;
  margin-right: 10px;
}

.audio-duration {
  font-size: 14px;
  color: #ccc;
}

.play-btn svg {
  vertical-align: middle;
}

.duration {
  color: #0045e8;
  font-size: 13px;
}

.progress-bar {
  background: black !important;
  width: 50%;
}
.search-container {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 10px;
}

.search-container .icon {
  padding: 0 15px;
  color: #888;
  font-size: 18px;
}

.search-container input {
  flex: 1;
  border: none;
  outline: none;
  padding: 20px 10px;
  font-size: 14px;
}
.search-container input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.search-container button {
  background: #0056ff; /* blue */
  color: white;
  border: none;
  padding: 12px 100px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 10px;
  margin-right: 5px;
}

.search-container button:hover {
  background: #0045cc;
}

.paging {
  margin: 30px 50px 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagingfunc {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.pagingfunc a,
.pagingfunc span {
  border: 1px solid #0045cc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  color: #0045cc !important;
  text-decoration: none;
  cursor: pointer;
}
.pagingfunc a.active {
  background: #0045cc;
  color: white !important;
  border: none !important;
  padding: 5px 10px !important;
}
.youtube-card {
  margin-bottom: 20px;
}

/* Privacy page */
.accordionprivacy-header {
  border-radius: 500px !important;
  background: white !important;
}

.accordionprivacy {
  width: 90%;
  margin: 50px auto;
  padding: 20px 0 !important;
  border-radius: 10px;
}

.privacy-body {
  border: none !important;
}

.accordionprivacy-button:focus {
  background: #eaeaea !important;
  box-shadow: none !important;
}

.number-badge {
  background: #0045cc;
  color: white;
  height: 40px;
  width: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordionprivacy-button {
  background: #eaeaea !important;
  border-radius: 10px !important;
  border: none !important;
  padding-top: 15px !important;
  display: flex !important;
  gap: 50px;
  height: 55px;
  align-items: center !important;
  padding-left: 8px !important;
  padding-right: 50px !important;
  font-size: 15px !important;
  font-weight: 600;
  color: black !important;
}

/* FAQ */
.accordion-table {
  border: 1px solid black !important;
}

/* Blog Details */
.blogdetails {
  margin-top: 50px;
}
#today-date {
  background: #d9d9d9;
  font-size: 12px;
  padding: 5px 20px;
  border-radius: 100px;
  width: 21%;
  text-align: center;
  margin-top: 15px;
}
.devotion {
  margin-top: 40px;
}
.devotion p {
  margin-top: 20px;
}
.sharerow {
  display: flex !important;
  gap: 20px;
  color: #000;
  font-weight: 400;
  font-size: 17px;
  margin-top: 20px;
  align-items: center;
}

.longline {
  width: 80%;
}

.shareicon img {
  width: 15px;
  cursor: pointer;
}

/* Event details */
.event-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.timerwrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.timerwrap > :nth-child(1) {
  font-size: 40px;
  font-weight: 500;
}
.timerwrap > :nth-child(2) {
  font-size: 14px;
}
.timeactive {
  color: #1c3a9e;
}

/* DONATE */
.donate-section {
  margin-top: 70px;
  margin-bottom: 200px;
}
.donaterow {
  margin-top: 70px !important;
}
.donation-card {
  padding: 15px;
  border-radius: 20px !important;
  height: 100% !important;
}
.btn-donate {
  background: #0045e8 !important;
  margin-top: 30px;
  width: 100%;
  border-radius: 15px !important;
  padding: 10px 0 !important;
  color: white !important;
}
.btn-donate a {
  color: inherit;
  font-size: 13px;
}

/* Online Donation */
.onlinedonation {
  margin-top: 70px;
}
.bottomdiv {
  margin: 80px 50px 70px 50px;
  background: #d9d9d9;
  padding: 20px 0;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}
.donationcard {
  height: 100% !important;
  padding: 30px;
  border-radius: 10px !important;
}
.donationtab {
  display: flex;
  background: #d9d9d9;
  height: 50px;
  align-items: center;
  padding: 0 7px;
  font-size: 14px;
  width: 80%;
  gap: 10px;
  border-radius: 100px;
  margin: 15px 0 25px 0;
  cursor: pointer;
}

.donationtab span {
  padding: 9px 40px;
  border-radius: 100px;
  transition: all 0.5s ease;
}

.donationtab span.active {
  background: #0045e8;
  color: white;
  width: 50%;
  text-align: center;
}

.donationform {
  margin-top: 15px;
}
.donationform label {
  font-size: 14px;
  padding-bottom: 10px;
}
.donationform input {
  height: 45px;
  background: #f3f3f3;
  border: 1px solid #b1b1b1;
  padding-left: 20px;
}
.donationform input:focus {
  box-shadow: none;
}
.donationprice {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  cursor: pointer;
}
.donationprice span {
  background: #b6b6b6;
  padding: 5px 25px;
  border-radius: 100px;
  border: 1px solid #0c0c0c;
  transition: all 0.3s ease;
}
.donationprice span.active {
  background: #0045e8 !important;
  color: white !important;
  border-color: #0045e8;
}
.donationprivacy a {
  color: black;
  text-decoration: underline !important;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #0045e8;
  color: white;
  border: none;
  outline: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #084298;
}

/* Erroe 404 */
.error-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}

.error-image {
  width: 40%;
  margin-bottom: 20px;
}

.error-text {
  color: #555;
  font-size: 16px;
  max-width: 450px;
  margin: 15px auto;
}

.error-button {
  margin-top: 20px;
  padding: 10px 25px;
  background: #0045e8;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}
