*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  /* font-family: "ubuntu", serif; */
}

.ttd-header{
  width:100%;
}

.brand-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
  background:#fff;
}

.brand-img{
  height:80px;
}

.brand-text{
  text-align:center;
}

.brand-text h1{
  font-size:26px;
  color:#1a237e;
  font-weight:700;
}

.brand-text h2{
  font-size:22px;
  color:#b71c1c;
  font-style:italic;
}


.-bar{
  background:linear-gradient(to bottom,#b71c1c,#7f0000);
}



   /* ================= HERO ================= */
.hero{
  position:relative;
  height:80vh;
  overflow:hidden;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  animation:slider 9s infinite;
}

/* 3 slides → each 3 seconds */
.slide:nth-child(1){ animation-delay:0s }
.slide:nth-child(2){ animation-delay:3s }
.slide:nth-child(3){ animation-delay:6s }

@keyframes slider{
  0%   {opacity:0}
  10%  {opacity:1}
  30%  {opacity:1}
  40%  {opacity:0}
  100% {opacity:0}
}

    .hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.45)}
    .hero-content{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;color:#fff;padding:20px}
    .hero h1{font-size:42px;margin-bottom:10px}
    .hero p{font-size:18px;max-width:700px}
    .hero .cta{margin-top:20px;display:flex;gap:14px;flex-wrap:wrap}
    .btn{padding:12px 22px;border-radius:30px;font-weight:700}
    .btn.primary{background:var(--saffron);color:#000}
    .btn.outline{border:2px solid #fff;color:#fff}

    /* ================= MANTRA ================= */
    .mantra{background:#fff3d6;padding:14px 0;overflow:hidden}
    .mantra span{display:inline-block;white-space:nowrap;font-family:"Tiro Devanagari Sanskrit";font-size:26px;animation:marq 18s linear infinite}
    @keyframes marq{from{transform:translateX(100%)}to{transform:translateX(-100%)}}

    section{padding:50px 20px}
    .container{max-width:1200px;margin:auto}
    .section-title{text-align:center;margin-bottom:40px}
    .section-title h2{font-size:34px}

    /* ================= ABOUT ================= */
    .about{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
    .about img{width:100%;border-radius:18px;box-shadow:0 12px 30px rgba(0,0,0,.15)}

    /* ================= MISSION ================= */
    .mission{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px}
    .card{background:#fff;border-radius:18px;padding:26px;text-align:center;box-shadow:0 10px 30px rgba(0,0,0,.08);transition:.3s}
    .card:hover{transform:translateY(-8px)}

    /* ================= GALLERY ================= */
.gallery-track{
  overflow:hidden;
  width:100%;
}

.gallery-row{
  display:flex;
  gap:16px;
  width:max-content;
}

.gallery-row img{
  width:260px;
  height:180px;
  object-fit:cover;
  border-radius:16px;
  flex-shrink:0;
}

/* LEFT TO RIGHT */
.gallery-track.left .gallery-row{
  animation:scroll-left 35s linear infinite;
}

/* RIGHT TO LEFT */
.gallery-track.right .gallery-row{
  animation:scroll-right 35s linear infinite;
}

@keyframes scroll-left{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

@keyframes scroll-right{
  from{transform:translateX(-50%)}
  to{transform:translateX(0)}
}


    /* ================= VIDEO ================= */
    .videos{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
    iframe{width:100%;height:220px;border-radius:16px}

    /* ================= CONTACT ================= */
    .contact-section{
  padding:80px 20px;
}
.contact-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARD */
.card{
  background:var(--card);
  padding:26px;
  border-radius:20px;
  box-shadow:0 14px 40px rgba(0,0,0,.1);
  transition:.3s;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 50px rgba(0,0,0,.15);
}
.card h3{
  font-size:22px;
  margin-bottom:18px;
  font-weight:900;
  color:white;
}

/* FORM */
form label{
  font-weight:700;
  display:block;
  margin-bottom:6px;
}
form input,
form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #ddd;
  margin-bottom:14px;
  font-size:15px;
}
form textarea{
  min-height:100px;
  resize:vertical;
}
form button{
  color:white;
  width:100%;
  background:#851414;
  border:none;
  padding:14px;
  border-radius:12px;
  font-weight:900;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
}
form button:hover{
  transform:scale(1.03);
}

/* QR */
.qr{
  max-width:200px;
  margin:auto;
  border-radius:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
}
    /* ================= FOOTER ================= */
    footer{background:#1a1a1a;color:#eee;padding:50px 20px}
    .footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:30px}
    .footer-bottom{text-align:center;margin-top:30px;font-size:14px;color:#aaa}

    @media(max-width:900px){
      .about,.contact{grid-template-columns:1fr}
      .hero h1{font-size:32px}
    }
    /* ================= DONATE MODAL ================= */
.donate-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}

.donate-modal.active{
  display:flex;
}

.donate-box{
  background:#fff;
  width:92%;
  max-width:420px;
  padding:28px;
  border-radius:20px;
  position:relative;
  text-align:center;
  animation:popup .3s ease;
}

@keyframes popup{
  from{transform:scale(.8);opacity:0}
  to{transform:scale(1);opacity:1}
}

.donate-close{
  position:absolute;
  top:12px;
  right:16px;
  font-size:26px;
  cursor:pointer;
}

.donate-box h2{
  margin:0 0 6px;
  color:#ef4b3f;
}

.donate-sub{
  font-size:14px;
  color:#555;
  margin-bottom:16px;
}

.donate-details p{
  margin:6px 0;
  font-size:14px;
}

.qr-box{
  margin-top:16px;
}

.qr-box img{
  width:180px;
  border-radius:12px;
  border:1px solid #eee;
}
/* ================= FOOTER ================= */
.site-footer{
  background:#1a1a1a;
  color:#ddd;
  padding:60px 20px 0;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:35px;
}

.footer-col h4{
  color:#f6b042;
  margin-bottom:14px;
  font-size:16px;
  text-transform:uppercase;
}

.footer-col p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:10px;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:#ddd;
  font-size:14px;
  transition:.3s;
}

.footer-links a:hover{
  color:#f6b042;
  padding-left:4px;
}

.footer-icon{
  margin-right:6px;
  color:#f6b042;
}

.footer-social{
  margin-top:12px;
}

.footer-social a{
  display:inline-flex;
  width:36px;
  height:36px;
  align-items:center;
  justify-content:center;
  background:#333;
  border-radius:50%;
  margin-right:8px;
  color:#fff;
  font-size:14px;
  transition:.3s;
}

.footer-social a:hover{
  background:#f6b042;
  color:#000;
}

.footer-bottom{
  margin-top:40px;
  padding:15px 10px;
  background:#111;
  text-align:center;
  font-size:13px;
  color:#aaa;
}

/* MOBILE */
@media(max-width:768px){
  .site-footer{
    text-align:center;
  }
}
/* ================= MOBILE RESPONSIVE FIX ================= */
@media (max-width: 992px){
  /* Header */
  .topbar .wrap{
    flex-direction:column;
    gap:6px;
    text-align:center;
  }

  .nav{
    flex-wrap:wrap;
    gap:12px;
  }

  nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    font-size:14px;
  }

  .donate-btn{
    padding:10px 18px;
    font-size:14px;
  }

  /* Hero */
  .hero{
    height:60vh;
  }

  .hero h1{
    font-size:28px;
  }

  .hero p{
    font-size:15px;
  }

  /* About */
  .about{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about img{
    max-height:280px;
    object-fit:cover;
  }

  /* Contact */
  .contact{
    grid-template-columns:1fr;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 576px){
  body{
    font-size:14px;
  }

  /* Header */
  .logo{
    flex-direction:column;
    text-align:center;
  }

  .logo img{
    width:50px;
  }
}


/* ===== HERO ===== */
.gallery-hero{
  position:relative;
  height:300px;
  background:url('banner1.jpeg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}
.gallery-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}
.gallery-hero .content{
  position:relative;
  text-align:center;
  color:#fff;
}
.gallery-hero h1{
  font-size:44px;
  margin-bottom:8px;
}
.gallery-hero p{
  font-size:16px;
  opacity:0.9;
}

/* ===== GALLERY ===== */
.gallery-section{
  padding:60px 20px;
}
.container{
  max-width:1200px;
  margin:auto;
}

/* 4 IMAGES PER ROW */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  cursor:pointer;
  transition:0.3s ease;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
}
.gallery-grid img:hover{
  transform:scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:576px){
  .gallery-grid{grid-template-columns:1fr}
}

/* ===== LIGHTBOX ===== */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}
.lightbox span{
  position:absolute;
  top:20px;
  right:30px;
  font-size:36px;
  color:#fff;
  cursor:pointer;
}

.videos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
}

.videos video{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}
 
/* ===== FOOTER ===== */
footer{
  background:#111827;
  color:#e5e7eb;
  padding:30px 20px;
  text-align:center;
}

/* about us */



/* ===== HERO ===== */
.about-hero{
  position:relative;
  height:550px;
  background:url('banner2.jpeg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}
.about-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}
.about-hero .content{
  position:relative;
  color:#fff;
  text-align:center;
  max-width:800px;
}
.about-hero h1{
  font-size:44px;
  margin-bottom:10px;
}
.about-hero p{
  font-size:16px;
  opacity:0.9;
}

/* ===== SECTIONS ===== */
section{
  padding:70px 20px;
}
.container{
  max-width:1200px;
  margin:auto;
}

/* ===== ABOUT INTRO ===== */
.about-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:40px;
  align-items:center;
}
.about-grid img{
  width:100%;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}
.about-grid h2{
  font-size:32px;
  margin-bottom:10px;
}
.about-grid h3{
  color:var(--primary);
  margin-bottom:15px;
}
.about-grid p{
  color:var(--muted);
  line-height:1.7;
}

/* ===== MANTRA ===== */
.mantra{
  background:#fff3d6;
  padding:16px;
  text-align:center;
  font-family:"Tiro Devanagari Sanskrit",serif;
  font-size:20px;
  color:#8a5a00;
  letter-spacing:1px;
}

/* ===== MISSION VISION ===== */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}
.card{
  background:#fff;
  padding:30px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
}
.card h4{
  margin-bottom:10px;
  font-size:20px;
}
.card p{
  color:var(--muted);
  line-height:1.6;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .about-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
}

/* bss member */


/* HERO */
.page-hero{
  background:linear-gradient(135deg,#fff3d6,#ffe8b0);
  padding:60px 20px;
  text-align:center;
}
.page-hero h1{
  margin:0;
  font-size:36px;
  font-weight:800;
}
.page-hero p{
  margin-top:8px;
  color:#555;
}

/* WRAPPER */
.wrap{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
}

/* SEARCH */
.search-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
  gap:12px;
}
.search-box input{
  width:100%;
  max-width:320px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #ddd;
}

/* GRID */
.member-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

/* CARD */
.member-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:.3s;
  text-align:center;
}
.member-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */
.member-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* INFO */
.member-info{
  padding:18px 14px 20px;
}
.member-info h3{
  margin:0;
  font-size:18px;
  font-weight:700;
}
.member-info .role{
  font-size:13px;
  color:#fff;
  background:var(--brand);
  display:inline-block;
  padding:4px 10px;
  border-radius:20px;
  margin:8px 0;
}
.member-info p{
  margin:6px 0;
  font-size:14px;
  color:#444;
}

/* MOBILE */
@media(max-width:600px){
  .page-hero h1{font-size:28px}
  .member-card img{height:200px}
}

    .contact-hero{
      background:url('about.jpeg') center/cover no-repeat;
      padding:90px 20px;
      text-align:center;
      color:#fff;
    }
    .contact-hero h1{
      font-size:48px;
      font-weight:900;
    }

    .contact-section{
      padding:80px 0;
    }

    .contact-grid{
      display:grid;
      grid-template-columns:1fr 1.2fr;
      gap:40px;
      align-items:stretch;
    }

    /* INFO CARD */
    .contact-info{
      background:linear-gradient(135deg,#f6b042,#d4af37);
      color:#111;
      padding:40px;
      border-radius:24px;
      box-shadow:0 25px 50px rgba(0,0,0,.15);
    }
    .contact-info h3{
      font-size:26px;
      margin-bottom:20px;
    }
    .info-item{
      margin-bottom:18px;
      font-weight:600;
      line-height:1.6;
    }

    /* FORM */
    .contact-form{
      background:#fff;
      padding:40px;
      border-radius:24px;
      box-shadow:0 25px 50px rgba(0,0,0,.12);
    }
    .contact-form h3{
      font-size:26px;
      margin-bottom:20px;
    }

    .form-group{
      margin-bottom:18px;
    }
    .form-group label{
      font-weight:600;
      display:block;
      margin-bottom:6px;
    }
    .form-group input,
    .form-group textarea{
      width:100%;
      padding:14px 16px;
      border-radius:12px;
      border:1px solid #ddd;
      font-family:Inter;
      font-size:15px;
    }
    .form-group textarea{
      min-height:130px;
      resize:none;
    }

    .submit-btn{
      background:linear-gradient(135deg,#f6b042,#d4af37);
      border:none;
      padding:14px 26px;
      border-radius:30px;
      font-weight:800;
      cursor:pointer;
      box-shadow:0 10px 25px rgba(246,176,66,.5);
    }

    /* MAP */
    .map-section{
      margin-top:80px;
      border-radius:22px;
      overflow:hidden;
      box-shadow:0 20px 40px rgba(0,0,0,.12);
    }

    /* MOBILE */
    @media(max-width:900px){
      .contact-grid{
        grid-template-columns:1fr;
      }
      .contact-hero h1{
        font-size:36px;
      }
    }
/* ===== CONTACT BANNER ===== */
.page-banner{
  height:500px;
  background:url('about.jpeg') center/cover no-repeat;
  padding:90px 20px;
  text-align:center;
}

.page-banner h1{
  font-size:44px;
  font-weight:800;
  margin-bottom:10px;
  color:white;
}

.page-banner p{
  max-width:620px;
  margin:auto;
  color:white;
  font-size:16px;
}

/* ===== 2 COLUMN GRID ===== */
.four-col-section{
  padding:70px 20px;
  background:#fffaf0;
}

.four-col-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px;
}

/* CARD BEAUTY */
.info-card{
  background:#fff;
  border-radius:18px;
  padding:30px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  transition:.3s ease;
}

.info-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.info-card h3{
  margin-top:0;
  color:#f6b042;
  font-size:22px;
}

/* FORM */
.info-card input,
.info-card textarea{
  width:100%;
  padding:12px 14px;
  margin-bottom:12px;
  border-radius:10px;
  border:1px solid #ddd;
}

.submit-btn{
  background:linear-gradient(135deg,#f6b042,#d4af37);
  border:none;
  padding:14px 26px;
  border-radius:30px;
  font-weight:700;
  cursor:pointer;
}

/* QR */
.qr-img{
  max-width:180px;
  border-radius:14px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .four-col-grid{
    grid-template-columns:1fr;
  }
  .page-banner h1{
    font-size:34px;
  }
}
/* BANNER */
.donate-banner{
  height:450px;
  background:url("g15.jpeg") ;
  padding:110px 20px;
  text-align:center;
  color:#fff;
}
.donate-banner h1{
  font-size:52px;
  font-weight:900;
  letter-spacing:.5px;
}
.donate-banner p{
  max-width:760px;
  margin:16px auto 0;
  font-size:20px;
  opacity:.95;
}

/* SECTION */
.donate-section{
  padding:90px 20px;
  background:linear-gradient(#fffaf0,#ffffff);
}
.donate-wrap{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:stretch;
}

/* CARDS */
.donate-card{
  background:rgba(255,255,255,.9);
  padding:38px;
  border-radius:26px;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
  position:relative;
  overflow:hidden;
}
.donate-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(246,176,66,.12));
  pointer-events:none;
}
.donate-card h3{
  font-size:26px;
  margin-bottom:22px;
  font-weight:900;
  color:white;
  text-align:center;
}

/* QR */
.qr-big{
  max-width:420px;
  margin:10px auto 0;
  display:block;
  border-radius:22px;
  padding:14px;
  background:#fff;
  box-shadow:0 15px 35px rgba(0,0,0,.25);
}
.upi-note{
  margin-top:18px;
  font-size:20px;
  font-weight:800;
  color:#1f2937;
}

/* BANK DETAILS */
.bank-list{
  margin-top:10px;
}
.bank-list p{
  margin-bottom:14px;
  font-size:20px;
  padding:10px 14px;
  background:#fff7e6;
  border-radius:12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.bank-list strong{
  color:#000;
}

/* INFO BOX */
.info-box{
  margin-top:26px;
  padding:22px;
  background:linear-gradient(135deg,#fff7e6,#fff1d6);
  border-left:6px solid var(--saffron);
  border-radius:16px;
  font-size:19px;
}
.info-box ul{
  margin:12px 0 0 18px;
}
.info-box li{
  margin-bottom:8px;
}

/* FOOTER UPGRADE */
footer{
  background:linear-gradient(135deg,#1f2937,#111827);
  color:#fff;
}
footer h4{
  color:var(--gold);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:30px;
  padding-top:15px;
  font-size:14px;
  opacity:.9;
}

/* RESPONSIVE */
@media(max-width:900px){
  .donate-wrap{
    grid-template-columns:1fr;
  }
  .donate-banner h1{
    font-size:40px;
  }
  .donate-banner p{
    font-size:17px;
  }
  .qr-big {
    max-width: 200px;
    margin: 10px auto 0;
    display: block;
    border-radius: 22px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0,.25);
}

.main-header{
  width:100%;
  background:#fff;
}

/* ===== BRAND BAR ===== */
.brand-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 30px;
}

.logo{
  height:80px;
}

.brand-text{
  text-align:center;
  justify-content:center;
  display:flex;
}

.brand-text h1{
  font-size:28px;
  color:#1a237e;
  font-weight:700;
}

.brand-text h2{
  font-size:22px;
  color:#b71c1c;
  font-style:italic;
}

/* ===== NAV BAR ===== */
.nav-bar{
  background:#8b0000;
  position:relative;
}

.nav-bar ul{
  list-style:none;
  display:flex;
  justify-content:center;
}

.nav-bar li{
  border-right:1px solid rgba(255,255,255,0.3);
}

.nav-bar li:last-child{
  border-right:none;
}

.nav-bar a{
  display:block;
  padding:14px 18px;
  color:#fff;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
}

.nav-bar a:hover{
  background:#b71c1c;
}

/* Donate Highlight */
.nav-bar .donate a{
  background: maroon;
  color:white;
  font-weight:700;
}

/* ===== MOBILE MENU ===== */
.menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  padding:12px 18px;
  cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .brand-bar{
    flex-direction:column;
    gap:10px;
  }

  .logo{
    height:60px;
  }

  .brand-text h1{
    font-size:20px;
  }

  .brand-text h2{
    font-size:16px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-bar ul{
    display:none;
    flex-direction:column;
    width:100%;
    background:#8b0000;
  }

  .nav-bar ul.show{
    display:flex;
  }

  .nav-bar li{
    border-right:none;
    border-top:1px solid rgba(255,255,255,0.3);
    text-align:center;
  }
}
