/* 

Font Families
font-family: "Poppins", sans-serif;
 font-family: "Merriweather", serif;
*/

* {
    padding: 0px;
    margin: 0px;
}

:focus {
    outline: none !important;
}

.container {
    max-width: 1400px !important;
}

ul {
    margin: 0 !important;
    padding: 0;
}

body {
    margin-bottom: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
li,
a,
span {
    font-family: "Poppins", sans-serif;
}

header.entry-header {
    display: none;
}

.entry-content {
    margin-top: 0px;
}

.page {
    margin-bottom: 0px !important;
}

.widget {
    margin-bottom: 0px !important;
}

a {
    text-decoration: none !important;
}

@-webkit-keyframes rotating

/* Safari and Chrome */
    {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 10s linear infinite;
    -moz-animation: rotating 10s linear infinite;
    -ms-animation: rotating 10s linear infinite;
    -o-animation: rotating 10s linear infinite;
    animation: rotating 10s linear infinite;
    margin-bottom: 0px !important;
    position: relative;
    z-index: 2;
}

/* ***** ScrollBar CSS Start ******* */

body {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

/* Define custom scrollbar styles */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: #003C72;
}


/* ***** ScrollBar CSS End ******* */
button#bottom_to_top {
    position: fixed;
    bottom: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 999;
    background: #12b5e8;
    border-radius: 50px;
    color: #fff;
    border: 1px solid #00c2ff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all linear .25s;
    cursor: pointer;
    padding: 0 !important;
}


/* Header Search Start */

.header-search-wrap {
    position: relative;
    margin-left: 15px;
}

.header-search-toggle {
    font-size: 18px;
    color: #000;
}

.header-search-box {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 300px;
    background: #fff;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.header-search-box.active {
    display: block;
}

.search-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}
/* Header Search End */

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff; /* ya transparent agar chahiye */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
