.post_box_holder{ display: flex;  height: auto;  width: 100%;  justify-content: space-evenly;  align-items: center;  text-align: center; box-sizing: border-box;  position: relative;  flex-wrap: wrap; } .post_wrapper{ display: flex;  position: relative;  box-sizing: border-box; margin: 1rem;  align-self: flex-start; text-decoration: none; flex-direction: column;  width: calc(46% - 5rem);  cursor: pointer; height: auto; transition: all .3s;} .post_wrapper:active, .post_wrapper:hover, .post_wrapper:focus{ opacity: 0.95;} .post_img_wrapper{ background-color: var(--txt-color-dark); height: 300px;  width: 100%;  position: relative; display: flex;  justify-content: center;  overflow: hidden;  align-items: center;} .post_img{ height: auto; width: 105%; transition: all .3s;} .vid_wrapper{ position: absolute; left: 0px; top: 0px; bottom: 0px;width: 100%;height: 100% !important; display: flex; align-items: center; justify-content: center; box-sizing: border-box; background-color: transparent; }.vid_icon_box:hover, .vid_icon_box:active, .vid_icon_box:focus{ transform: scale(1.1, 1.1);} .vid_icon_box{ width: 18%; color: #a9a9a9; background-color: transparent; box-sizing: border-box; transition: 0.4s; } .post_img:active, .post_img:hover, .post_img:focus{ transform: scale(1.05, 1.05);} .post_txt{ margin: 0px auto;  width: 100%; height: auto; box-sizing: border-box; position: relative; line-height: 1.6; padding:0.5rem; font-size: 1.3rem; color: #404040; overflow: hidden; text-overflow: ellipsis; white-space: initial; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical } .break-word{  overflow: hidden; padding-left: 1rem; padding-right: 1rem; text-overflow: ellipsis; white-space: initial; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;} .post_txt:active, .post_txt:focus, .post_txt:hover{ text-decoration: underline; } .post_info_wrapper b{ font-size: 1.2rem; font-weight: bolder; color: var(--main-color4); margin: 0rem;} .post_info_wrapper span{ font-size: 0.8rem; font-weight: bolder; margin: auto 0.4rem;} .post_info_wrapper{ width: 100%; padding: 0.6rem; overflow: hidden; box-sizing: border-box; display: flex; align-items: center; justify-content: center; } .inner_box_hd{ position: relative; margin: 2rem auto 0rem auto; width: 100%; font-size: 2.1rem; font-weight: 800; text-align: center; color: #696868; } #n-p-btn-box{ display: flex;  flex-wrap: wrap;  align-items: center;  justify-content: center;  gap: 0.4rem;  margin: 1.2rem auto; } .next-prv-btn{ color: gray; font-size: 1.3rem; text-decoration: none; text-align: center;  background-color: inherit; min-width: 70px; transition: .5s; } .next-prv-btn:active, .next-prv-btn:focus, .next-prv-btn:hover{ color: #175563; text-decoration: underline; }#sr-ico{ height: 26px; width: 26px; } #pop-ico{ height: 40px; width: 40px;  box-sizing: border-box; border-radius: 20px; margin-bottom: 0.5rem;  color: inherit; background-color: inherit; overflow: hidden;}  #pop-box{ display: block;  width: auto; max-width: 200px; padding: 1rem; border-radius: 1rem; color: inherit; font-weight: bolder; font-size: 1.1rem; background-color: white;  box-shadow: 10px 10px 100px rgb(156, 156, 156); box-sizing: border-box;  display: flex; justify-content: center; align-items: center; flex-direction: column; text-align: center; z-index: 2000; transition: .3s; } .anim-pop-box{ transform: scale(0); opacity: 0; animation: box-pop 0.5s linear 0s 1; animation-fill-mode: forwards; transition: .3s;   }   @keyframes box-pop { 0%{   transform: scale(0);   opacity: 0; }100%{   opacity: 1;   transform: scale(1); }}   #pop-b-cover{ color: #d0cfcf; display: none; justify-content: center; align-items: center;  width: 100%; height: 100%; position: fixed;  box-sizing: border-box; left: 0px;  top: 0px;  z-index: 200;   }   :root{ --txt-color-normal:#535151; --txt-color-dark:#131313; --main-color2:#C3595B; --main-color:#AA0882; --ft-color-white: #e2e2e2; --ft-color-fair: #eeeded; } 


/* FOOTER BASE */
#broad_ft {
  width: 100%;
  position: relative;
  padding: 40px 0 2rem;
  color: #fff;
  overflow: hidden;
  background-color: transparent;
  text-align: left;
  /* z-index: 5; */
}

/* BACKGROUND IMAGE */
#broad_ft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/static/adorationapp/images/mbaka4.jpg') center/cover no-repeat;
  z-index: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  transform: scale(1.05);
}

/* DARK OVERLAY */
#broad_ft::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.95));
  z-index: 0;
}

/* GRID */
#broad_info_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 1400px;
  margin: auto;
  padding: 2rem 1rem;
  /* z-index: 3; */
}

/* COLUMN */
.broad_inner_wrapper {
  display: flex;
  flex-direction: column;
  margin: 1rem;
  min-width: 200px;
  transition: 0.4s;
  z-index: 4;
}

.broad_inner_wrapper:hover {
  transform: translateY(-5px);
}

/* TITLES */
.broad_inner_wrapper span {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.broad_inner_wrapper span::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--main-color);
  display: block;
  margin-top: 6px;
}

/* LINKS */
.broad_inner_wrapper a {
  color: #ddd;
  margin: 6px 0;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s;
}

.broad_inner_wrapper a:hover {
  color: var(--main-color);
  transform: translateX(6px);
}

/* BRAND */
.footer-brand h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--main-color);
  margin: 0px;
  padding: 0px;
  text-align: left;
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

/* ICONS */
.footer_icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  margin-top: 1rem;
  height: 38px;
  padding: 8px;
  box-sizing: border-box;
  width: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  transition: 0.4s;
}

.footer_icons::after {
    display: none !important;
}

.footer_icons:hover {
  background: var(--main-color);
  color: #ddd;
  transform: translateY(-4px);
}

/* SERVICE BADGE */
.service-badge {
  background: rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 20px;
  margin: 5px 0;
  font-size: 0.9rem;
}

/* MAP */
.map-box{
  width: 100%;
  max-width: 580px;
  margin: auto;
}
.map-box iframe {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 10px;
    background-color: #aa08829a;
}

/* DIVIDER */
.line {
  width: 90%;
  height: 1px;
  margin: 2rem auto;
  position: relative;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  z-index: 4;
}

/* COPYRIGHT */
#broad_down_wrapper {
  text-align: center;
  position: relative;
  font-size: 0.9rem;
  padding: 1rem;
  z-index: 4;
}

/* FLOATING BUTTON */
.prayer-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--main-color);
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: 0.3s;
  z-index: 999;
}

.prayer-float:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #broad_info_wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-box iframe {
    width: 100%;
  }
}


@media screen and (max-width:920px){ .post_img_wrapper{ height: 210px; } .post_img{ width: 110%; } } @media screen and (max-width:770px){ .broad_inner_wrapper{  height: auto; } } @media screen and (max-width:550px){   .data_info_img{ height: auto; width: 100%; }  #broad_info_wrapper{ align-items: center; justify-content: center; flex-direction: column-reverse; }   #broad_info_wrapper div{ max-width: 100% !important; box-sizing: border-box; padding: 1rem; }  .broad_txt_list{ margin-top: 1rem; width: 100% !important; box-sizing: border-box; justify-self: start; align-self: flex-start !important;   } .post_wrapper{ margin: 1rem auto;  width: calc(100% - 4rem);  box-shadow: 0px 0px 10px #e5e5e5; } .post_img{ height: auto; width: 100%; } } @media screen and (max-width:420px) { .post_wrapper{ width: calc(100% - 2rem);  } .post_img_wrapper{ height: 100%; } .post_txt{ padding-bottom: 0rem; font-size: 1.2rem; } .post_info_wrapper b{ font-size: 1rem; } .post_info_wrapper span{ font-size: 0.7rem; } .post_info_wrapper{ padding: 0.4rem; flex-wrap: wrap;} } @media screen and (max-width:300px) { .post_wrapper{ width: 100%; } .post_img_wrapper{ height: 130px; }.post_txt{ font-size: 1.1rem; } .post_info_wrapper b{ font-size: 1rem; } .post_info_wrapper span{ font-size: 0.6rem; margin: auto 0.2rem; } .post_info_wrapper{ padding: 0.3rem; flex-wrap: wrap; }}