@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;500;600;700&display=swap');

:root{
    --primary-color: #00ab4e;
    --secondary-color: #d7001b;
    --white-color: #ffffff;
    --text-color: rgba(0,0,0,.8);
    --bg-color: rgba(34,96,191,.08);
    --bg-green: #596439;
    --bg-dark: #161a25;
    --bg-purple: linear-gradient(to bottom right,#342640,#3b2f4c,#393151,#323c67);
    --transition: ease-in-out .3s;
    --title-font: 'Poppins', sans-serif;
    --text-font:'Mukta', sans-serif ;
    --border-color: rgba(34,96,191,.14);
    --border-radius: 4px;
    --transform: scale(1.01);
    --bg: url(../img/bg.jpg);
}
*{
    scrollbar-width: thin;
}

body {
    padding: 0;
    margin: 0;
    font-family:var(--text-font);

}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    padding: 0;
    font-weight: 600;
    color: var(--text-color);
    /*font-family: var(--title-font);*/
}

h1 {
    font-size: 40px;
    line-height: 48px;
}

h2 {
    font-size: 43px;
    line-height: 45px;
}

h3 {
    font-size: 28px;
    line-height: 1.5;
}

h4 {
    font-size: 18px;
    line-height: 26px;
}

h5 {
    font-size: 14px;
    line-height: 24px;
}

a {
    color: var(--primary-color);
    display: block;
    text-decoration: none !important;
    transition: ease-in-out .3s;
}
a:hover {
    color: var(--secondary-color);
}
p{
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}


.mt {
    margin-top: 25px;
}

.mb {
    margin-bottom: 25px;
}

.pt {
    padding-top: 25px;
}

.pb {
    padding-bottom: 25px;
}
.bg-pt{
    padding-top: 10px;
}
.bg-pb{
    padding-bottom: 10px;
}
.form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--primary-color);
}

.container {
    max-width: 1260px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}




/* Skip Ads */
.only-mobile {
    display: none;
}

.skip-ads {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background: white;
    padding: 20px 0;
}

.skip-ads-wrap {
    height: 100vh;
    position: relative;
    max-width: 850px;
    margin: auto;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}
.skip-ads-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skip-ads-head img {
    width: auto;
}

.skip-ads-head .btn {
    background: var(--secondary-color);
    border: none;
    padding: 7px 20px;
    border-radius: 3px;
    font-weight: 500;
}
.skip-ads-head .btn:focus{
    outline: none !important;
    box-shadow: none !important;
    background:var(--secondary-color) !important;
}
.skip-ads.active {
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out .5s;
}
/* Skip Ads End */



.useful-icons {
    position: fixed;
    top: 70%;
    right: 0;
    transform: translateY(-70%);
    z-index: 1010;
    background: #4e4a4b;
}
.useful-icons ul li a {
    padding: 7px 10px !important;
}
.useful-icons ul li a img {
   width: 30px;
   height: 30px;
}
.mysidenav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 1020;
    background: #fff;
    width: 360px;
    height: 100%;
    overflow-x: hidden;
    margin-right: -280px;
    transition: ease-in-out .3s;
    opacity: 0;
    visibility: hidden;
}
.mysidenav.active{
    margin-right:0;
    opacity:1;
    visibility:visible;
}
.sidenav {
    margin-left: -280px;
    transition: ease-in-out .3s;
    opacity: 0;
    visibility: hidden;
}
.modal-info {
    padding: 15px 15px;
    border-top: 1px solid #dfdfdf;
}

#mySidenav1 h3 {
    margin-bottom: 0;
    font-size: 24px;
}
.sidenav1 {
    margin-right: -280px;
    transition: ease-in-out .3s;
    opacity: 0;
    visibility: hidden;
}
/*.sidenav.active {
    margin-left: 0;
    box-shadow: -5px 0px 15px 0 rgb(0 0 0 / 15%);
    opacity: 1;
    visibility: visible;
}
.sidenav1.active {
    margin-right: 0;
    box-shadow: -5px 0px 15px 0 rgb(0 0 0 / 15%);
    opacity: 1;
    visibility: visible;
}*/
.close-tab {
    background: #df1c3c;
    color: #fff;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 22px;
    border-radius: 100%;
}
.mobile-logo1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    background: #ffffff;
}
/* Top Header */
.header-top {
    background: var(--primary-color);
    padding: 10px 0;
}
.top-news-wrap {
    display: flex;
    align-items: center;
}

.top-news-media img {
    height: 28px;
    width: 28px !important;
    border-radius: 100%;
    object-fit: cover;
}

.top-news-content {
    margin-left: 8px;
}

.top-news-content h3 {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 500;
}

.top-news-content h3 a {
    display: block;
    white-space: nowrap;
    color: var(--white-color);
    transition: var(--transition);
    font-family: var(--text-font);
}
.top-news-wrap:hover .top-news-content h3 a{
    color: var(--secondary-color);
}
.th-wrap ul {
    display: flex;
    align-items: center;
}

.th-wrap ul li +li {
    margin-left: 30px;
}

/* Top Header End */




/* Header Middle */
.logo img {
    height: 60px;
    width: auto;
}
.hm-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-media ul {
    display: flex;
}
.social-media ul li a {
    display: block;
    font-size: 18px;
    height: 32px;
    width: 32px;
    line-height: 36px;
    text-align: center;
    background: var(--bg-color);
    border-radius: 100%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-media ul li+li a {
    margin-left: 8px;
}
.social-media ul li a:hover{
    color: var(--white-color);
}
.social-media ul li.facebook a:hover{
    background: #1877f2;
}
.social-media ul li.twitter a:hover{
    background: #1da1f2;
}
.social-media ul li.linkedin a:hover{
    background: #0077b5;
}
.social-media ul li.instagram a:hover{
    background: #c13584;
}
.social-media ul li.youtube a:hover{
    background: #ff0000;
}
.header-middle {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.header-middle-right {
    display: flex;
    align-items: center;
}

.header-icons > ul {
    display: flex;
    align-items: center;
}

.header-icons {
    margin-left: 15px;
    padding-left: 15px;
    
}

.header-icons ul li >a {
    font-size: 18px;
    display: block;
    color: #fff;
    font-weight: bold;
   /* height: 32px;
    width: 32px;*/
    text-align: center;
    line-height: 30px;
    border-radius: 10%;
    padding: 0px 5px;
}
.header-icons > ul >li:nth-child(1) >a{
    background: #0089cf;
}
.header-icons > ul >li:nth-child(2) >a{
    background: #00ab4e;
}
.header-icons > ul >li:nth-child(3) >a{
    background: var(--secondary-color);
}
.header-icons > ul >li:nth-child(4) >a{
    background: #3194c7;
}

.header-icons > ul li+li a {
    margin-left: 7px;
}
.footer-link ul li{
    padding: 10px 0px 0px 0px;
}

/* Header Middle End */





/* Header */
.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation-menu ul {
    display: flex;
}

.navigation-menu ul li a {
    display: block;
    font-size: 18px;
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    transition: var(--transition);
}
.navigation-menu ul li a::before{
    position: absolute;
    content: '';
    bottom: -17px;
    left: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: var(--secondary-color);
    transition: var(--transition);  
}
.navigation-menu ul li a:hover::before{
    width: 100%;
}
.navigation-menu ul li.active a{
    position: relative;
    color: #0089cf;
}
.navigation-menu ul li.active a::before {
    position: absolute;
    content: '';
    bottom: -17px;
    left: 0;
    right: 0;
    height: 2px;
    width:100%;
    background: #00ab4e;
    transition: var(--transition);  
}
.navigation-menu ul li+li a {
    margin-left: 30px;
}

.navigation-menu ul li a:hover {
    color: var(--secondary-color);
}

.search {
    position: relative;
    width: 300px;
}

.search button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: none;
    background: transparent;
    font-size: 22px;
    padding: 4px 15px;
    color: var(--primary-color);
}

.search .form-control {
    height: 37px;
    border-radius: 50px;
    background: var(--bg-color);
    border: none;
    font-size: 15px;
    padding: 10px 20px;
}
.header {
    padding: 10px 0;
    box-shadow: 0px 5px 7px rgb(34 96 191 / 10%);
    background: var(--white-color);
    position: sticky;
    top: 0;
    z-index: 1020;
}
/* Header End */



/* Trending Dropdown*/
.common-news {
    position:absolute;
    left: 0;
    right: 0;
    background: var(--white-color);
    z-index: 1021;
    max-width: 1200px;
    margin: auto;
    padding: 30px;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 10%);
    margin-top: 20px;
    display: none;
}
.common-news-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:var(--bg-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
}
.common-news-head{
    font-size: 25px;
    margin-bottom: 0px;
    color: var(--text-color);
    cursor: pointer;
}
.common-news h3 {
    font-size: 28px;
    margin-bottom: 0px;
    color: var(--text-color);
}

.common-news-wrap {
    display: flex;
    margin-top: 30px;
}
.trending-newss .common-news-wrap {
    align-items: center;
}
.common-news .thumb-news{
    margin-top: 25px;
}
/* Trending Dropdown*/




/* Mobile Menu */

#mySidenav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 1020;
    background: var(--white-color);
    width: 250px;
    height: 100%;
    overflow-x: hidden;
}
.sidenav {
    margin-right: -250px;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}
.sidenav.active {
    margin-right: 0;
    box-shadow: -5px 0px 15px 0 rgb(0 0 0 / 15%);
    opacity: 1;
    visibility: visible;
}
#menu1 li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
}
#menu1 li a i {
    font-size: 30px;
}
#menu1 li a:hover {
    color: var(--secondary-color);
}
.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background:var(--white-color);
    box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
}

.mobile-logo img {
    height: 25px;
    width: auto;
}

#close-btn{
    background: var(--secondary-color);
    color: var(--white-color);
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 22px;
    border-radius: 100%;
}

#mySidenav::-webkit-scrollbar {
    width: 7px;
}

#mySidenav::-webkit-scrollbar-track {
    background: var(--white-color);
    display: none;
}

#mySidenav::-webkit-scrollbar-thumb {
    background: rgb(208 208 208);
    border-radius: 10px;
}
.toggle-btn{
    cursor: pointer;
    display: none;
}
.toggle-btn span {
    display: block;
    height: 2px;
    background: var(--secondary-color);
    margin: 7px 0;
    width: 30px;
}
.toggle-btn span:nth-child(3) {
    width: 17px;
    margin-left: auto;
}
.toggle-btn span:nth-child(2) {
    width: 24px;
    margin-left: auto;
}
/* Mobile Menu End */






/* Featured Section */
.featured-wrap {
    position: relative;
    text-align: center;
}

.featured-content {

}
.tags {
    display: inline-block;
    background: var(--secondary-color);
    line-height: normal;
    font-size: 13px;
    color: var(--white-color);
    padding: 1px 8px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
}
.tags:hover{
    color: var(--white-color);
}
.tags::before{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 7px solid var(--secondary-color);
    border-left: 10px solid transparent;
    bottom: -7px;
    right: 0;
}
.featured-content h3 {
    font-size: 55px;
    font-family: var(--text-font);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px;
    
}
.featured-content h3 a{
    color: #038acf;
   
}
.featured-content h3 a:hover{
    color: var(--secondary-color);
}
.featured-content h3:hover{
    color: var(--secondary-color);
}
.top-news-content h3 a{
    padding: 3px 15px 3px 15px;
    border-radius: 60px;
    margin-left: 5px;
    border: 1px solid rgba(0, 0, 0, .2);
    background: #fff;
    color:#00ab4e;

}
.featured-content p {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 17px;
}
.section-top-ads .ads-col {
    margin-bottom: 25px;
}
.section-bottom-ads .ads-col {
    margin-top: 25px;
}
.ads-col img {
    border-radius: var(--border-radius);
}
.meta-tag ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.meta-tag ul li img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    border-radius: 100%;
    padding: 3px;
    margin-right: 5px;
}

.meta-tag ul li a {
    color: var(--text-color);
    transition: var(--transition);
}
.meta-tag ul li a:hover{
    color: var(--secondary-color);
}
.meta-tag ul li {
    font-size: 16px;
    font-weight:bold;
}

.meta-tag ul li +li {
    margin-left: 30px;
}

.meta-tag ul li i {
    font-size: 25px;
    vertical-align: middle;
    margin-right: 3px;
}

.featured-media {
    margin-top: 25px;
}
.featured-media img {
    border-radius: var(--border-radius);
}
.featured-info {
    margin-top: 25px;
}

.featured-info p {
    margin-bottom: 0;
    font-size: 25px;
    line-height: 1.6;
}
.featured-col +.featured-col {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}
/* Featured Section End */





/* Main News */
.global-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 0;
    cursor: pointer;
    margin-bottom: 30px;
}

.global-title::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 4px;
    width: 100%;
    background: var(--bg-color);
    z-index: -1;
}
.global-title::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 4px;
    width: 0;
   /* background: var(--primary-color);*/
    z-index: -1;
    transition: var(--transition);
}
.global-title:hover::after{
    width: 100%;
}
.global-title h3 {
    margin-bottom: 0;
    background: var(--white-color);
    padding-right: 25px;
    color: var(--text-color);
    font-size: 28px;
}
.global-title h3 i {
    margin-right: 3px;
    font-size: 18px;
    color: var(--white-color);
    background: var(--primary-color);
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
}
/*.global-title a {
    display: block;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    background: var(--bg-color);
    border-radius: 100%;
    position: relative;
    font-size: 14px;
    border: 1px solid var(--border-color);
}
.global-title a:hover{
    background: var(--secondary-color);
    color: var(--white-color);
}*/
.main-btn {
    background: var(--white-color);
    padding-left: 25px;
}
.mn-main-news {
    position: relative;
}
.main-news-main{
    height: 516px;
}
.mn-img {
    height: 100%;
    width: 100%;
}
.mn-img a {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}
.mn-img img {
    transition: .3s linear;
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.mn-main-news:hover img {
    transform: var(--transform);
}
.mn-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 5;
    border-radius: var(--border-radius);
    background: rgba(0,0,0,0) linear-gradient(to bottom,
        rgba(5,5,5,0) 0,
        rgba(0,0,0,0) 0,
        rgba(71,71,71,0) 0,
        rgba(102,102,102,0) 0,
        rgba(28,28,28,0) 0,
        rgba(20,20,20,.59) 32%,
        rgba(13,13,13,1) 62%,
        rgba(3,3,3,1) 100%) repeat scroll 0 0;
}
.mn-text h3 {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 25px;
    font-family: var(--text-font);
    font-weight: 600;
}
.mn-text h3 a {
    display: block;
    color: var(--white-color);
    transition: var(--transition);
}
.mn-text h3 a:hover{
    color: var(--secondary-color);
}
.tn-col {
    display: flex;
}
.thumbnail-news-media{
    height: 110px;
    overflow: hidden;
    flex: 3;
    margin-right: 20px;
    border-radius: var(--border-radius);
}
.tn-col img {
    border-radius: 4px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.thumb-news:hover .tn-col img{
    transform: var(--transform);
}
.thumb-news-content{
    flex: 6;
}
.tn-col h3 {
    font-size: 28x;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0;
    font-family: var(--text-font);
}
.thumbnail-news-media a {
    height: 100%;
    width: 100%;
}
.tn-col h3 a {
    color: var(--text-color);
    margin-right: 0;
}
.tn-col h3 a:hover{
    color: var(--secondary-color);
}
.time {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
    color: rgba(0,0,0,.48);
}
.time i{
    margin-right: 1px;
    font-size: 19px;
    vertical-align: middle;
}
.main-news-main .mn-text h3 {
    font-size: 35px;
}
.main-news-thumbnail .thumb-news +.thumb-news {
    margin-top: 25px;
}
.sidebar-ads .ads-col {
    margin-top: 21px;
}
.main-news-sidebar {
    margin-top: -21px;
}
/* Main News End */





/* Rajneeti News */
.rajneeti{
    background: var(--bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
.dark-title h3 {
    background: #191d29;
    color: var(--white-color);
}
.dark-title .main-btn{
    background: #161922;
}
.dark-title .main-btn a{

}
.dark-title::before {
    background: #ffffff1c;
}
.rajneeti .mn-main-news +.mn-main-news {
    margin-top: 28px;
}
.rajneeti .mn-main-news{
    height: 250px;
}
.rajneeti .rajneeti-main {
    height: 525px;
}
.rajneeti .mn-text h3 {
    font-size: 28px;
}
/* Rajneeti News End */






/* Business */
.bs-news-info {
    margin-top: 12px;
}
.bs-news-info h3 {
    font-size: 25px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0;
    font-family: var(--text-font);
}
.bs-news-info h3 a {
    color: var(--text-color);
    transition: var(--transition);
}
.bs-news-info h3 a:hover{
    color: var(--secondary-color);
}
.bs-news-img {
    height: 150px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.bs-news-img a {
    height: 100%;
    width: 100%;
}

.bs-news-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.box-style-news:hover .bs-news-img img{
    transform: var(--transform);
}
.business-thumbnail .thumb-news +.thumb-news {
    margin-top: 25px;
}
.business-main {
    height:548px;
}
.business-main .mn-text h3{
    font-size: 25px;
}
.business-box-wrap {
    margin-top: 25px;
}
.thumb-sidebar-wrap {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}
.thumb-sidebar-wrap ul li {
    padding: 20px 15px;
    margin-top: 0;
    border-bottom: 1px solid var(--border-color);
}
.thumb-sidebar-wrap ul li a {
    display: block;
    color: var(--text-color);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0;
    font-family: var(--text-font);
    transition: var(--transition);
}
.thumb-sidebar-wrap .mn-main-news a{
    position: relative;
}
.thumb-sidebar-wrap ul li a:hover{
    color: var(--secondary-color);
}
.thumb-sidebar-wrap .mn-img{
    position: relative;
}
.thumb-sidebar-wrap .mn-img::before {
    content: '';
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to top,#000,rgba(0,0,0,.58),transparent,transparent);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}
.thumb-sidebar-wrap .mn-img::after {
    position: absolute;
    content: '';
    bottom: 0;
    background: linear-gradient( 180deg ,rgba(255,255,255,0) 0,#fff);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 4;
}

.thumb-sidebar-wrap .mn-main-news{
    height: 200px;
}
.thumb-sidebar-wrap .mn-img a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
/* Business End */





/* Khelkud */
.khelkud{
    background: #1b2030;
}
.green-title h3 {
    background: #1b2030;
    color: var(--white-color);
}
.green-title .main-btn{
    background: #1b2030;
}
.green-title .main-btn a {
    background: #1b2030;
}
.green-title .main-btn a:hover {
    background: var(--secondary-color);
}
.green-title::before {
    background: #ffffff29;
}
.khelkud-main .bs-news-info h3 a {
    color: var(--white-color);
    transition: var(--transition);
}
.khelkud-main .bs-news-info h3 a:hover {
    color: var(--secondary-color);
}
.khelkud-main .box-style-news{
    margin-bottom: 25px;
}
.khelkud-sidebar .thumb-news +.thumb-news {
    margin-top: 25px;
}
.khelkud-sidebar-wrap .tn-col h3 a {
    color: var(--white-color);
    transition: var(--transition);
}
.khelkud-sidebar-wrap .tn-col h3 a:hover{
    color: var(--secondary-color);
}
.khelkud-sidebar-wrap .time {
    color: #d3d3d3;
}
.khelkud.bg-pb {
    padding-bottom: 25px;
}
/* Khelkus End */





/* Pradesh */
.pradesh-thumbnail .thumb-news +.thumb-news {
    margin-top: 25px;
}
.bs-news-info p {
    margin-bottom: 0;
    margin-top: 10px;
}
.pradesh .bs-news-img {
    height: auto;
}
.nav-tabs {
    background: var(--white-color);
    padding-left: 25px;
    border-bottom: none;
}

.nav-tabs .nav-link{
    background: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}
.nav-tabs .nav-link.active{
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
}
.nav-tabs .nav-item +.nav-item .nav-link{
    margin-left: 10px;
}
/* Pradesh End */






/* Industry */
.industry{
    background: var(--bg-purple);
}
.purple-title h3 {
    background: #3a2e4a;
    color: var(--white-color);
}
.purple-title .main-btn{
    background: #383253;
}
.purple-title .main-btn a {
    background: #eef3fa78;
}
.purple-title .main-btn a:hover {
    background: var(--secondary-color);
}
.purple-title::before {
    background: #ffffff29;
}
.industry .mn-main-news {
    height: 350px;
}
/* Industry End */





/* Antarbarta */
.antarbarta-main {
    display: flex;
    background: var(--primary-color);
    border-radius: var(--border-radius);
}

.antarbarta-content {
    flex: 1;
    padding: 50px;
}

.antarbarta-media {
    flex: 1;
}

.antarbarta-content h3 {
    font-size: 40px;
    line-height: 1.3;
    font-family: var(--text-font);
}

.antarbarta-content h3 a {
    color: var(--white-color);
    transition: var(--transition);
}
.antarbarta-content h3 a:hover{
    color: var(--secondary-color);
}
.antarbarta-content p {
    margin-bottom: 0;
    margin-top: 30px;
    color: #ffffffd4;
    font-size: 18px;
}
.antarbarta-media a {
    width: 100%;
    height: 100%;
}

.antarbarta-media img {
    height:517px;
    width: 100%;
    object-fit: cover;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}
.antarbarta-main .time {
    color: var(--white-color);
    margin-top: 15px;
}
.name {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(0,0,0,.48);
    font-weight: 500;
}

.name i {
    margin-right: 2px;
    font-size: 18px;
}
.antarbarta-sidebar .tn-col h3 {
    font-size: 20px;
}
.antarbarta-sidebar .tn-col img {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    border: 3px solid var(--border-color);
}
.antarbarta-sidebar .thumbnail-news-media {
    overflow: inherit;
    margin-right: 5px;
    flex: 2;
    height: auto;
}
.antarbarta-sidebar .thumb-news +.thumb-news {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}
/* Antarbarta End */





/* Videos */
.videos{
    background: #3a2f4c;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
.video-selected {
    margin: 0 auto;
    padding-right: 20px;
}

.video-iframe {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 10px;
}

.video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnails {
    margin: 0 auto;
    padding: 0;
    overflow-y: auto;
    max-height: 449px;
    overflow-x: hidden;
    padding-right: 5px;
    cursor: pointer;
}

.video-thumb {
    height: auto;
}

.video-thumb img {
    background-color: #d8d9da;
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.video-thumb iframe {
    display: none;
}

.video-thumb p.name {
    margin-top: 5px;
    font-weight: bold;
}

.video-thumbnails h3 {
    margin-bottom: 0;
    font-weight: 500;
    font-family: var(--text-font);
    font-size: 20px;
}

.video-thumbnails h3 a {
    display: block;
    color: var(--white-color);
    transition: var(--transition);
}
.video-thumbnails .row {
    align-items: center;
}

.thumbnail-list+.thumbnail-list {
    margin-top: 15px;
}

.video-thumbnails::-webkit-scrollbar {
    width: 3px;
}

.video-thumbnails::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.video-thumbnails::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
    border-radius: 30px;
}

.thumbnail-list.active {
    background: #d8d8d817;
}

.video-thumb {
    position: relative;
}

.thumbnail-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    cursor: pointer;
    text-align: center;
}

.thumbnail-icon i {
    color: white;
    font-size: 40px;
}

.thumbnail-list.active .thumbnail-icon {
    display: block;
}
.multimedia {
    background: #2f2f2f;
}
.multimedia .main-title span {
    color: #fff;
}
.multimedia .main-title a{
    color: #fff;
}
.multimedia .main-title i{
    color: #fff;
}
.multimedia ::-webkit-scrollbar {
  width: 7px
}

.multimedia ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.multimedia ::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  border-radius: 30px;
}
/* Videos End */






/* Bulk Section */
.bulk-sec-thumb .mn-main-news {
    height: 250px;
}
.bulk-sec-thumb .thumb-news{
    margin-top: 25px;
}
.bulk-news-wrapper .thumbnail-news-media {
    flex: 2;
    height: 90px;
}
/* Bulk Section End */





/* Photo Feature */
.photo-feature{
    background: var(--bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
.photo-feature .mn-main-news {
    height: 350px;
}
/* Photo Feature End */




/* Footer */
.footer {
    border-top: solid 1px var(--border-color);
    background: var(--bg-color);
}
.footer-content {
    padding: 50px 0;
}

.footer-content img {
    margin-bottom: 25px;
    width: auto;
}

.footer-content p {
    line-height: 2;
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
    font-family: 'Poppins',sans-serif;
    margin-bottom: 0;
}

.footer h3{
    margin: 0;
    color: #00ab4e;
    font-size: 20px;
    padding-bottom: 17px;
    font-family: 'Poppins',sans-serif;
}
.footer-link ul li a {
    color: var(--text-color);
    font-size: 16px;
    display: block;
    opacity: .9;
    padding-bottom: 0px;
    font-weight: 500;
    /*font-family: var(--title-font);*/
}
.footer-link ul li a:hover{
    color: #c4161c;
    opacity: 1;
}
.footer-details ul {
    display: flex;
    flex-wrap: wrap;
}
.footer-details ul li {
    width: calc(100% * 1 / 3.001);
    margin-bottom: 25px;
}
.footer-details ul li span {
    display: block;
    color: var(--text-color);
    font-size: 12px;
    padding-bottom: 8px;
    font-family: var(--title-font);
    font-weight: 600;
}

.footer-details ul li b {
    display: block;
    font-size: 15px;
    font-family: var(--title-font);
    font-weight: 600;
}
.footer-details .btn {
    color: #fff;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    background: var(--secondary-color);
    text-transform: uppercase;
    padding: 10px 38px;
    border-radius: 22px;
    vertical-align: middle;
    display: inline-block;
}
.footer-details .btn:hover{
    background: var(--primary-color);
}
.footer-link {
    padding-left: 10px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.footer-details {
    padding-left: 10px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.footer-bottom {
    background: var(--bg-color);
    text-align: center;
    padding: 10px 0;
    border-top: solid 1px var(--border-color);
}
.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom ul {
    display: flex;
    justify-content: center;
}

.footer-bottom ul li a {
    display: block;
    font-size: 24px;
    color: var(--secondary-color);
}
.footer-bottom ul li a:hover{
    color: var(--primary-color);
    opacity: .6;
}

.footer-bottom ul li +li {
    margin-left: 20px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--text-color);
    margin-top: 0px;
    font-size: 15px;
    line-height: 1.6;
}
.border-end {
    border-right: 1px solid var(--border-color)!important;
}
/* Footer End */





/* Scroll Top */
.go-top {
    position: fixed;
    cursor: pointer;
    transition: var(--transition);
    bottom: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 1021;
}
.go-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}
.pulse {
    z-index: 4;
    text-align: center;
    font-size: 27px;
    height: 40px;
    width: 40px;
    line-height: 44px;
    background:var(--secondary-color);
    color: var(--white-color);
    border-radius: 100%;
    font-size: 16px;
    position: relative;
    z-index: 0;
}
.pulse:after {
    animation: ripple-white3 .8s linear infinite;
    background:rgb(215 0 27 / 30%);
    border-radius: 100%;
    content: '';
    height:60px;
    left:-11px;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 60px;
    line-height: 60px;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    z-index: -1;
}
@keyframes ripple-white3 {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
    40% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.4);
        -moz-transform: scale(1.4);
        -ms-transform: scale(1.4);
        -o-transform: scale(1.4);
        transform: scale(1.4)
    }
}
/* Scroll Top End */





/* Details Page */
.details-left-sidebar {
    position: sticky;
    top: 70px;
    z-index: 1015;
}
.details-left-sidebar .meta-tag ul {
    display: block;
    text-align: center;
}
.details-left-sidebar .meta-tag ul li a span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
}
.details-left-sidebar .meta-tag ul li img{
    margin: auto;
}
.details-left-sidebar .meta-tag{
    margin-top: 25px;
}
.share-right {
    text-align: center;
}
.share-count b {
    font-size: 45px;
    line-height: 40px;
    display: block;
    font-weight: bold;
    color: var(--text-color);
}

.share-count p {
    font-size: 15px;
    margin-bottom: 0;
    text-align: center;
    color: var(--text-color);
    margin-top: -3px;
    text-transform: uppercase;
    line-height: normal;
}

.share-count {
    text-align: center;
    margin-bottom: 25px;
}
.share-media ul li a {
    display: block;
    height: 48px;
    width: 48px;
    line-height: 52px;
    font-size: 25px;
    color: var(--white-color);
    text-align: center;
    transition:var(--transition);
    margin: auto;
    border-radius: var(--border-radius);
}
.share-media ul li+li a{
    margin-top: 15px;
}
.share-media ul li a:hover{
    transform: translateY(-4px);
}
.share-media ul li.facebook a{
    background: #4267B2;
}
.share-media ul li.twitter a{
    background:#55acee;
}
.share-media ul li.messenger a{
    background: #448AFF;
}
.share-media ul li.whatsapp a{
    background: #25d366;
}
.share-media ul li.shares a{
    background: #95D03A;
}
.details-top-ads .ads-col {
    margin-bottom: 30px;
}
.details-sidebar-ads .ads-col {
    margin-bottom: 30px;
}
.details-sidebar .tr-img a {
    border-radius: 4px;
}
.after-featured-img-ads .ads-col {
    margin-top: 30px;
}
.details-main p {
    line-height: 1.7;
    font-size: 26px;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align:justify;
}
.details-featured-img {
    margin-bottom: 25px;
}
.details-featured-img img {
    border-radius: var(--border-radius);
}
.inside-content-ads .ads-col {
    margin-bottom: 30px;
}
.related-tags ul {
    display: flex;
    flex-wrap: wrap;
}
.related-tags ul li{
    margin: 10px 0;
}
.related-tags {
    margin-top: 25px;
}

.related-tags ul li a {
    display: block;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 13px;
    padding: 3px 18px;
    border-radius: 50px;
    transition: var(--transition);
    background: var(--bg-color);
    line-height: normal;
}
.related-tags ul li a:hover{
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}
.related-tags ul li a i {
    margin-right: 2px;
}

.related-tags ul li+li {
    margin-left: 15px;
}
.details-bottom-ads .ads-col {
    margin-top: 30px;
}
.d-taja {
    margin-top: 30px;
}
.related-news-wrap {
    box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%);
}

.related-news-wrap .bs-news-info {
    margin-top: 0;
    padding: 20px;
    text-align: center;
}

.related-news-wrap .bs-news-img {
    height: 200px;
}
.details-sidebar .thumb-news +.thumb-news {
    margin-top: 25px;
}
.details-sidebar .thumbnail-news-media {
    height: 90px;
}
.details-sidebar{
    position: sticky;
    top: 70px;
    z-index: 1015;
}
/* Details Page End */






/* Category Page */
.category-page .antarbarta-main {
    margin-bottom: 25px;
}
.category-page .box-style-news{
    margin-bottom: 25px;
}
.page-link {
    border: 1px solid var(--border-color);
    display: inline-block;
    width: 35px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    line-height: 24px;
    font-size: 15px;
    overflow: hidden;
    margin-right: 11px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
    border-radius: var(--border-radius) !important;
}
.page-link:hover{
    border: 1px solid var(--secondary-color);
    color: #fff;
    background: var(--secondary-color);
}

.page-item.active .page-link {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
/* Category Page End */






/* Team */
.team-repeat .row {
    justify-content: center;
}

.team-repeat-wrap {
    max-width: 800px;
    margin: auto;
    margin-bottom: 50px;
}

.team-img img {
    width: 150px;
    height: 150px;
    margin: auto;
    border-radius: var(--border-radius);
}
.team-content {
    margin-top: 10px;
}

.team-wrap {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 20px;
}

.team-content h3 {
    font-size: 18px;
    margin-bottom: 3px;
}

.team-content span {
    display: block;
    font-size: 15px;
    color: #919191;
}

.team-content ul {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.team-content ul li + li a {
    margin-left: 7px;
}

.team-content ul li a {
    font-size: 15px;
    background: var(--bg-color);
    height: 25px;
    width: 25px;
    line-height: 26px;
    text-align: center;
    border-radius: 100%;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    transition: var(--transition);
}

.team-content ul li a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}
.team-repeat h2 {
    font-size: 20px;
    margin-bottom: 0px;
    text-align: center;
}
.team-repeat +.team-repeat {
    border-top: 1px solid var(--border-color);
    margin-top: 15px;
    padding-top: 30px;
}
/* Team End */


#menu2 li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
}
.navigation-menu .mn1{
    display: none;
}
.scn-brk{
    padding: 20px 0px 0px 0px;
}
.sub-brk h3{
    text-align: center;
}
#sub-brk{
    padding: 10px 0px 10px 0px;
}
.sc-brk{
    height: 300px;
    width: 100%;
}
.sub-brk{
    height: 450px;
    width: 100%;
}
.frt-side img{
    height:100%;
    width: 100%;
    object-fit:cover;
    padding: 10px 0px 10px 0px;
}
.intv-ns{
    margin: 10px 0px 10px 0px;
}
.int-img{
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.intv-ns{
   height: 350px;
    width: 100%;
    object-fit: cover; 
}
.news-bhn{
    padding: 20px 0px 0px 0px;
}
.section-bottom-ads{
    margin: 20px 0px;
}
.mn-list ul li a{
   
    font-weight: bold;
    color: #0089cf;
    font-size: 19px;

}
.mn-list ul li{
    padding: 0px 5px;
}
.life-news{
    margin:10px 0px;
}
.life-news img{
    object-fit: cover;
    height: 200px;
}
.navigation-menu ul .active a i{
    font-size: 25px;
    line-height: 0;
    padding: 0px;
}

.go-date {
    position: fixed;
    cursor: pointer;
    top: 70px;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    z-index: 1021;
    transition: var(--transition);


        }
        .go-date.active {
    opacity: 1;
    visibility: visible;
    /*top: 0px;*/
    
}
.pulse-dt p{
    padding: 2px;
    margin: 0px;
    color: #fff;
    background: #000;
    font-size: 13px
}
.pulse-date{
    margin-top: 10px;
}
.pulse-date p{
    font-size:20px;
}
.mbl-lg{
    display: none;
}
.pulse-date-mbl{
    display: none;
}
.logo{
    display: block;
}
.header-middle-right{
    padding:0px 0px;
}

.details-title{
    position: sticky;
    top: 55px;
    z-index: 1015;
    background:#fff;
}
.meta-tag a img{
        height: 35px;
    border-radius: 50%;
    margin: 5px 9px 0 0;
    width: 35px;
    margin-bottom: 0;
    object-position: center;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    border: 1px dashed #bf1e2e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2392156863);
    
}
.meta-tag a{
    padding:5px 0px;
}

.heading--sub {
   font-size: 20px;
    opacity: .75;
    font-weight: 500;
    margin: 0;
    margin-top: 0px;
  
    padding: 0px 0 0 0;
    line-height: 1.6;
}
.details-main p img{
    width:100%;
    height:100%;
    padding: 10px 0px;
}