/*
.theme-blog-category-column .theme-blog-category-container.theme-blog-rss-feed {
    display: none;
}
*/
/* Styles for the pop-up message box */
      .popup-container {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.9);
        /* Slightly transparent background */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        text-align: center;
        max-width: 400px;
        width: 80%;
      }
      .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
      }
      .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        color: #333;
        font-size: 18px;
        font-weight: bold;
      }
     .donate-now {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        background-color: #4CAF50;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
      }
      .donate-now:hover {
        background-color: #45a049;
      }      /* Styles for the pop-up message box ends */

/*Button*/
.zco-btn-container {
    max-width: 300px;
    margin-bottom: 20px;
}
.zco-btn {
    outline: none;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    display: block;
    width: 100%;
    font-family: "Open Sans", "Lucida Grande", "Lucida Sans", Tahoma, sans-serif;
    transition: 0.3s;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-shadow: rgba(0,0,0,0.6) 0 1px 1px;
    padding: 0.6em 0.7em;
    border: 1px solid rgba(186,160,19,0.3);
        border-bottom-color: rgba(186, 160, 19, 0.3);
        border-bottom-style: solid;
        border-bottom-width: 1px;
    border-bottom: 1px solid rgba(0,0,0,0.7);
    border-radius: 4px;
    background: #FF7E00;
        background-image: none;
    background-image: -webkit-linear-gradient(top, rgba(255,255,125,0.3), rgba(0,0,0,0.25));
    background-image: -moz-linear-gradient(top, rgba(255,255,125,0.3), rgba(0,0,0,0.25));
    background-image: -o-linear-gradient(top, rgba(255,255,255,0.3), rgba(0,0,0,0.25));
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(0,0,0,0.25));
    box-shadow: inset 0 1px rgba(255,255,255,0.4),inset 0 0 0 1px rgba(255,255,255,0.15),inset 0 -1px 3px rgba(0,0,0,0.3),0 1px 3px rgba(0,0,0,0.2);
    line-height: 1.2em;
    margin: 0.3em 0;
    letter-spacing: 0px;
    font-weight: bold;
    text-shadow: rgba(255,255,255,0.4) 0 1px;
}
.zco-btn:hover, .zco-btn:active, .zco-btn:focus { 
    background-color: #FF9933;
    border-color: rgba(186, 160, 19, 0.3);
    color: #F7FFE6;
    text-shadow: rgba(250, 10, 250, 200.6) 0 1px 1px;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#zco-frame {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
}
#zco-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: rgba(241,244,242,0.95);
}
#zco-frame #zco-overlay-frame {
    width: 100%;
    height: 96%;
    position: absolute;
    left: 0;
    top: 4%;
    bottom: 0;
    right: 0;
    margin: auto;
    border: none;
}
#zco-overlay-close {
    position: fixed;
    right: 35px;
    top: 35px;
    width: 45px;
    height: 45px;
    opacity: 0.7;
    border: 1px solid #975a23;
    z-index: 1060;
    border-radius: 50%;
    cursor: pointer;
}
#zco-overlay-close:hover {
    opacity: 1;
}
#zco-overlay-close:before, #zco-overlay-close:after {
    position: absolute;
    left: 21px;
    top: 6px;
    content: ' ';
    height: 30px;
    width: 2px;
    background-color: #975a23;
}
#zco-overlay-close:before {
    transform: rotate(45deg);
}
#zco-overlay-close:after {
    transform: rotate(-45deg);
}
/* Stats Counter */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: auto;
}
.counters {
    background-color: #0f479a;
    color: white;
    padding: 40px 20px;
    border-top: 3px solid lightskyblue;
}

.counters .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    text-align: center;
}

.counters i {
    color: lightskyblue;
    margin-bottom: 5px;
}

.counters .counter {
    font-size: 45px;
    margin: 10px 0;
}
@media (max-width: 1000px) {
    .counters .container {
        grid-template-columns: repeat(1, 1fr);
    }

    .counters .container > div:nth-of-type(1),
    .counters .container > div:nth-of-type(2) {
        border-bottom: 1px solid lightskyblue;
        padding-bottom: 20px;
    }
	

}
.txtwhite{
 color: white;   
}
/* Stats Counter */

