* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
input,
textarea,
button,
select {
  font-family: "Montserrat", sans-serif;
}
body {
  font-family: "Montserrat", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  place-content: center;
  display: flex;
  overflow: hidden;
}
main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100dvh;
  width: 100dvw;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgb(255, 255, 255);
  border: none;
  padding: 0;
}

/* header */
header {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 99;
}
#logo1 {
  width: 65px;
  height: auto;
  margin-right: 0.6rem;
}
#logo2 {
  width: 30px;
  height: auto;
}
.header-content {
  padding-left: 0.6rem;
  align-items: center;
  display: flex;
}
.header-content label {
  color: midnightblue;
  font-size: 16px;
  font-weight: bold;
}

/* navigation */
.navigation {
  width: 100%;
  background-color: rgb(25, 25, 112, 0.95);
  padding: 1rem;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 0.8rem;
  row-gap: 0.2rem;
}
.navigation a {
  text-decoration: none;
  color: white;
}
.default {
  opacity: 0.6 !important;
}

/* home container */
.container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.homelander {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  overflow: hidden;
}
.sliding-image {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  overflow: hidden;
}
.sliding-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.sliding-image img.active {
  display: block;
}
.slider-progress {
  position: relative;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 6px;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 1rem;
  margin-bottom: -1rem;
}

.progress-bar {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgb(25, 25, 112, 0.9);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0s;
}

.homelander img {
  width: 100%;
  height: auto;
}
.textlander {
  width: 100%;
  height: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
hr {
  width: 80px;
  height: 2px;
  background-color: rgb(40, 40, 40);
  outline: none;
  border: none;
  border-radius: 20px;
  margin: 1rem;
}
.textlander label {
  font-weight: bold;
  font-size: 18px;
  color: rgb(25, 25, 112, 0.9);
}
.textlander p {
  font-size: 14px;
  text-align: justify;
}
.mid-btn {
  background-color: rgb(25, 25, 112, 0.9);
  margin: 1rem;
  padding: 1rem;
  outline: none;
  border: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
}
.donate-div {
  width: 100%;
}
.title-donate {
  width: 100%;
  padding: 1rem;
  background-color: rgb(25, 25, 112, 0.9);
}
.title-donate label {
  font-weight: bold;
  font-size: 16px;
  color: rgb(255, 255, 255);
}
.body-donate {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: justify;
  font-size: 14px;
}
.latest-news {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 10px rgb(0, 0, 0, 0.5);
}
.latest-img {
  width: 100%;
  height: auto;
}
.latest-img img {
  width: 100%;
  height: auto;
}
.latest-div-text {
  padding: 1rem;
}
.latest-div-text label {
  font-weight: 500;
  font-size: 16px;
  color: rgb(25, 25, 112, 0.9);
}
.latest-div-text button {
  padding: 0.8rem;
  background-color: rgb(55, 85, 119);
  outline: none;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 500;
}
.cultural {
  width: 100%;
  height: auto;
}
.cultural img {
  width: 100%;
  height: auto;
}
footer {
  width: 100%;
  padding: 1rem;
  background-color: rgb(27, 27, 27);
  align-items: center;
  justify-content: center;
  display: flex;
  color: white;
  border-top: 2px solid;
}

/* about-div */
.about-container {
  width: 100%;
  height: 100%;
}
.blaq {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 32px;
  color: white;
}
.mission-div {
  width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  display: flex;
  padding: 1.5rem;
  box-shadow: 0 0px 10px rgb(0, 0, 0, 0.25);
  border-radius: 12px;
}
.mission-div b {
  font-size: 20px;
  color: rgb(25, 25, 112, 0.9);
}
.about-icon-div {
  width: 25%;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgb(25, 25, 112, 0.2);
  height: auto;
}
.about-icon-div img {
  width: 100%;
  height: auto;
}
.contact-email-div {
  width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  display: flex;
  padding: 1.5rem;
  box-shadow: 0 0px 10px rgb(0, 0, 0, 0.25);
  border-radius: 12px;
}
.contact-icon-div {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: transparent;
  height: auto;
}
.contact-icon-div img {
  width: 100%;
  height: auto;
}

/* search bar */
.search-bar {
  width: 100%;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.search-bar input {
  width: 100%;
  padding: 1rem;
  outline: none;
  border: none;
  background-color: rgb(25, 25, 112, 0.2);
  border-radius: 8px;
}
#blackout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}
.popdaddy {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
