﻿/* =========================================================
   COMPLETE RESPONSIVE CSS
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#F8F5EE;
    color:#2B2B2B;
}

img{
    width:100%;
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:90px 0;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:rgb(231, 224, 205);
    backdrop-filter:blur(12px);
    padding:15px 0;
}

.nav-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

.logo-circle{
    width:110px;
    height:110px;
    border-radius:50%;
    overflow:hidden;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border:4px solid rgba(255,255,255,0.7);
}

.logo-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

nav ul{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#0b1410;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#098451;
}

.donate-btn-nav{
    background:#C89B3C;
    padding:12px 28px;
    border-radius:40px;
}
.donate-btn-nav:hover{
     color: white;
  background: #098451;
}
.menu-toggle{
    display:none;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}

/* =========================================================
   HERO
========================================================= */

.hero-slider{
    position:relative;
    min-height:90vh;
    overflow:hidden;
}

.hero-slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
    transition:1s;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:5;
}

.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient( to right, rgba(20, 22, 21, 0.53), rgba(20, 22, 21, 0.53) );
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:700px;
    color:#fff;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-tag{
    display:inline-block;
    width:max-content;
    background:rgba(255,255,255,0.12);
    padding:12px 22px;
    border-radius:40px;
    margin-bottom:25px;
    font-size:14px;
}

.split-heading h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:10px;
}

.hero-content p{
    font-size:17px;
    line-height:1.9;
    margin:25px 0 40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn{
    padding:16px 36px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.donate-btn{
    background:#C89B3C;
    color:#fff;
}

.volunteer-btn{
    border: 2px solid #fff;
  color: #fff;

}

.hero-btn:hover{
    transform:translateY(-5px);
	background: #fff;
  color: #0B5D3B;
}

/* =========================================================
   IMPACT CARDS
========================================================= */

.impact-cards{
    margin-top:-90px;
    position:relative;
    z-index:10;
    
  
}


.impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.impact-card{
    background:#fff;
    padding:35px 25px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
     transition: .4s;
}
.impact-card:hover{
    transform: translateY(-10px);
}

.impact-card i{
    font-size:42px;
    color:#0B5D3B;
    margin-bottom:15px;
}

.impact-card h3{
    margin-bottom:12px;
    color:#0B5D3B;
}

/* =========================================================
   ABOUT
========================================================= */

.about-section{
    overflow:hidden;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-images{
    position:relative;
}

.main-img{
    border-radius:30px;
    overflow:hidden;
}

.small-img{
    position:absolute;
    width:45%;
    right:-10px;
    bottom:-40px;
    border:6px solid #fff;
    border-radius:25px;
    overflow:hidden;
}

.experience-box{
    position:absolute;
    top:20px;
    right:20px;
    width:150px;
    height:150px;
    background:#0B5D3B;
    color:#fff;
    border-radius:25px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.experience-box h3{
    font-size:42px;
    color:#C89B3C;
}

.about-content h2{
    font-size:42px;
    line-height:1.3;
    margin:20px 0;
}

.about-content p{
    line-height:1.9;
    color:#555;
}

.about-features{
    margin-top:25px;
}

.feature-box{
    display:flex;
    gap:20px;
    background:#fff;
    padding:22px;
    border-radius:20px;
    margin-bottom:20px;
}

.feature-icon{
    min-width:65px;
    height:65px;
    background:#F8F5EE;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:#0B5D3B;
}

.about-btn{
    display:inline-block;
    margin-top:20px;
    background:#C89B3C;
    color:#fff;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
}
.about-btn:hover{
    border:2px solid rgb(203, 162, 76);
    background:none;
    color: rgb(203, 162, 76);
}
/* =========================================================
   MISSION
========================================================= */

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.mission-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
}

.mission-card h3{
    margin-bottom:20px;
    color:#0B5D3B;
}

.mission-card p{
    line-height:1.9;
}

/* =========================================================
   SERVICES CARDS - MODERN UI
========================================================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD STYLE */
.service-card{
    position:relative;
    background:#ffffff;
    padding:38px 28px;
    border-radius:24px;
    overflow:hidden;
    transition:all .45s ease;
    border:1px solid #edf1ea;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

/* ACTIVE GREEN CARD */
.active-card{
    background:linear-gradient(135deg,#FFF,#FFF);
    color:#fff;
    border:none;
}

.active-card .service-icon{
    background:rgb(240, 242, 236);
    color:#0b5d3b;
}

.active-card p,
.active-card a,
.active-card h3{
    color:#fff;
}

/* HOVER EFFECT */
.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 45px rgba(0,0,0,0.10);
}

/* ICON BOX */
.service-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#F4F8EF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#0B5D3B;
    margin-bottom:28px;
    transition:all .5s ease;
}

/* ICON ROTATE */
.service-card:hover .service-icon{
    transform:rotateY(360deg) scale(1.08);
}

/* HEADING */
.service-card h3{
    font-size:24px;
    margin-bottom:18px;
    font-weight:700;
    color:#1d1d1d;
    line-height:1.4;
}

/* TEXT */
.service-card p{
    font-size:15px;
    line-height:1.9;
    color:#777;
    margin-bottom:28px;
}

/* LINK */
.service-card a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#D39B2A;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:.3s;
}

.service-card a i{
    transition:.3s;
}

.service-card:hover a i{
    transform:translateX(6px);
}

/* TOP GLOW EFFECT */
.service-card::before{
    /*content:"";*/
    position:absolute;
    top:-80px;
    right:-80px;
    width:180px;
    height:180px;
    background:rgba(139,197,63,0.06);
    border-radius:50%;
    transition:.5s;
}

.service-card:hover::before{
    transform:scale(1.2);
}

/* ACTIVE CARD GLOW */
.active-card::before{
    background:rgba(255,255,255,0.12);
}

/* RESPONSIVE */
@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:32px 24px;
    }

    .service-card h3{
        font-size:22px;
    }

}

/* =========================================================
   IMPACT
========================================================= */

.impact{
    background:#0B5D3B;
}

.impact-main-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    text-align:center;
}

.impact-box h2{
    color:#C89B3C;
    font-size:52px;
}

.impact-box p{
    color:#fff;
}

/* =====================================================
        NEWS SECTION
===================================================== */

.news-section{
    background:#F8F5EE;
    overflow:hidden;
}

/* =====================================================
        TITLE
===================================================== */

.news-title{
    text-align:center;
    margin-bottom:70px;
}

.news-title span{

    color:#C89B3C;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    position:relative;
}

.news-title span::before{

    content:'';

    position:absolute;

    width:50px;
    height:3px;

    background:#C89B3C;

    top:-14px;
    left:50%;

    transform:translateX(-50%);
}

.news-title h2{

    font-size:41px;

    color:#1F1F1F;

    margin-top:20px;

    line-height:1.2;
}

/* =====================================================
        GRID
===================================================== */

.news-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/* =====================================================
        CARD
===================================================== */

.news-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

    transition:0.4s ease;
}

/* =====================================================
        IMAGE
===================================================== */

.news-image{

    position:relative;

    overflow:hidden;
}

/* IMAGE */

.news-image img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:0.6s ease;
}

/* SMALL ZOOM */

.news-card:hover .news-image img{

    transform:scale(1.08);
}

/* BLACK OVERLAY */

.news-image::after{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:
    rgba(0,0,0,0.35);

    opacity:0;

    transition:0.5s ease;
}

.news-card:hover .news-image::after{

    opacity:1;
}

/* =====================================================
        DATE
===================================================== */

.news-date{

    position:absolute;

    right:22px;
    bottom:22px;

    width:70px;
    height:70px;

    background:#C89B3C;

    color:#fff;

    border-radius:18px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    z-index:5;
}

.news-date h4{

    font-size:28px;

    line-height:1;
}

.news-date p{

    font-size:13px;
}

/* =====================================================
        CONTENT
===================================================== */

.news-content{

    padding:30px;
}

/* =====================================================
        META
===================================================== */

.news-meta{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:20px;
}

.news-meta span{

    font-size:14px;

    color:#777;
}

.news-meta i{

    color:#C89B3C;

    margin-right:5px;
}

/* =====================================================
        TITLE
===================================================== */

.news-content h3{

    font-size:18px;

    line-height:1.4;

    color:#1F1F1F;

    margin-bottom:25px;

    transition:0.4s ease;
}

/* TITLE HOVER */

.news-card:hover h3{

    color:#0B5D3B;
}

/* =====================================================
        BUTTON
===================================================== */

.news-content a{

    text-decoration:none;

    color:#0B5D3B;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    font-size:14px;

    position:relative;

    padding-left:18px;
}
.news-content a:hover{
     color:#D39B2A;
}

/* ARROW */

.news-content a::before{

    content:'›';

    position:absolute;

    left:0;
    top:-5px;

    color:#C89B3C;

    font-size:20px;
}

/* =====================================================
        RESPONSIVE
===================================================== */

@media(max-width:992px){

    .news-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .news-title h2{

        font-size:44px;
    }

    .news-content h3{

        font-size:26px;
    }

}

/* =====================================================
        MOBILE
===================================================== */

@media(max-width:768px){

    .news-grid{

        grid-template-columns:1fr;
    }

    .news-title{

        margin-bottom:50px;
    }

    .news-title h2{

        font-size:34px;
    }

    .news-content h3{

        font-size:24px;
    }

}

/* =====================================================
        SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .news-title h2{

        font-size:28px;

        line-height:1.4;
    }

    .news-image img{

        height:240px;
    }

    .news-content{

        padding:25px 22px;
    }

    .news-content h3{

        font-size:22px;
    }

}

/* =========================================================
   GALLERY
========================================================= */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
     
}


.gallery-grid img{
    height:260px;
    object-fit:cover;
    border-radius:20px;
    transition: .4s;
}
 .gallery-grid img:hover{
    transform: translateY(-10px);
}

/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-box{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.testimonial-box p{
    font-size:30px;
    line-height:1.8;
}

/* =========================================================
   AWARDS
========================================================= */

.awards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.award-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
}

.award-card i{
    font-size:50px;
    color:#C89B3C;
    margin-bottom:20px;
}

/* =========================================================
   DONATION
========================================================= */

.donation{
    background:#0B5D3B;
    color:#fff;
    text-align:center;
}

.donation h2{
    font-size:52px;
    margin-bottom:20px;
}

.donation p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
}

.donation-btn-main{
    display:inline-block;
    margin-top:30px;
    background:#C89B3C;
    color:#fff;
    padding:16px 40px;
    border-radius:40px;
    text-decoration:none;
}
.donation-btn-main:hover{
  background:#098451;
}
/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:#072f1e;
    color:#fff;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-box h4{
    margin-bottom:25px;
    position:relative;
    display:inline-block;
}

/* YELLOW UNDERLINE EFFECT */
.footer-box h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:3px;
    background:#f3c64d;
    border-radius:20px;
    transition:.4s;
}

.footer-box:hover h4::after{
    width:70px;
}

.footer-box p{
    line-height:1.9;
    color:#d7d7d7;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:15px;
}

/* LINKS */
.footer-box ul li a{
    color:#d7d7d7;
    text-decoration:none;
    transition:.35s ease;
    position:relative;
}

/* YELLOW HOVER */
.footer-box ul li a:hover{
    color:#f3c64d;
    padding-left:8px;
}

/* SOCIAL ICONS */
.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.4s ease;
}

/* YELLOW HOVER EFFECT */
.footer-social a:hover{
    background:#f3c64d;
    color:#072f1e;
    transform:translateY(-6px);
    box-shadow:0 10px 20px rgba(243,198,77,0.35);
}

/* CONTACT */
.footer-contact{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-item{
    display:flex;
    gap:15px;
    transition:.4s;
}

.contact-item i{
    color:#f3c64d;
    transition:.4s;
}

/* CONTACT HOVER */
/*.contact-item:hover{
    transform:translateX(8px);
}*/

/*.contact-item:hover i{
    transform:scale(1.2) rotate(10deg);
}*/

/* FOOTER BOTTOM */
.footer-bottom{
    margin-top:60px;
    background:#041a10;
    padding:20px 0;
}

.footer-bottom-flex{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/* COPYRIGHT HOVER */
.footer-bottom-flex p{
    color:#d7d7d7;
    transition:.4s;
}

.footer-bottom-flex p:hover{
    color:#f3c64d;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .impact-grid,
    .services-grid,
    .impact-main-grid,
    .awards-grid,
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid,
    .volunteer-grid,
    .mission-grid{
        grid-template-columns:1fr;
    }

    .split-heading h1{
        font-size:48px;
    }

    .section-title h2,
    .about-content h2,
    .volunteer-content h2,
    .donation h2{
        font-size:38px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    body{
        overflow-x:hidden;
    }

    section{
        padding:60px 0;
    }

    .container{
        width:92%;
    }

    /* NAVBAR */

    .menu-toggle{
        display:block;
        font-size:30px;
        color:#fff;
        cursor:pointer;
        z-index:1001;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#0B5D3B;
        max-height:0;
        overflow:hidden;
        transition:0.4s ease;
    }

    nav.active{
        max-height:500px;
    }

    nav ul{
        flex-direction:column;
        width:100%;
        gap:0;
        padding:20px 0;
    }

    nav ul li{
        width:100%;
        text-align:center;
    }

    nav ul li a{
        display:block;
        padding:15px;
        width:100%;
    }

    .logo-circle{
        width:75px;
        height:75px;
    }

    /* HERO */

    .hero-content{
        text-align:center;
        align-items:center;
        padding:140px 0 90px;
    }

    .split-heading h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-buttons{
        width:100%;
        flex-direction:column;
    }

    .hero-btn{
        width:100%;
        text-align:center;
    }

    /* GRIDS */

    .impact-grid,
    .services-grid,
    .impact-main-grid,
    .awards-grid,
    .gallery-grid,
    .footer-grid,
    .mission-grid{
        grid-template-columns:1fr;
    }

    .about-grid,
    .volunteer-grid{
        grid-template-columns:1fr;
    }

    /* ABOUT */

    .small-img{
        position:relative;
        width:70%;
        right:auto;
        bottom:auto;
        margin:-70px auto 0;
    }

    .experience-box{
        width:120px;
        height:120px;
    }

    .experience-box h3{
        font-size:32px;
    }

    .about-content{
        text-align:center;
    }

    .feature-box{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    /* TEXT */

    .section-title h2,
    .about-content h2,
    .volunteer-content h2,
    .donation h2{
        font-size:30px;
    }

    .testimonial-box p{
        font-size:22px;
    }

    /* GALLERY */

    .gallery-grid img{
        height:220px;
    }

    /* IMPACT */

    .impact-box h2{
        font-size:38px;
    }

    /* DONATION */

    .donation p{
        font-size:15px;
    }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .split-heading h1{
        font-size:28px;
        line-height:1.4;
    }

    .hero-tag{
        font-size:11px;
    }

    .section-title h2,
    .about-content h2,
    .volunteer-content h2,
    .donation h2{
        font-size:25px;
    }

    .hero-content p,
    .about-content p,
    .volunteer-content p,
    .mission-card p,
    .service-card p{
        font-size:14px;
    }

    .gallery-grid img{
        height:200px;
    }

    .testimonial-box p{
        font-size:18px;
    }

    .impact-cards{
        margin-top:0;
    }

    .experience-box{
        width:100px;
        height:100px;
    }

    .experience-box h3{
        font-size:28px;
    }

}


/* =========================================================
   COMMON SECTION TITLE
========================================================= */

.section-title{
    text-align:center;
    margin-bottom:65px;
}

.section-title span{

    position:relative;

    display:inline-block;

    color:#C89B3C;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    padding-top:22px;
}

/* GOLD LINE */

.section-title span::before{

    content:'';

    position:absolute;

    width:52px;

    height:3px;

    background:#C89B3C;

    top:0;

    left:50%;

    transform:translateX(-50%);
}

/* TITLE */

.section-title h2{

    font-size:42px;

    line-height:1.2;

    color:#1F1F1F;

    margin-top:18px;

    font-weight:700;
}

/* PARAGRAPH */

.section-title p{

    max-width:750px;

    margin:20px auto 0;

    line-height:1.9;

    color:#666;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:768px){

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:34px;
    }

}

@media(max-width:480px){

    .section-title h2{
        font-size:28px;
        line-height:1.4;
    }

    .section-title span{
        font-size:13px;
    }

}




/* NAVBAR DROPDOWN */
.navbar ul li{
    position:relative;
}

/* DROPDOWN BOX */
.navbar .dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width: 240px;
  background: #ffffff;
  border-radius: 12px;
  padding: 0px 0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-top: 5px solid #138A58;

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:all .35s ease;
    z-index:999;
}

/* SHOW DROPDOWN */
.navbar li:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    top:100%;
}

/* DROPDOWN LINKS */
.navbar .dropdown-menu li{
    width:100%;
}

.navbar .dropdown-menu li a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 22px;
    color:#2B2B2B;
    font-size:15px;
    font-weight:500;
    transition:all .3s ease;
    text-decoration:none;
}

/* HOVER EFFECT */
.navbar .dropdown-menu li a:hover{
   background: #f4f9f9;
  color: #098451;
  padding-left: 28px;
  border-radius: 12px;
}

/* SMALL ARROW TOP */
.navbar .dropdown-menu::before{
    content:'';
    position:absolute;
    top:-10px;
    left:35px;

    width:18px;
    height:18px;
    background:#ffffff;

    transform:rotate(45deg);
    border-left:1px solid rgba(0,0,0,0.05);
    border-top:1px solid rgba(0,0,0,0.05);
}

/* MOBILE VIEW */
@media(max-width:991px){

    .navbar .dropdown-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        width:100%;
        margin-top:10px;
        box-shadow:none;
        border-radius:8px;
        border-top:none;
        background:#f7f7f7;
        display:none;
    }

    .navbar li:hover .dropdown-menu{
        display:block;
    }

    .navbar .dropdown-menu::before{
        display:none;
    }

}
