@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500&display=swap');
/* Reset CSS */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Mukta', sans-serif;
}
body {
    background-color: #fcfcfc;
    font-weight: 400;
    line-height: 1.4 !important;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
p {
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}
#root, #__next {
    isolation: isolate;
}
ul, li{
    list-style: none;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none !important;
}
::-moz-selection {
    background: #d90000;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    background-color: #ccc;
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #d90000;
}

::selection {
    background: #d90000;
    color: #fff;
    text-shadow: none;
}
/* End Reset */
:root{
    --primary-color: #0b2d62;
    /* --secondary-color: #c0131b; */
    --secondary-color: #0a234b;
    --heading-color: #3b3b3c;
    --light-white: #dedede;
}

.top-header{
    background-color: #323232;
    color: var(--light-white);
    padding: 0.5rem 0;
}
.top-header .date i, .top-header .email i{
    margin-right: 0.5rem;
}
.logo img{
    max-height: 112px;
    width: auto;
}
/* Menu Area */
nav{
    background-color: var(--secondary-color);
}
.menu-button .hamburger {
    display:inline-block;
    width:28px;
    cursor:pointer;
    margin-right:18px;
    vertical-align:middle;
    overflow:hidden
}
.menu-button .hamburger>span {
    -webkit-transition:all .35s ease-in-out;
    -moz-transition:all .35s ease-in-out;
    -ms-transition:all .35s ease-in-out;
    -o-transition:all .35s ease-in-out;
    transition:all .35s ease-in-out;
    display:block;
    width:100%;
    height:2px;
    background-color:rgba(250,250,250,.7019607843);
    margin-bottom:8px
}
.menu-button .hamburger>span:nth-child(2n) {
    width:60%
}
.menu-button .hamburger>span:last-child {
    margin-bottom:0
}
.menu-button .hamburger:hover>span {
    width:100%;
    background:#c5c5c5;
    -webkit-animation:bar .4s;
    animation:bar .4s
}
.menu-button .hamburger:hover>span::nth-of-type(2) {
    -webkit-animation-delay:.1s;
    animation-delay:.1s
}
.menu-button .hamburger:hover>span:nth-of-type(3) {
    -webkit-animation-delay:.2s;
    animation-delay:.2s
}
@keyframes bar {
    0% {
      transform:translateX(0)
    }
    50% {
      transform:translateX(100%)
    }
    50.001% {
      transform:translateX(-100%)
    }
    to {
      transform:translateX(0)
    }
}
.mobile-menu {
    height: 100%;
    width: 280px;
    display: none;
    position: fixed;
    z-index: 5;
    top: 0;
    right: 0;
    background-color: #eaeaea;
    overflow-x: hidden;
    box-shadow: -5px 0 5px 0.5px #292929a8;
}
.slide-left{    
    -webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}  
@-webkit-keyframes slide-left {
    0% {
      -webkit-transform: translateX(300px);
      transform: translateX(300px);
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
}
  
@keyframes slide-left {
    0% {
      -webkit-transform: translateX(300px);
      transform: translateX(300px);
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
}
  
.slide-right{    
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}  
@-webkit-keyframes slide-right {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(300px);
      transform: translateX(300px);
    }
}
  
  @keyframes slide-right {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(300px);
      transform: translateX(300px);
    }
  }

.submenu-slide-up{    
    -webkit-animation: submenu-slide-up 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: submenu-slide-up 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}  
@-webkit-keyframes submenu-slide-up {
    0% {
      -webkit-transform: translateY(0%);
      transform: translateY(0%);
    }
    100% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
}
  
@keyframes submenu-slide-up {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
.submenu-slide-down{    
    -webkit-animation: submenu-slide-down 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: submenu-slide-down 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}  
@-webkit-keyframes submenu-slide-down {
    0% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
    100% {
      -webkit-transform: translateY(0%);
      transform: translateY(0%);
    }
}
  
@keyframes submenu-slide-down {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}
  
.sidebar-top {
	position: sticky;
	top: 0;
	z-index: 4;
	padding-bottom: 1rem;
}
.sidebar-logo {
	padding: 1rem .5rem;
	background: #fff;
}
.side-search {
	display: block;
	position: relative;
	background-color: #fff;
	padding: 10px 15px;
	box-shadow: 0 5px 13px rgba(0,0,0,.1294117647);
}
.side-search input{
	font-family: "Mukta", sans-serif;
	padding: 0 35px 0 0;
	font-size: 17px;
	outline: 0;
	transition: .3s ease;
	width: 100%;
	border: none;
	background: 0 0;
}
.side-search input[type="submit"] {
	width: auto;
	position: absolute;
	top: 12px;
	cursor: pointer;
	border: none;
	right: 12px;
	background-color: rgba(241,241,241,.4784313725);
	background: url(../img/search-icon.png);
	padding: 0;
	width: 20px;
	font-size: 0;
	height: 36px;
	background-repeat: no-repeat;
	opacity: .7;
}

.sidebar-english {
    background-color: #dadada;
	position: sticky;
	bottom: 0;
	padding: 1.25rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.english-button a {
	color: #efefef;
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: 600;
	padding: .3rem 1rem;
	border: 2px solid #efefef;
	border-radius: 2rem;
	transition: .3s;
	background: var(--primary-color);
}
.english-button a:hover{
	color: var(--primary-color);
    background-color: #efefef;
}

/* Sidebar Menu */
.mobile-nav .menu{
    display: block;
}
.mobile-nav .menu .menu-item{
    min-height: 50px;
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}
.mobile-nav .menu .menu-item a{
    font-weight: 500;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    line-height: 50px;
    transition: all .3s ease;
    color: var(--background-color);
}
.mobile-nav .menu .menu-item span{
    position:absolute;
    right:0;
    font-size:1.25rem;
    transition:.3s linear;
    width:50px;
    text-align:center;
    line-height:50px;
    cursor:pointer;
    background:#fff;
    color:rgba(10,10,10,.82);
    height:50px
}
.mobile-nav .menu .menu-item span.mobile-dropDown-up {
    color:#bf1e2e;
    transition:.3s linear;
    transform:rotate(-180deg)
}
.mobile-nav .menu .sub-menu {
    display: none;
    transition:.3s linear;
    background-color: #fff;
    padding-left: 8px;
}
  
.box {
    animation: fade-out 1000ms;
}
.mobile-nav .menu .sub-menu li{
    padding: .75rem .75rem .75rem 1rem;
}
.mobile-nav .menu .sub-menu li a{
    line-height: 1.2;
    padding-left: 1rem;
}

/* Sidebar Navigation End */
.menu-home a{
    color: var(--light-white);
    font-size: 1.25rem;
    background-color: #a31313;
    border: 2px solid var(--light-white);
    padding: 0.15rem 0.6rem;
    border-radius: 0.4rem;
    transition: all 0.4s ease;
}
.menu-home a:hover{
    color: #ededed;
    background-color: #b30505;
    border: 2px solid #ededed;
    border-radius: 0.3rem;
}
#menu-main-menu.menu{
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
#menu-main-menu.menu li{
    padding: 1.4rem 1.25rem;
}
#menu-main-menu.menu li a{
    text-decoration: none;
    font-size: 1.18rem;
    font-weight: bold;
    color: #d5d5d5;
    transition: all 0.4s ease;
}
#menu-main-menu.menu li:hover a{
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fdfdfd;
}

.features-btn .eng-btn a{
    background-color: var(--light-white);
    color: var(--heading-color);
    border: 2px solid var(--light-white);
    padding: 0.3rem 1rem;
    border-radius: 0.3rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.5s ease;
}
.features-btn .eng-btn:hover a{
    background-color: var(--secondary-color);
    color: var(--light-white);
    border: 2px solid var(--light-white);
    padding: 0.3rem 1rem;
}
nav .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#main{
    transition: 0.5s;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 4;
    display: none;
    cursor: url('../img/x-regular-24.png'), auto;
}

/* Start Flash Section */
.flash-post{
	background: #fbfbfb;
	padding: 2rem;
	display: block;
	margin-bottom: 1.5rem;
	border: 1px solid #ededed;
	border-radius: .5rem;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
}
.title-area {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.flash-post a .title-area h2{
	margin-bottom: 1rem;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--heading-color);
	transition: all 0.5s ease-in-out;
	border-bottom: 1px solid #edededed;
	margin-bottom: 1rem;
}
.flash-post a:hover .title-area h2{
	color: var(--primary-color);
}
.flash-post .title-area h2 a:hover{
	color: var(--primary-color);
}
.flash-post .title-area img{
    width: auto;
	max-height: 25rem;
	padding: 1rem .5rem;
}
.flash-post .title-area .meta{
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--meta-gray);
	font-size: 1rem;
}
.flash-post .title-area .meta i{
	color: #d21312cc;
	font-size: 1rem;
	margin-right: .25rem;
}
.meta span{
	font-size: 0.8rem;
	color: #7a7a8b;
}
/* Flash Area End */

/* Main News Area Starts */
.main{
}
.khabar-main-news {
	position: relative;
	height: 100%;
	min-height: 600px;
	overflow: hidden;
	border-radius: 3px;
}
.khabar-main-lite{
	position: relative;
	height: 100%;
	max-height: 288px;
	overflow: hidden;
	border-radius: 3px;
    margin-bottom: 1rem;
}
.featured .khabar-main-lite{
	position: relative;
	height: 60vh;
	max-height: 400px;
	overflow: hidden;
	border-radius: 3px;
}
.featured .khabar-main-lite{
    padding: 0;
}
.featured .khabar-main-lite:nth-child(4){
	margin-right: 0;
}
.khabar-main-lite:first-child{
	padding: 1rem;
    margin-bottom: 1.5rem;
}
.khabar-main-news > a::before {
	height: 100%;
	width: 100%;
	background: linear-gradient(to bottom,rgba(0,0,0,.2) 30%,#000 80%);
	left: 0;
	bottom: -1px;
	position: absolute;
	content: "";
	border-radius: 3px;
	height: 100%;
	z-index: 1;
}
.khabar-main-lite > a::before {
	height: 100%;
	width: 100%;
	background: linear-gradient(to bottom,rgba(0,0,0,.2) 30%,#000 80%);
	left: 0;
	bottom: -1px;
	position: absolute;
	content: "";
	border-radius: 3px;
	height: 100%;
	z-index: 1;
}
.khabar-main-news > a img {
	transition: all .5s;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	right: 0;
	bottom: 0;
	object-fit: cover;
}
.khabar-main-lite > a img {
	transition: all .5s;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	right: 0;
	bottom: 0;
	object-fit: cover;
}
.khabar-main-news .overlay-news-content {
	position: absolute;
	padding: 30px 35px 25px 40px;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	color: #fff;
	border-radius: 3px;
}
.khabar-main-lite .overlay-news-content {
	position: absolute;
	padding: 30px 35px 25px 40px;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	color: #fff;
	border-radius: 3px;
}
.main-meta{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    opacity: .75;
}
.main-meta .main-author{
    display: flex;
    align-items: center;
    margin-right: 2.5rem;
}
.main-meta .main-author img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
    position: relative;
    margin-right: .5rem;
}
.main-meta .main-date {
	display: flex;
	align-items: center;
}
.main-meta .main-date i {
	padding: .7rem;
	border-radius: 50%;
	margin-right: .5rem;
	background-color: #bb0000ed;
	color: var(--secondary-text);
	font-size: 1.2rem;
}
.khabar-main-news .overlay-news-content h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	-webkit-transition: all .35s ease-in-out;
	-moz-transition: all .35s ease-in-out;
	-ms-transition: all .35s ease-in-out;
	-o-transition: all .35s ease-in-out;
	transition: all .35s ease-in-out;
	line-height: 1.3;
    text-align: center;
    margin-bottom: 1rem;
}
.khabar-main-news a:hover h2 {
	color: #a31313;
}
.khabar-main-lite .overlay-news-content h3 {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	-webkit-transition: all .35s ease-in-out;
	-moz-transition: all .35s ease-in-out;
	-ms-transition: all .35s ease-in-out;
	-o-transition: all .35s ease-in-out;
	transition: all .35s ease-in-out;
	line-height: 1.3;
}
.khabar-main-lite a:hover h3 {
	color: #a31313;
}
.main-khabarhub{
    box-shadow: 0px 5px 2px #3a3a3a1a, 0px 5px 3px #3a3a3a99;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}
.main-khabarhub-img img{
    width: 100%;
    height: 25rem;
    object-fit: cover;
    border-radius: .3rem .3rem 0 0;
}
.main-khabarhub-head{
    background-color: var(--dark-bg);
    padding: 1.5rem 1rem;
    border-radius: 0 0 .125rem .125rem;
}
.main-khabarhub-head h2{
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
}
.main-khabarhub-head h2 a{
    color: #edededed;
}
.main-khabarhub-meta{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    margin-bottom: .5rem;
    font-size: .8rem;
}
.main-khabarhub-meta i{
    padding: .4rem;
    border-radius: 50%;
    margin-right: .5rem;
    background-color: #edededed;
    color: #ad1212cc;
}
.main-khabarhub-meta span{
    color: #cdcdcded;
}
/* Main News Area Ends */

/* Section 1 Begins */
.sec_one{
}
.image-and-detail a{
    color: #6b6b6c;
}
.image-and-detail img{
    width: 100%;
}
.image-and-detail a .detail-data{
    text-align: center;
}
.image-and-detail a .detail-data h3{
    padding: 1rem 1rem 0 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--heading-color);
    transition: all 0.4s ease;
}
.image-and-detail a:hover .detail-data h3{
    color: var(--primary-color);
}

.image-and-detail a .detail-data p{
    text-align: justify;
    padding: 1rem;
    color: #3b3b3c;
}
.detail-meta{
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #6b6b6c;
}

.detail-meta .author i, .detail-meta .date i{
    margin-right: 0.5rem;
    color: #d21312cc;
}
.detail-meta .author, .detail-meta .date{
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}
/* Section 1 Ends */

/* Section 3 Begins */
.sec_two .row .col-lg-3{
    padding: 0 1rem;
}
/* Section 3 Ends */

/* Section 3 Begins */
.sec_three{
}
/* Section 3 Ends */

/* Section 6 Begins */
.sec_six{
    padding-bottom: 5rem;
}
.sec_six .row .col-lg-3{
    padding: 0 1rem;
}
/* Section 6 Ends */

/* Section Interview Begins */
.interview{
    padding-bottom: 5rem;
}
/* Section Interview Ends */

/* Post List - Grid */
.post-list-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}
.post:nth-child(7), .post:nth-child(8){
    border-bottom: none;
}
.post{
    border-bottom: 1px solid #efefef;
}
.post a{
    display: flex;
    gap: 0.5rem;
    color: var(--heading-color);
}
.post-detail{
    padding: 0.75rem 0.5rem;
}
.post a .post-detail h3{
    font-size: 1.1rem;
    line-height: 1.4;
    transition: all 0.4s ease;
}
.post a:hover .post-detail h3{
    color: var(--primary-color);
}
.post figure img{
    width: 12.5rem;
    height: 6rem;
    object-fit: cover;
}
.post figure.thumbnail-small img {
	max-width: 7.5rem;
	height: 6rem;
	object-fit: cover;
}
.post .post-detail .post-meta{
    display: flex;
    align-items: center;
    font-size: 0.78rem;
    color: #6b6b6c;
}
.post-meta i{
    color: #d21312cc;
    margin-right: 0.1rem;
}
/* Post List - Grid - Ends */

/* Post List - Single Column */
.post-list-single-column{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
}
.post-list-single-column .post:nth-child(4){
    border-bottom: none;
}
.post{
    border-bottom: 1px solid #efefef;
}
.post .post-detail .post-meta{
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 0.75rem;
    color: #6b6b6c;
}
.post-meta i{
    color: #d21312cc;
    margin-right: 0.1rem;
}
/* Post List - Single Column - Ends */

/* Post List - Single Column Large */
.post-list-single-column-large{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.post-list-single-column-large .post:nth-child(2){
    border-bottom: none;
}
.post-list-single-column-large .post a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.post-list-single-column-large .post .post-detail h3{
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0 1.5rem;
    text-align: center;
}
.post-list-single-column-large .post figure{
    margin: 0;
}
.post-list-single-column-large .post figure img {
	width: 18rem;
	height: 9rem;
	object-fit: cover;
}
.post-list-single-column-large .post .post-detail .post-meta{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.78rem;
    color: #6b6b6c;
}
.post-meta i{
    color: #d21312cc;
    margin-right: 0.1rem;
}
/* Post List - Single Column Large - Ends */

/* Card Post Starts */
.card-post{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.card-post figure{
    margin: 0;
}
.card-post figure img {
    width: 100%;
	height: 12rem;
	object-fit: cover;
}
.card-post .post-data{
    padding: 1.25rem 0.75rem;
}
.card-post a .post-data h3{
    color: var(--heading-color);
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
    transition: all 0.4s ease;
    max-height: 3.25rem;
    overflow: hidden;
}
.card-post a:hover .post-data h3{
    color: var(--primary-color);
}
/* Card Post Ends */

/* Post With Circular Image Starts */
.post-with-circular-image .circular-posts{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.post-with-circular-image .circular-posts .post-circular{
    width: 25%;
    position: relative;
    padding: 1.5rem 0;
}
.post-with-circular-image .circular-posts .post-circular a{
    color: var(--heading-color);
}
.post-with-circular-image .circular-posts .post-circular .circle-image{
    text-align: center;
    position: absolute;
    left: 4rem;
    top: 0;
}
.post-with-circular-image .circular-posts .post-circular .circle-image img{
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    padding: 0.25rem;
    border: 3px solid #32323211;
    background-color: #fefefe;
}
.post-with-circular-image .post-data{
    margin-top: 2rem;
    width: 100%;
    padding: 7.5rem 0 1rem 0;
    border: 2px solid #32323211;
    border-radius: 1rem;
    text-align: center;
}
.post-with-circular-image .post-data > span {
	border: 2px solid var(--primary-color);
	font-size: 0.75rem;
	line-height: 1;
	border-radius: 1rem;
	padding: 0 1.25rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
	background-color: #fefefe;
}
.post-with-circular-image .post-data h3{
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    min-height: 3.25rem;
    transition: all 0.4s ease;
}
.post-with-circular-image .post-data h3{
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    min-height: 3.25rem;
    transition: all 0.4s ease;
}
.post-circular a:hover .post-data h3{
    color: var(--primary-color);
}
.post-with-circular-image .post-data .post-meta{
    margin-top: 1rem;
    font-size: 0.78rem;
}
/* Post With Circular Image Ends */

/* Footer Begins */
footer{
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--light-white);
}
.footer-company h4{
    font-size: 0.9rem;
    line-height: 1.4;
}
.footer-logo img{
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background-color: #ffffff;
}

.contact li{
    color: var(--light-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
}
.contact li a{
    color: #dedede !important;
}
.contact li i {
	padding: 0.51rem 0.5rem;
	border: 2px solid var(--light-white);
	border-radius: 50%;
}


.personel li, .darta-vivaran li{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}
.personel li i{
    font-size: 1.5rem;
}
.darta-vivaran li i{
    border: 2px solid var(--light-white);
    font-size: 1.3rem;
    padding: 0.75rem;
    border-radius: 50%;
}
.person h4{
    font-size: 1.1rem;
    text-decoration: underline;
    line-height: 1;
}

.copy{
    background-color: #222;
    color: var(--light-white);
    padding: 0.75rem;
}
.siteby a{
    color: #d5d5d5;
    transition: all 0.4s ease;
}
.siteby a:hover{
    color: #fcfcfc;
}

/* Section Heading Starts */
.section_heading {
    margin-bottom: 25px;
    border-bottom: 1px solid #efefef;
    display: block;
    position: relative;
}
.section_heading span:after {
    content: "";
    position: absolute;
    border-bottom: 1px solid var(--primary-color);
    width: 100%;
    left: 0;
    top: 100%;
}
.section_heading span {
    color: #d21312ee;
    font-size: 35px;
    line-height: 58px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.section_heading a:after {
    content: "\f0ca";
    position: absolute;
    font-family: fontawesome;
    font-size: 14px;
    margin-left: 5px;
}
.section_heading a {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    padding: 0 25px;
    position: absolute;
    right: 0;
    top: 30px;
}
/* Section Heading Ends */

/* Back To Top */
#btn-back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	border-radius: 50%;
	padding: .4rem .89rem;
    z-index: 9;
}
/* Back To Top End */

/* Sticky Navbar */
nav.sticky {
	margin-top: 0;
	z-index: 3;
}
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}
/* Sticky Navbar End */

/* Advertisement Area */
.ad{
    margin: 2.5rem 0;
}
.nav-ad.ad{
    margin: 1rem 0;
}
.single.ad{
    margin: 0.75rem 0;
}
.advertisement{
    display: flex;
    flex-direction: row;
    align-items: center;
}
aside .advertisement{
    flex-direction: column;
}
.advertisement a{
    width: 100%;
}
.advertisement a:nth-child(2){
    padding: 0 0.75rem;
}
.advertisement span{
    text-transform: uppercase;
    color: #7a7a7a;
    font-size: 0.65rem;
    font-weight: 500;
}
.advertisement img, .ad img{
    width: 100%;
}
.content-ads {
	display: flex;
	flex-direction: row;
	gap: 0.75rem;
}
.content-ad{
    position: relative;
    text-align: center;
    padding: 0.75rem;
}
.content-ad img{
    padding: 0;
}
.content-ad span{
    font-size: 0.75rem;
    color: #5c5c5c;
}

/* Skip Ad Modal (background) */
.skipAd {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.8);
}
  
/* Modal Content/Box */
.skip-ad-content {
    background-color: #fefefe;
    margin: 5% auto auto auto;
    padding: 0.5rem;
    border-radius: 1.25rem;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
	max-width: 40vw;
}
@media screen and (max-width: 767px){    
    .skip-ad-content {
        background-color: #fefefe;
        margin: 5rem 1rem auto 1rem;
        padding: 0.5rem;
        border-radius: 1.25rem;
        border: 1px solid #888;
        width: 100%; /* Could be more or less, depending on screen size */
        min-width: 90%;
    }
}

/* Popup */
.skip-ad-header {
    display: flex;
    -ms-flex-align: start;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: flex-end;
    padding: 0 1.5rem 1rem 0;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}
.skip-ad-header h3{
    font-size: 1.5rem;
    font-weight: 600;
}
.close-btn {
	background: #bf1b2c;
	border: none;
	border-radius: 1rem;
	padding: .25rem 1rem;
	display: flex;
	align-items: center;
	color: #e9ecef;
    transition: all .3s ease-in-out;
}
.close-btn:hover {
	background: #3b0d0d;
}
.skip-ad-body img{
    width: 100%;
}

/* Single News Area Starts */
.title-area {
	border: 1px solid #ccc6;
	padding: 1.5rem 1rem;
	margin: 0 0 1rem 0;
}
.title-area h1 {
	font-size: 2.75rem;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
	color: #3a3a3a;
	padding: 0 1rem 1rem 1rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid #cccccc20;
    transition: all .6s ease;
}
a:hover .title-area h1{
    color: var(--secondary-color);
}
a:hover .title-area .post-author span, a:hover .title-area .post-date span{
    color: #3a3a3a;
}
.post-meta{
    width: 100%;
    display: flex;
	flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: 1rem;
}

.share-buttons {
	margin-top: 0;
}
.post-datetime{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.post-author{
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}
.post-date{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.post-date i {
	color: var(--primary-color);
	padding: .5rem;
	border-radius: 50%;
	font-size: 1.25rem;
	margin-right: .5rem;
	border: 1px solid var(--bs-border-color-translucent);
}
.post-meta .post-author img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    padding: .125rem;
    border: 1px solid #dfdfdfcc;
    margin-right: .25rem;
}
.single-body{
    display: flex;
    gap: 2rem;
}
.single-body .content{
    width: 72%;
}
.single-body .sidebar{
    width: 28%;
}
.single-body .content img{
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ccc4;
}
.single-body .content p{
    font-size: 1.25rem;
    line-height: 1.6;
    padding: 1rem 0;
    text-align: justify;
}
.fixed-column {
	position: sticky;
	top: 0;
	height: 100%;
}
.list-of-posts li a{
    padding: 0.75rem 0;
    margin: 0.75rem 0;
    border-bottom: 1px solid #ccc7;
}
.main-posts .list-of-posts li:first-child a {
	padding: 0 0 0.75rem 0;
	margin: 0 0 0.75rem 0;
	border-bottom: 1px solid #ccc7;
}
.list-of-posts li:last-child a{
    border-bottom: none;
}
.list-of-posts li a{
    display: flex;
    gap: 1rem;
    align-items: center;
}
.list-of-posts li a img{
    width: 5rem;
    height: 5rem;
    border-radius: 0.3rem;
    object-fit: cover;
}

.list-of-posts li a .postdata h3{
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--heading-color);
    transition: all 0.4s ease;
}
.list-of-posts li a:hover .postdata h3{
    color: var(--primary-color);
}
.post-num span{
    font-size: 2.5rem;
    font-weight: 600;
    color: #8c8c8c;
}

/* Category Page */
.category .col-12.col-lg-3{
    margin: 1rem 0;
}

@media (max-width: 720px){
    nav {
        padding: 1rem 0;
    }
    .logo-ad{
        flex-direction: column;
    }
    #menu-main-menu.menu{
        display: none;
    }
    footer .row .col-12.col-lg-3{
        padding: 1rem;
    }
    footer .row .col-12.col-lg-3:nth-child(2), footer .row .col-12.col-lg-3:nth-child(3), footer .row .col-12.col-lg-3:nth-child(4){
        padding: 1rem 2rem;
    }
    .copy {
        font-size: 0.85rem;
    }

    .flash-post {
        padding: 1.5rem 1rem;
    }
    .flash-post a .title-area h2 {
        font-size: 1.75rem;
        line-height: 1.4;
    }

    .title-area h1 {
        font-size: 1.9rem;
        line-height: 1.4;
        font-weight: 700;
    }
    .title-area .post-meta span{
        font-size: 0.9rem;
    }
    .single-body {
        flex-direction: column;
    }
    .single-body .content {
        width: 100%;
    }
    .single-body .content p{
        padding: 1rem 1.75rem;
    }
    .single-body .sidebar {
        width: 100%;
    }

    /* Related */
    .khabar-main-lite {
        height: 50vh !important;
        max-height: 200px !important;
    }
    .khabar-main-lite .overlay-news-content {
        padding: 1rem 0.75rem 1rem 0.75rem;
    }
    .featured .khabar-main-lite .overlay-news-content h3 {
        font-size: 1.1rem;
    }
    .khabar-main-lite .overlay-news-content h3 {
        font-size: 1.32rem;
    }
    .row.featured{
        padding-right: 0 !important;
    }
    .row.featured .col-6.col-lg-3{
        padding-right: 0;
    }

    .khabar-main-news {
        min-height: 400px;
        margin-right: 0;
    }
    .khabar-main-news .overlay-news-content {
        padding: 1.75rem 0.15rem 1.5rem 0.15rem;
    }
    .khabar-main-news .overlay-news-content h2 {
        font-size: 1.6rem;
    }
    .khabar-main-lite:first-child {
        margin-top: 1rem;
    }

    .card-post {
        margin-bottom: 1.5rem;
    }
    .post-list-grid {
        grid-template-columns: 1fr;
    }
    .post-with-circular-image .circular-posts {
        flex-direction: column;
    }
    .post-with-circular-image .circular-posts .post-circular {
        width: 100%;
    }
}

/* 404 Page */
.section{
    padding: 4rem 2rem;
}
.section .error{
    font-size: 150px;
    color: #008B62;
    text-shadow: 
      1px 1px 1px #00593E,    
      2px 2px 1px #00593E,
      3px 3px 1px #00593E,
      4px 4px 1px #00593E,
      5px 5px 1px #00593E,
      6px 6px 1px #00593E,
      7px 7px 1px #00593E,
      8px 8px 1px #00593E,
      25px 25px 8px rgba(0,0,0, 0.2);
  }
  
  .page{
    margin: 2rem 0;
    font-size: 20px;
    font-weight: 600;
    color: #444;
  }
  
  .back-home{
    display: inline-block;
    border: 2px solid #222;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.75rem 1rem 0.6rem;
    transition: all 0.2s linear;
    box-shadow: 0 15px 15px -11px rgba(0,0,0, 0.4);
    background: #222;
    border-radius: 6px;
  }
  .back-home:hover{
    background: #222;
    color: #ddd;
  }

/* Pagination Starts */
.pagination-container .pagination{
    align-items: center;
    padding: 2rem 0;
}
.pagination-container .pagination .page-numbers {
	color: #323232;
	background-color: #dedede;
	border-radius: 100%;
	margin-right: .2rem;
	width: 1.5rem;
	height: 1.5rem;
	padding: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination-container .pagination .page-numbers.current{
    color: #dedede;
    background-color: #bf1e2e;
    border: 2px solid #ccc;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.pagination-container .pagination .page-numbers.dots{
    color: #323232;
    border: 2px solid #ccc;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.pagination-container .pagination .page-numbers:first-child, .pagination-container .pagination .page-numbers:last-child{
    color: #fefefe;
    background-color: #323232;
    border: 2px solid #ccc;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
/* Pagination Ends */