@import url('https://fonts.cdnfonts.com/css/plumpfull');
@import url('https://fonts.cdnfonts.com/css/poppins');
/* --- Font-Face Declarations --- */
@font-face {
    font-family: header_font;
    src: url('../font/Qilka-Bold.otf');
}

@font-face {
    font-family: rubik;
    src: url('../font/Rubik-Bold.ttf');
}
@font-face {
    font-family: monserate_bold;
    src: url('../font/MontserratBold-DOWZd.ttf');
}

/* --- CSS Variables (:root) --- */



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

*,
*::before,
*::after {
  /* Ensure all elements and pseudo-elements inherit the base setting */
  box-sizing: inherit;
}

p,ul,label,button,select,strong{
    font-family: poppins, sans-serif;
    font-weight: 500;
}
h1,h2{
    font-family: plumpfull, sans-serif;
    word-wrap: break-word;
}
strong{
    color:var(--crimson);
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: pointer;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-block: 20px;
}
.transformation_x{
    overflow-x: hidden;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

/* Primary button — bold and inspiring */
.btn-primary {
  background: linear-gradient(135deg, #0ba26e, #078a5c);
  color: #fff;
  box-shadow: 0 4px 15px rgba(11, 162, 110, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #078a5c, #0ba26e);
  box-shadow: 0 6px 20px rgba(11, 162, 110, 0.45);
  transform: translateY(-3px);
}

/* Secondary button — subtle but confident */
.btn-secondary {
  background: transparent;
  border: 2px solid #0ba26e;
  color: #0ba26e;
}

.btn-secondary:hover {
  background: #0ba26e;
  color: #fff;
  box-shadow: 0 4px 15px rgba(11, 162, 110, 0.3);
  transform: translateY(-3px);
}

.btn-primary:hover,
.btn-secondary:hover {
  filter: drop-shadow(0 0 8px rgba(11, 162, 110, 0.6));
}
.involvement-section {
  background: var(--light-bg);
  padding: 100px 8%;
  text-align: center;
}

.involvement-header h1 {
  font-size: 2.8rem;
  color: var(--blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.involvement-header p {
  color: var(--text-dark);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.involvement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.involve-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.involve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.involve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  z-index: 1;
}
/*-------brochure------------------------*/
.brochure_report{
    width: 100%;
    display: block;
}
.brochure_report img{
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}
.brochure_title{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(197 0 30);
    padding:30px;
    color: var(--white);
}
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
  color: var(--white);
  text-align: left;
}

.card-content h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--white);
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.cta-btn {
  background: var(--crimson);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: var(--teal);
}
.missionaries{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:20px;
    margin-top:20px;
}
.missionaries .missionary_card{
    width: 300px;
    height: fit-content;
}
.missionaries .missionary_card img{
    width: 100%;
    height: 280px;
    margin:0px auto;
    object-fit: cover;
}
.missionaries .missionary_card p{
    font-weight: bolder;
    margin-block: 5px;
    font-size: 24px;
}
.missionaries .missionary_card span{
    font-size: 18px;
    font-style: italic;
    color:rgb(6, 143, 40);
}
header{
    width: 95%;
    min-height: 100px;
    height: auto;
    padding:5px;
    border-radius: 16px;
    margin: 20px auto;
}
header h1{
    font-size: 30px;
    margin:10px auto;
    font-weight: bolder;
}
header p{
    font-size: 20px;
}
.release_article{
    display: flex;
    flex-wrap: wrap;
    gap:10px;
}
.slider_container{
    position: relative;
    display: flex;
    max-height: 100vh;
    overflow: hidden;
}
.article_image,.testimonial,.release_article .slick-slide, .swiper-slide{
    width: 400px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.swiper-slide{
    width: 550px;
    height: fit-content;
}
.swiper-pagination-bullet{
    width: 15px !important;
    height: 15px !important;
}

.release_article.gal .article_image{
    width:100%;
    height: 200px;
}
.article_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.article_image .details{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px;
    color:#fff;
    background: linear-gradient(355deg, #000000b9, #00000049);
    box-shadow: 0px -20px 15px 18px #00000049;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.article_image .details h1{
    max-width: 80%;
    font-size: 20px;
}

#destination_stories .article_image .details h1{
    max-width: 100%;
}

.authorship{
    display: flex;
    gap:20px;
}

.authorship .feild label{
    font-size: 18px;
}
.author_data{
    display:flex;
    align-items: center;
    height: fit-content;
    padding-block: 5px;
    gap:10px;
}
.authorship .feild  p{
    font-size: 18px;
    margin:0px
}
.author_data img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- Section Container --- */
.testimonial-section {
    background-color: #ffffff; /* Contrast for the page background */
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

/* --- The Card --- */
.testimonial-card {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 40px;
    border-radius: 12px;
    max-width: 550px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Heavy shadow for depth */
}

/* --- Quote Icon (The primary visual accent) --- */
.quote-icon {
    font-size: 5em;
    font-family: serif;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.2; /* Subtly placed for style */
    line-height: 1;
}

/* --- Testimonial Content --- */
.testimonial-content {
    font-size: 1.4em; /* Large size makes it dominant */
    font-weight: 500;
    line-height: 1.5;
    margin: 20px 0 30px;
    z-index: 10;
    position: relative; /* Ensure it overlaps the quote icon */
}

.testimonial-content p {
    color: var(--light-text); /* Ensure the content text is the brightest */
    margin: 0;
}

/* --- Source/Profile --- */
.testimonial-source {
    display: flex;
    justify-content: flex-end; /* Push profile to the right */
    align-items: center;
    border-top: 1px solid #333; /* Separator line */
    padding-top: 20px;
}

.profile-details {
    text-align: right;
    margin-right: 15px;
}

.author-name {
    color: var(--accent-color); /* Name gets the accent color */
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 3px;
}

.author-title {
    color: var(--subtle-text);
    font-size: 0.9em;
    margin: 0;
}


.container.landing_page{
    width: 90%;
    min-height: 100vh;
    position: relative;
    margin:30px auto;
}
.landing_page img{
    width: 100%;
    height: 80%;
    object-fit: cover;
}
.landing_page .page_details{
    position: absolute;
    left: 5%;
    top:60%;
    width: 90%;
    height: 80%;
}
.landing_page .page_details .page_intro{
    font-size: 30px;
    max-width: 600px;
    line-height: 70px;
}
.landing_page .page_details .page_counter{
    width: 100%;
    height: 250px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0px 0px 11px 2px #000000;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap:10px;
    place-items: center;
    padding: 20px 30px;
    margin-top:100px;
}
.landing_page .page_details .page_counter .location_icon{
    border: 1px solid #000;
    height: 120px;
    border-radius: 16px;
    padding:10px 20px;
    width: 100%;
}
.landing_page .page_details .page_counter .location_icon p{
    margin:0px;
}
.landing_page .page_details .page_counter .location_icon h1{
    margin-top:0px;
    color:#3b3b3b;
}
.landing_page .page_details .page_counter .location_icon .m_location{
    margin-bottom: 10px;
    margin-top: 20px;
}
.landing_page .page_details .page_counter .counter{
    border: 1px solid #000;
    height: 120px;
    border-radius: 16px;
    padding:10px 20px;
    width: 100%;
}
.landing_page .page_details .page_counter .counter .label{
 margin-block: 20px;
}
.landing_page .page_details .page_counter .counter .count_down{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:10px;
}
.landing_page .page_details .page_counter .counter h1 {
    font-size: 20px;
}
.landing_page .page_details .page_counter .date_details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 120px;
   border: 1px solid #000;
    height: 120px;
    border-radius: 16px;
    padding:10px 20px;
    width: 100%;
}
.landing_page .page_details .page_counter .date_details .item_card .items{
    margin-top: 20px;
}
section{
    margin-top:50px;
}
.hidden{
    display: none;
}

.scr1.container{
    background:var(--background-color);
    display: flex;
    flex-direction: column;
}
.scr1.container img{
    width: 380px;
    height: auto;
    object-fit: cover;
    clip-path: path("");
}
.slider_landing{
    width: 100%;
    max-height: 1000px;
    overflow: hidden;
}
.slider_landing .slider_img{
    width: 100%;
}

.scr1 .container__left{
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    justify-content: space-between;
    margin-top:50px;
    padding: 20px;
}
.scr1 .container__left .content h1{
    text-transform: uppercase;
    font-size: 80px;
}
.scr1 .container__left .content h1 span{
    color:crimson;
}
.scr1 .container__left .content p{
    font-size: 20px;
    color:#fff;
}
.page_counter_item h1{
    font-size: 26px;
}

.read_more{
    width: 150px;
    border-radius: 40px;
    height: 40px;
    outline: none;
    border-width: 0px;
    padding:10px;
    margin:10px;
    color:#fff;
    background-color: crimson;
    display: grid;
    place-items: center;
    font-size: 20px;
}
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide-active {
  filter: blur(0px);
}
.slick-dots{
    bottom: -40px;
}
.slick-dots li button::before{
font-size: 16px;
}
.slick-dots li.slick-active button::before{
    color:red;
    opacity: 1;
    font-size: 16px;
}
.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: #ff0101;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}
.swiper-slide,.testimonial,.release_article .slick-slide{
    margin-inline:0px;
}
.explore_articles{
    margin-top: 200px;
}
section{
    padding-inline: 10px;
}
.scr1 .container__left  .content.ads p{
    font-size: 60px;
}


.scr2.images {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
}

.scr2 .tent-1 {
    width:100%;
    height:100%;
    border-radius: 16px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}




.destination_header{
    width: 100%;
    text-align: center;
    gap:10px;
    margin-bottom:20px;
}
.destination_header h1:nth-child(1){
    color:crimson;
}
.scr1 .container__left .content h1,.scr1 .container__left .content.ads p {
    font-family: header_font;
    color:#fff;
}
.scr1.container .image_design {
    position: relative;
    width: 40%;
    height: 400px;
    transform: scale(1.2);

}
.scr1.container .image_design img.bg,.scr1.container .image_design .main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scr1.container .image_design .main{
    position: absolute;
    top:0;
    left: calc((100%  - 400px) / 2);
    width: 400px;
    height: 400px;
    clip-path: polygon(0 25%, 29% 25%, 29% 0, 65% 0%, 65% 25%, 100% 25%, 100% 53%, 65% 53%, 64% 100%, 28% 100%, 28% 54%, 0 53%);
   clip-path: polygon(10% 25%, 35% 25%, 35% 0%, 65% 0%, 65% 25%, 90% 25%, 90% 50%, 65% 50%, 65% 100%, 35% 100%, 35% 50%, 10% 50%);
    z-index: 1;
}
.impact_article,.missions_about_page{
    margin-top:50px;
}



.timeline-container {
    display: none;
    backdrop-filter: blur(10px); /* blurred background */
    background: rgba(0, 0, 0, 0.774); /* semi-transparent overlay */
    padding: 50px 20px;
    min-height: 100vh;
    overflow: auto;
}
.timeline-container .header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;

  font-family: "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;

  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.timeline-container .title {
  color: #fff;
}

.timeline-container .close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: background 0.2s ease;
   background: rgb(255, 0, 76);
}

.timeline-container .close-btn:hover {
  background: rgba(223, 3, 138, 0.07);
}

.timeline-container .icon {
  width: 20px;
  height: 20px;
  color: rgb(255, 255, 255);
}


.timeline-container.active{
    display: block;
    position: fixed;
    inset: 0;
    z-index: 999;
    margin-top: 0px;
}

/* Timeline */
.timeline, .timeline-item-content{
    position: relative;
    width:100%;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
    
}


.timeline-item {
    position: relative;
    box-sizing: border-box;
    z-index: 3;
    max-width: 600px;
    background-color:var(--color-bg-light);
    margin-block:80px;
}
.timeline-item.main{
    border-radius: 16px;
    padding:20px 30px;
}
.timeline-item .wrap,.timeline-item.main {
    opacity: 0; 
}

.timeline-item .wrap.animate_timeline,.timeline-item.main.animate_timeline{
    opacity: 1;
    transition: all .5s ease-in-out;
}
.timeline-item.left {
    left: 0;
    margin-right: auto;
}
.animate-show{
    animation: pop 1s infinite ease-in-out;
}

.timeline-item.right {
    right: 0;
    margin-left: auto;
}



.timeline-item.right::after {
    left: -10px;
}


.timeline-item img.expo{
    position: absolute;
    top:0;
    width:200px;
    height: 200px;
    border-radius: 50%;
    z-index: 9;
}
.timeline-item.left img.expo{
   left: auto;
    right: -250px;
}
.timeline-item.right img.expo{
    right: auto;
    left: -250px;
}
.impact-stats {
    position: relative;
  background: url('../images/bg.jpg') no-repeat center center;
  background-size: cover;
    background-attachment: fixed;
  text-align: center;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
}
.impact-stats::after{
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(255deg,#0136249c,#000000e1);
    z-index: 1;
}
.stats-header{
    position: relative;
    z-index: 3;
}
.stats-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
    color: #16da95;
}

.stats-header .medigreen {
  color: #01f09c;
}

.stats-header p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
}

.stats-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 999;
}
.stat-card {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 40px 30px;
  width: 230px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #01d889;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}
.finance-box h3 {
  font-size: 2.2rem;
  color: #0c6b3f;
  margin: 10px 0;
  font-weight: 700;
}
section {
  padding: 70px 20px;
  text-align: center;
}
section h2 {
  font-size: 2rem;
  color: #043927;
  margin-bottom: 10px;
}
.subtitle {
  color: #555;
  margin-bottom: 40px;
  font-size:20px;
}
.team-grid, .finance-stats, .testimonial-grid, .gallery-grid {
  display: grid;
  gap: 25px;
  justify-content: center;
}
.team-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top:20px;}
.team-card {
  background: #f7f7f7;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.team-card img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 15px;
}
.team-card .exec_summ,.involve-card .exec_summ{
    position: absolute;
    top:100%;
    left:0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    margin:20px;
    color:#fff;
    border-radius: 10px;
    padding-inline:10px;
    transition: all .5s ease;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
}
.btn_exec_summ{
    position: relative;
    margin-left: auto;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: background 0.2s ease;
    background: rgb(255, 0, 76);
}
.btn_exec_summ .icon{
    color:#fff;
}

.exec_summ .card-body {
  padding: 20px;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
}

.exec_summ .card-body ul {
  margin-top: 12px;
  padding-left: 20px;
}

.exec_summ .card-body ul li {
  margin-bottom: 8px;
  font-size: 15px;
  list-style-type: disc;
}
.donation-list {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-family: "Segoe UI", sans-serif;
  max-width: 400px;
  margin: 0 auto;
}

.donation-list h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #007bff;
  text-align: center;
}

.donation-list ul {
  list-style:none;
  padding-left: 20px;
}

.exec_summ .donation-list ul li {
  font-size: 16px;
  background-color: #fff;
  border-radius: 10px;
  color:#000;
  padding-left: 10px;
}


.involve-card .exec_summ{
    width: 100%;
    height: 100%;
    margin:0px;
    padding-inline:5px;
}
.team-card:hover .exec_summ,.involve-card.focus .exec_summ{
    top:0%;
    background:linear-gradient(255deg, #1a0016b0, rgba(0, 20, 20, 0.884));
    visibility: visible;
    opacity: 1;
    transform: scale(1.01);
}
.exec_summ header{
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: #007bff;
}
.involve-card.focus .exec_summ header{
    padding-top:0px;
}

.exec_summ  p{
    font-size:18px;
    margin:0px;
    padding:0px;
    font-weight: 700;
    text-align: left;
}
.exec_summ ul{
    list-style:circle;
    width: 90%;
    margin-left:10%; 
    padding:10px;
}
.involve-card.focus .exec_summ ul{
    margin-left:0px;
    width: 100%;
}   
.exec_summ ul li{
    text-align: left;
    margin-block: 10px;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}
.finance-stats { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.finance-box {
  background: #e6f4ea;
  border-left: 5px solid #0c6b3f;
  border-radius: 10px;
  padding: 20px;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-grid img:hover { transform: scale(1.05); }
.contact-btn {
  background: crimson;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background .3s ease;
}
.contact-btn:hover { background: #065c32; }

.donate_links button{
    max-width: 300px;
    height: 50px;
    padding: 10px;
    font-size: 25px;
    color:#fff;
    background: crimson;
    font-family: header_font;
    border-radius: 16px;
    border-width:0px;
}
.brxe-missions{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}
.brxe-missions svg{
    position: absolute;
    top:-40px;
    left:0;
    width: 100%;
    height: 140%;
    z-index: -1;
}

.about_missions{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.about_missions._q1{
border:5px dashed #f7e327;
}
.brxe-missions._q1 svg{
fill:#f7e327;
}
.about_missions._q2 {
border:5px dashed #fa9304;
}
.brxe-missions._q2 svg{
fill:#000000;
}
.about_missions._q3{
border:5px dashed #0444a3;
}
.brxe-missions._q3 svg{
fill:#034704;
}

.about_missions._q4{
border:5px dashed #0444a3;
}
.brxe-missions._q4 svg{
fill:#473a03;
}


.about_missions._q3_1{
border:5px dashed #ff0808;
}
.brxe-missions._q3_1 svg{
fill:teal;
}

.about_missions._q3_2{
border:5px dashed gold;
}
.brxe-missions._q3_2 svg{
fill:crimson;
}

.about_missions img{
    width: calc(300px * (90 / 100));
    height: calc(300px * (90 / 100));
    object-fit: cover;
    border-radius: 50%;
}

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.slider-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:10px;

}
.partner_container{
    border-radius: 10px;
    box-shadow: 0px 0px 11px 2px #00000029;
    margin-inline:20px;
    display: grid;
    place-items: center;
    padding:20px;
}
.slider-items img {
    object-fit:contain;
}
.launch_timer{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:orangered;
    padding:10px;
    border-radius:16px;
}
.launch_timer p{
    margin-right:20px;
    color:#fff;
}
.launch_timer .launch_pad{
    border-radius:10px;
    background:#fff;
    padding:5px;
    display:grid;
    place-items:center;
}
.launch_timer .launch_pad span{
    font-size:24px;
    font-family:monserate_bold;
}
.animate_x {
       /* needed for transform */
  transition: opacity 0.5s ease, transform 0.5s ease !important ;
  opacity: 1 !important ;
  transform: translateY(0) !important ;
}

/* Hidden state before animation */
.animate_x.hide {
  opacity: 0 !important ;
  transform: translateY(-10px) !important ;
}
.ui_bt_header{
    text-align: center;
    font-size: 60px;
    text-transform: capitalize;
    line-height: 55px;
    max-width: 700px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:20px auto;
    position: relative;
    z-index: 1;
    color: #000000;
    font-family: rubik,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}
.ui_intro_grid{
    width: 100%;
    height: 400px;
    margin-top: 80px;
    position: relative;

}
.ui_intro_grid .bg{
    width:100%;
    height:400px;
    object-fit:cover;
}
.ui_intro_grid .video_x{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    display:grid;
    grid-template-columns:repeat(12,1fr);
}
.ui_intro_grid .video_x video{
    grid-column:3/11;
    width:100%;
    height:400px;
    object-fit: cover;
    border-radius:16px;
    margin-block:40px;
}
.up_send{
    position: fixed;
    bottom: 10%;
    right: 1%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: crimson;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}
.up_send.active{
    visibility: visible;
    opacity: 1;
    z-index: 9999999999999999;
}
.slider_container .slick-track,.slider_container .slick-list{
    height:100%;
}
.xmas-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 650px; /* Slightly taller for the timer */
    background: var(--xmas-bg);
    overflow: hidden;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

/* Ambient Glow (Orbs) */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    z-index: 1;
    animation: pulse 4s infinite alternate;
}
.orb-1 { width: 300px; height: 300px; background: var(--xmas-red); top: -50px; left: -50px; }
.orb-2 { width: 400px; height: 400px; background: var(--xmas-gold); bottom: -100px; right: -100px; }

@keyframes pulse {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

/* Content Wrapper */
.xmas-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Text Side */
.text-box {
    flex: 1;
    min-width: 300px;
}

.text-box h2 {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 4.5rem;
    margin: 0 0 20px 0;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.text-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* CTA Button */
.btn-holiday {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--xmas-red);
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(212, 36, 38, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.btn-holiday:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(212, 36, 38, 0.8);
    background-color: #ff3336;
}

/* Right Visual Side (Timer Card) */
.visual-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.timer-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--xmas-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Timer Flex Layout */
.countdown {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.time-unit {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
    font-variant-numeric: tabular-nums; /* Prevents jumping numbers */
}

.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Snow Animation */
.snowflake {
    color: #fff;
    font-size: 1.2em;
    position: absolute;
    top: -10%;
    z-index: 5;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
}

@keyframes snowflakes-fall { 0% { top: -10%; } 100% { top: 100%; } }
@keyframes snowflakes-shake { 0% { transform: translateX(0px); } 50% { transform: translateX(80px); } 100% { transform: translateX(0px); } }

.snowflake:nth-of-type(1) { left: 10%; animation-delay: 0s, 0s; }
.snowflake:nth-of-type(2) { left: 20%; animation-delay: 5s, 1s; }
.snowflake:nth-of-type(3) { left: 35%; animation-delay: 2s, 2s; }
.snowflake:nth-of-type(4) { left: 50%; animation-delay: 8s, 0.5s; }
.snowflake:nth-of-type(5) { left: 65%; animation-delay: 4s, 1.5s; }
.snowflake:nth-of-type(6) { left: 85%; animation-delay: 1s, 2s; }

/* Responsive Adjustments */
@media (max-width: 900px) {
    .xmas-content { flex-direction: column; text-align: center; }
    .text-box h2 { font-size: 3rem; }
    .countdown { gap: 5px; }
    .number { font-size: 1.8rem; }
}
@keyframes hover {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(100px);
    }
    100%{
        transform: translateY(0px);
    }
}
.xmas_theme{
    position: relative;
    overflow: hidden;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60vh;
    margin-block:30px;
}

.hero-content {
    width: 45%;
    z-index: 5;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero .text-red { color: var(--primary-red); }
.hero .text-green { color: var(--primary-green); }

.hero p ,.brxe-text p{
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--color-text-dark);
    max-width: 90%;
}

.hero .btn-primary {
    background-color: var(--primary-red);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
    transition: transform 0.2s;
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
}

.hero .hero-image {
    width: 45%;
    position: relative;
}

.hero .image-container {
    width: 100%;
    height: 350px;
    border-radius: 60px 20px 60px 20px; /* Asymmetric rounding */
    overflow: hidden;
    border: 4px solid #f8e805;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SOCIAL ICONS --- */
.hero  .socials {
    margin-top: 50px;
    display: flex;
    gap: 15px;
}

.hero .social-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
}

/* --- DECORATIONS (Absolute Positioning) --- */
/* Note: In a real project, replace background-color with background-image: url('path/to/image.png') */

.decor {
    position: absolute;
    z-index: 1;
    pointer-events: none; /* Let clicks pass through */
}

.decor-bell {
    top: 0px;
    left: 20%;
    width: 80px;
    height: 80px;
    font-size: 4rem; /* Using emoji/icon for demo */
    color: var(--accent-yellow);
    transform: rotate(-20deg);
}

.decor-reindeer {
    bottom: -50px;
    right: -20px;
    width: 150px;
    height: 150px;
}

.decor-ornament {
    bottom: 80px;
    left: 45%;
    font-size: 3rem;
    color: var(--primary-green);
}

.decor-leaves {
    top: 120px;
    right: 0;
    font-size: 4rem;
    color: var(--primary-green);
}

/* Placeholder styles for where images should go */
.img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- Footer --- */

.more_btn{
    width: fit-content;
    padding: 10px 25px;
    border-radius: 40px;
    display: flex;
    gap:10px;
    align-items: center;
    background-color: var(--primary-light);
    margin-top:20px;
}
.more_btn:hover img{
    transition:all 0.3s ease;
}
.more_btn:hover img{
    margin-left:20px;
}
.more_btn h1,.more_btn span{
    font-size: 22px;
    font-family: plumpfull ,sans-serif;
    color: #000;
}
.partner-title-vt-g.pt_tx{
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    text-align: center;
}

.img_help {
    height: 600px;
    margin-top:60px;
    display: flex;
    
}
.img_help .bg_img{
    background:url("../images/support1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 65%;
    position: relative;
}
.img_help .text {
    width:35%;
    background-color: var(--primary-main);
    height: 100%;
    text-align: center;
    display: grid;
    place-content: center;
    position: relative;
    z-index: 2;
}
.img_help .bg_img::after{
    background-position: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    bottom: 0;
    content: "";
    position: absolute;
    left:0;
    top: 0;
    width: 300px;
    height: 100%;
    z-index: 1;
    border-radius: 0px 300px 300px 0px;
    background-color: var(--primary-main);
    
}
.img_help .text h2{
    color: #fff;
    padding-top: 60px;
    font-size: 50px;
    font-family: plumpfull, sans-serif;
}
.img_help .text p{
    color: #fff;
    padding: 20px 40px;
    font-size: 1.1em;
    font-weight: bolder;
    line-height: 1.4em;
}
.img_help .text .tx_overlay{
    width: 90%;
    margin: 0 auto;
}
.content_h2.first{
    margin-top:20px;
}


:root{
    --bg: linear-gradient(135deg,#0f172a 0%, #0b1220 40%, #071b2a 100%);
    --card: rgba(255,255,255,0.04);
    --glass: rgba(255,255,255,0.06);
    --accent:  #ff7a59;
    --muted: rgba(255,255,255,0.7);
    --radius: 16px;
    --gap: 20px;
}



.wrap{
    width:100%;
    max-width:1100px;
    margin:0px auto;
}

.wrap .card{
    margin:0px auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    border-radius: var(--radius);
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(2,6,23,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    display:flex;
    align-items:stretch;
    min-height:220px;
    transition: transform 300ms ease, box-shadow 300ms ease;
}
.wrap .card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(2,6,23,0.7);
}

.wrap .card .media{
    flex:0 0 45%;
    position:relative;
}
.wrap .card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.wrap .card .content{
    padding:22px;
    flex:1 1 auto;
    display:flex;
    flex-direction:column;
    gap:12px;
    justify-content:center;
}

.wrap .eyebrow{
    display:inline-block;
    background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    color:var(--muted);
    padding:6px 10px;
    border-radius:999px;
    font-weight:600;
    font-size:12px;
    letter-spacing:0.6px;
    width:max-content;
}

.wrap h3{
    margin:0;
    font-size:25px;
    letter-spacing:-0.2px;
    font-family: plumpfull, sans-serif;
    color:var(--primary-red);
}
.wrap p.lead{
    margin:0;
    font-weight:500;
    font-weight: bolder;
}
.wrap p.desc{
    margin:0;
    font-size:18px;
    line-height:1.5;
}

.wrap .meta{
    display:flex;
    gap:10px;
    align-items:center;
    margin-top:8px;
    font-size:16px;
}
.wrap .pill{
    background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.03);
    display:inline-flex;
    gap:8px;
    align-items:center;
    font-weight:600;
}

.wrap .cta{
    margin-top:12px;
    align-self:flex-start;
    background: var(--primary-red);
    color:white;
    border:none;
    padding:10px 16px;
    border-radius:12px;
    font-weight:700;
    cursor:pointer;
    transition: transform 160ms ease, opacity 160ms ease;
}
.wrap .cta:hover{transform:translateY(-3px);opacity:0.95}


.wrap .card.rev{flex-direction:row-reverse}
@keyframes pop {
    0%{
        transform: translateY(0px);
        box-shadow: 0px 0px 10px 0px var(--primary-light);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

.wrap .card::after{
    content:'';
    position:absolute;
}

.wrap .accent-line{
    height:6px;
    width:60px;
    border-radius:999px;
    background: linear-gradient(90deg,var(--accent), #ffd29d);
}

.recentSlider_main{
    justify-content: center;
}


    #popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.85); /* Deep navy tint */
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    #popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Modal Box */
    .axim-modal {
        background: white;
        width: 90%;
        max-width: 450px;
        border-radius: 24px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        transform: scale(0.8) translateY(30px);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    #popup-overlay.active .axim-modal {
        transform: scale(1) translateY(0);
    }

    /* Visual Header */
    .modal-banner {
        height: 180px;
        background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                    url('https://images.unsplash.com/photo-1706645740891-bc42e22190a3?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Coastal Ghana Vibe */
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end;
        padding: 20px;
    }

    .location-tag {
        background: #f59e0b; /* Amber Gold */
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Content Area */
    .modal-body {
        padding: 30px;
        text-align: center;
    }

    .modal-body h2 {
        font-family: 'Playfair Display', serif;
        color: #1e293b;
        margin: 0 0 10px 0;
        font-size: 2rem;
    }

    .modal-body p {
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 25px;
        font-size: 1rem;
    }

    .date-box {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 25px;
        background: #f8fafc;
        padding: 15px;
        border-radius: 12px;
    }

    .date-item span {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        color: #94a3b8;
        font-weight: 700;
    }

    .date-item strong {
        font-size: 1.1rem;
        color: #0f172a;
    }

    /* Action Buttons */
    .join-btn {
        display: block;
        width: 100%;
        background: #0ea5e9; /* Sky Blue */
        color: white;
        padding: 16px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
        transition: all 0.3s;
        border: none;
        cursor: pointer;
    }

    .join-btn:hover {
        background: #0284c7;
        transform: translateY(-2px);
    }

    .close-trigger {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255,255,255,0.3);
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        font-size: 20px;
        line-height: 1;
        backdrop-filter: blur(5px);
    }

@media screen  and (max-width:1200px){
    .scr1 .container__left{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-top:30px;
        gap:20px;
        padding:10px;
        width:95%;
        
    }
    .scr1 .container__left .content{
        width: 95%;
        margin:0px auto;
    }
    .scr1 .container__left .content h1{
        font-size: 50px;
    }
    .container.landing_page{
        width: 100%;
    }
    .scr1.container .image_design {
        display:none;
    }
    
}
@media screen and (max-width: 1024px) {
    .slider-items{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}
@media screen and (max-width:1000px) {
    .landing_page {
        height: auto;
    }
    .landing_page .page_details .page_counter{
        display: flex;
        flex-wrap: wrap;
        height: fit-content;
    }
    .landing_page .page_details .page_counter .location_icon,
    .landing_page .page_details .page_counter .counter{
        max-width:400px;
        width: 100%;
    }
    .landing_page .page_details .page_counter .date_details{
        max-width: 900px;
        width: 100%;
    }

    .container_about {
        height: 60vh;
    }
    .container_details {
        grid-template-columns: 1fr 3fr;
    }
    .ss{
        margin-top: 330px;
    }
}
@media screen and (max-width:970px){
    .landing_page .page_details .page_counter .location_icon,
    .landing_page .page_details .page_counter .counter{
        max-width:900px;
    }


}
@media (max-width:880px){
    .wrap{grid-template-columns:1fr;}
    .wrap .card{min-height:300px}
    .wrap .card .media{flex-basis:40%}
}

@media screen and (max-width:768px) {
 .img_help .bg_img::after{
        display: none;
    }
    .img_help .bg_img{
        width: 100%;
        height: 50%;
        background-position: center center;
    }
    .img_help {
        flex-direction: column-reverse;
        align-items: flex-end;
    }
    .img_help .text {
        width:100%;
        height: 50%;
        border-radius: 0px;
    }
    .img_help .text .tx_overlay {
        width: 100%;
    }
    .img_help .text h2{
        font-size: 25px;
        padding-top: 0px;
    }
    .ui_bt_ss{
        padding: 10px 10px;
    }
    .ui_intro_grid{
        width: 100%;
        grid-template-columns: 100%;
    }
    .ui_bt_header{
        font-size: 45px;
        color: transparent;
        background-image: none;
        color: #000;
    }
    .ui_intro_grid .video_x{
        height: 300px;
    }
    .ui_bt_header::before{
        content:"none";
        display: none;
    }
    .ui_intro_grid .pic_x{
        display: none;
    }
    .landing_page_content{
        margin-top: 50px;
    }
    .stats-header h2{
        font-size: 2rem;
    }
    .timeline-item, .timeline-item.right {
        width: 100%;
        left: 0 !important;
    }

    .timeline-item::after, .timeline-item.right::after {
        left: 50%;
        margin-left: -10px;
    }


    #brxe-icclti {
        height: 500px;
    }
    #brxe-icclti img{
        width: 100%;
        height: 100%;
        border-radius:10px;
    }
    .atwea  #brxe-ltjlax{
        flex-direction: column-reverse;
    }
    .reverse_flex{
        flex-direction: column-reverse !important;
    }
    .swiper-slide,.testimonial{
        width:100%;
    }
    .release_article .slick-slide{
        width: 100% !important;
    }
    .brxe-missions{
        margin-top:20px;
    }
    .testimonial-card {
        padding:10px;
    }
        
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero.middle{
        flex-direction: column;
    }

    .hero-content, .hero-image {
        width: 100%;
    }

    .hero-image {
        margin-bottom: 30px;
    }
    
    .hero h1 { font-size: 2.5rem; }
    
    .hero .socials {
        justify-content: center;
    }
    .hero .hero-image {
        width: 100%;
    }
    
    /* Hide large decorations on mobile to save space */
    .hero .decor-reindeer { display: none; }
        
}
@media screen and (max-width:700px){
    .landing_page .page_details .page_counter .page_counter_item{
        height: 100px;
    }
    
    .landing_page .page_details .page_counter .counter .label {
        margin-block: 10px;
    }

    .landing_page .page_details .page_counter .location_icon .m_location {
        margin-bottom: 5px;
        margin-top: 10px;
    }
    .landing_page .page_details .page_counter .date_details .item_card .items {
        margin-top: 10px;
    }
    .landing_page .page_details .page_counter .date_details .item_card .items h1{
        font-size: 20px;
    }
    .landing_page img {
        height: 100vh;
    }
    .scr1 .container__left {
        width: 100%;
        margin:0px;
        padding: 0px;
    }
    .scr1 .container__left .content{
        gap:0px;
    }
    .scr1 .container__left .content h1 {
        font-size: 40px;
    }
    
}
@media screen and (max-width:600px) {
    .launch_timer{
        padding:5px;
    }
    .launch_timer p{
        margin-right:0px;
    }
    .launch_timer .launch_pad span{
        font-size:18px;
    }
}
@media (max-width:530px){
    .wrap .card,.wrap .card.rev{flex-direction:column}
    .wrap .card .media{width:100%;flex-basis:auto;height:250px}
    .timeline-item{
        margin-block: 40px;
    }
}
@media screen and (max-width:500px){
    .cta-buttons {
        margin-block: 20px;
    }
    .slider-items{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }
    .ui_intro_grid .video_x video{
        grid-column:2/10;
        width: 100%;
        margin-top:20px;
    }
    .scr1.container {
        padding:0px 10px 10px 10px;
    }
    .ui_bt_ss {
        padding: 0px;
    }
    .btn-primary, .btn-secondary {
        display: inline-block;
        padding: 10px 20px;
    }
    .scr1 .content h1 {
        line-height:50px;
    }
   
    .scr1 .container__left .content p{
        font-size:18px;
    }


}

@media screen and (max-width:400px) {
    .timeline-item{
        margin-block: 20px;
    }
    .testimonial-content {
        font-size: 18px;
        margin: 10px 0 20px;
    }
    .payment-block {
        display: block;
    }
     .ui_bt_header{
        font-size: 30px;
     }
    .launch_timer{
        gap:5px;
    }
    .brxe-missions{
        overflow: hidden;
    }
    .main-title__fonts h1,header h1 {
        font-size:24px !important;
    }
    
    .social_links{
        flex-wrap: wrap;
        gap:10px;
    }
    .brxe-missions svg {
        position: absolute;
        top: -100px;
        left: -10%;
        width: 120%;
        height: 180%;
        z-index: -1;
    }
    .landing_page .page_details .page_counter{
        padding: 10px;
    }
    .landing_page .page_details .page_counter .location_icon p {
        font-size: 15px;
    }
    .landing_page .page_details .page_counter .location_icon h1{
        font-size: 18px;
    }
    .page_counter_item h1 {
        font-size: 16px;
    }
    .scr1 .container__left .content h1{
        margin:0px
    }
    .scr1 .container__left{
        padding: 0px;
        gap:20px;
        overflow: hidden;
    }
    .article_image,.release_article .slick-slide,.release_article a{
        max-width: 400px;
        width: 100%;
        height: 280px;
        width:100%;
    }
    .release_article{
        gap: 5px;
    }
    .btn-primary, .btn-secondary {
        padding: 10px 5px;
        font-size: 16px;
        text-align: center;
    }
    .involvement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    }
    .content_.btn-secondary{
        display: none;
    }
    .ui_intro_grid .video_x {
        display: block;
        width: 100%;
    }
    .ui_intro_grid .video_x video{
        width:95%;
        height: 300px;
        margin-left:3%;
    }
    .cta-buttons {
        margin-block: 10px;
    }
    .content_h2.first{
        margin-top:10px;
    }
    .title.title-yr {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:10px;
    }
}

@media screen and (max-width:280px) {
    .landing_page .page_details .page_counter .page_counter_item,.landing_page .page_details .page_counter .counter .count_down {
        height: fit-content;
        flex-direction: column;
    }
    .stats-header h2{
        font-size: 1rem;
    }
    .slider_container{
        max-height: 150vh;
        height: 100%;
    }
    body{
        overflow-x: hidden;
    }
}
