@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&family=Teko:wght@300..700&display=swap');
*,
*::before,
*::after{
    box-sizing: border-box;
    border: none;
    outline: none !important;
    margin: 0;
    padding: 0;
}
html{
    color-scheme: dark light;
}
@media (prefers-color-scheme: dark) {
    :root{
        /* Colors */
        --primary-color-dark: #1c1c1c;
        --primary-color-light: #212529;
        --secondary-color-dark: #212529;
        --secondary-color-light: #504c4c;
        --black-color-dark: #212529;
        --black-color-light: #504c4c;
        --white-color: #efefef;
        --white-color-light: #dedede;   
    }
}
/* Variables */
:root{
    /* Colors */
    --primary-color-dark: #c91013;
    --primary-color-light: #d82e3f;
    --secondary-color-dark: #0a3c7e;
    --secondary-color-light: #206b94;
    --black-color-dark: #212529;
    --black-color-light: #504c4c;
    --white-color: #efefef;
    --white-color-light: #dedede;
    --bg-2: #f3f3f3;

    /* Font Family */
    --system-ui: system-ui;
    --mukta: "Mukta", sans-serif;

    /* Font Sizes */
    --font-3: 3rem;
    --font-25: 2.5rem;
    --font-2: 2rem;
    --font-18: 1.8rem;
    --font-175: 1.75rem;
    --font-15: 1.5rem;
    --font-14: 1.4rem;
    --font-13: 1.3rem;
    --font-125: 1.25rem;
    --font-1: 1rem;
    --font-09: 0.9rem;
    --font-08: 0.8rem;

    /* Font Weight */
    --bold-900: 900;
    --bold-800: 800;
    --bold-700: 700;
    --bold-600: 600;
    --bold-500: 500;
    --font-400: 400;

    /* Line Heights */
    --line-2: 2;
    --line-18: 1.9;
    --line-18: 1.8;
    --line-17: 1.7;
    --line-16: 1.6;
    --line-15: 1.5;
    --line-14: 1.4;
    --line-13: 1.3;
    --line-12: 1.2;
    --line-11: 1.1;
    --line-1: 1;
}
body{
    margin: 0;
    color: var(--black-color-dark);
    font-family: var(--mukta);
    font-size: var(--font-1);
    line-height: 1.5;
    background-color: #fcfcf7;
}
ul, li {
    list-style: none;
    display: inline;
    margin: 0;
    padding: 0;
}
a,
a:active,
a:focus {
    color: var(--black-color-light);
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .5s;
    -ms-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
}
a:hover{
    color: var(--primary-color-dark);
}
figure{
    margin: 0;
}
img{
    max-width: 100%;
    height: auto;
}
h1,h2,h3,h4,h5{
    color: var(--black-color-dark);
    line-height: var(--line-13);
}
h1{
    font-size: var(--font-3);
    font-weight: var( --bold-800);
    line-height: var(--line-13);
}
h2{
    font-size: var(--font-25);
    font-weight: var( --bold-700);
    line-height: var(--line-13);
}
h3{
    font-size: var(--font-13);
    font-weight: var( --bold-600);
    line-height: var(--line-13);
}
p{
    text-align: justify;
}
/* Selection Properties */
::-moz-selection {
    background: var(--primary-color-dark);
    color: var(--white-color-light);
    text-shadow: none;
}
  
::-webkit-scrollbar {
    background-color: var(--white-color-light);
    width: 8px;
}
  
::-webkit-scrollbar-thumb {
    background-color: var(--primary-color-dark);
}
  
::selection {
    background: var(--primary-color-dark);
    color: var(--white-color-light);
    text-shadow: none;
}

/* Background Colors */
.bg-black-dark{
    background-color: var(--black-color-dark);
}
.bg-black-light{
    background-color: var(--black-color-light);
}
.bg-primary-dark{
    background-color: var(--primary-color-dark);
}
.bg-primary-light{
    background-color: var(--primary-color-light);
}
.bg-secondary-dark{
    background-color: var(--secondary-color-dark);
}
.bg-secondary-light{
    background-color: var(--secondary-color-light);
}
.bg-white-dark{
    background-color: var(--white-color);
}
.bg-white-light{
    background-color: var(--white-color-light);
}
.bg-2{
    background-color: var(--bg-2);
}
/* Colors */
.color-black-dark{
    color: var(--black-color-dark);
}
.color-black-light{
    color: var(--black-color-light);
}
.color-primary-dark{
    color: var(--primary-color-dark);
}
.color-primary-light{
    color: var(--primary-color-light);
}
.color-secondary-dark{
    color: var(--secondary-color-dark);
}
.color-secondary-light{
    color: var(--secondary-color-light);
}
.color-white-dark{
    color: var(--white-color);
}
.color-white-light{
    color: var(--white-color-light);
}

/* Social Buttons */
.social{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.social li a img{
    width: 32px;
}
.social li a{
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all 0.4s ease;
}
.social li a:hover{
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
/* Social Buttons End*/

/* Header */
.top-header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}
.top-header-ad{
    padding: 0.5rem 0;
    text-align: center;
}
.top-header .top-menu{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.mobile-menu .top-menu {
    display: none;
}
.top-header ul li a{
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}
.top-menu li a img, .today-date img{
    width: 24px;
    filter: invert(92%) sepia(98%) saturate(7483%) hue-rotate(0deg) brightness(96%) contrast(104%);    
}
.today-date{
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
header > .container{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}
header .logo img{
    max-width: 320px;
}
.today-date{
    text-align: right;
    margin-top: -0.75rem;
    margin-right: 0.75rem;
}
.today-date span{
    font-weight: 500;
    color: #7a7a7a;
}

/* Navbar */
.menu-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.home-btn img {
	max-width: 24px;
}
nav#navbar .menu > ul > li{
    display: inline-block;
}
nav#navbar .menu > ul > li:not(:last-child){
    margin-right: 2.75rem;
}
nav#navbar .menu a{
    font-size: 1.1rem;
    color: #dedede;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}
nav#navbar .menu .current-menu-item a, nav#navbar .menu a:hover{
    color: #ead318;
}
nav#navbar .menu .dropdown{
    position: relative;
}
nav#navbar .menu > ul > li > a{
    padding: 1.5rem 0;
}
nav#navbar .menu > ul > .dropdown > a{
    padding-right: 1rem;
}
nav#navbar .menu i{
    font-size: 0.75rem;
    pointer-events: none;
    user-select: none;
    color: #dedede;
    position: absolute;
    top: calc(50% - 5px);
}
nav#navbar .menu li > img{
    width: 16px;
    user-select: none;
    position: absolute;
    top: calc(50% - 0.5rem);
    transition: all 0.4s ease;
    cursor: pointer;
}
nav#navbar .menu li img{
    right: 0;
    margin-right: -0.5rem;
}
nav#navbar .menu li:hover > img{
    transform: rotate(180deg);
    right: 0;
}
nav#navbar .menu > ul > li> i{
    right: 0;
}
nav#navbar .menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 9rem;
	background-color: #f1f1f1;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 1px 3px 0px;
	z-index: 1;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
}
nav#navbar .menu .sub-menu-right{
    left: 100%;
    top: 0;
}
nav#navbar .menu li:hover > .sub-menu{
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: all 0.5s ease;
}
nav#navbar .menu .sub-menu a{
    color: var(--black-color-light);
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}
nav#navbar .menu .sub-menu li:hover a{
    background-color: var(--secondary-color-light);
    color: #fcfcfc;
}
nav .menu .sub-menu i{
    transform: rotate(-90deg);
    right: 1.5rem;
}
.search-btn{
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 1rem;
    background-color: #06244b;
    height: 4.25rem;
    padding: 0 1rem;
}
.search-btn img{
    width: 28px;
}
.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:#727272;
    -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
}
.search-area{
    position: relative;
}
.search-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(25px);
    width: 100%;
    background-color: #ffffff;
    padding: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.search-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.search-bar input{
    background: none;
    border: 2px solid #c1c1c1;
    margin: 0;
    padding: 0.75rem 1rem;
    color: #5a5a5a;
    width: 90%;
}
.search-bar button{
    padding: 0.75rem;
    background-color: #06244b;
    transition: all 0.4s ease;
}
.search-bar button:hover{
    background-color: #031225;
}
.search-bar button img{
    width: 32px;
    height: 32px;
}
/* Sidebar Menu */
.sidebar-logo{
    margin: 1.5rem 0;
    padding: 0 1.5rem;
}
.sidebar-menu{
    padding: 0 1.5rem;
    background-color: #06244b;
}
.sidebar-menu > ul > li{
    display: block;
}
.sidebar-menu > ul > li:not(:last-child){
    margin-right: 0;
}
.sidebar-menu li{
    border-bottom: 1px solid #041d3f;
}
.sidebar-menu li:last-child{
    border-bottom: none;
}
.sidebar-menu a{
    font-size: 1.1rem;
    color: var(--white-color);
    font-weight: 500;
    line-height: 1.5;
    display: block;
}
.sidebar-menu .dropdown{
    position: relative;
}
.sidebar-menu > ul > li{
    margin: 0.25rem 0;
}
.sidebar-menu > ul > li > a{
    padding: 0.5rem 0;
}
.sidebar-menu > ul > .dropdown > a{
    padding-right: 2rem;
}
.sidebar-menu > ul > .dropdown > img{
    pointer-events: none;
    user-select: none;
    color: #dedede;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    height: 2rem;
    width: 2rem;
    border: 1px solid #cccccc55;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    padding: 0.25rem;
    transition: all 0.5s ease;
}
.button-rotate{
    transform: rotate(180deg);
}
.sidebar-menu .dropdown.active > .sub-menu{
    display: block;
}
.sidebar-menu .dropdown > .sub-menu{
    display: none;
}
.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(-25%);
      transform: translateY(-25%);
    }
}
  
@keyframes submenu-slide-up {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-25%);
        transform: translateY(-25%);
    }
}
.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(-25%);
      transform: translateY(-25%);
    }
    100% {
      -webkit-transform: translateY(0%);
      transform: translateY(0%);
    }
}
  
@keyframes submenu-slide-down {
    0% {
        -webkit-transform: translateY(-25%);
        transform: translateY(-25%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}
.sub-menu-transition{
    transition: all 0.5s ease;
}
.sidebar-menu .sub-menu li:last-child{
    border: none;
}
.sidebar-menu .sub-menu a{
    padding: 12px 0 12px 15px;
}
.sidebar-menu .sub-menu .sub-menu a{
    padding-left: 2rem;
}
.sidebar-menu .sub-menu .sub-menu .sub-menu a{
    padding-left: 3rem;
}
.sidebar-menu .sub-menu-right{
    left: 100%;
    top: 0;
}
.sidebar-menu .sub-menu span{
    background-image: none;
}
.sidebar-menu .sub-menu i{
    transform: none;
    right: 0;
}
.sidebar-menu li:hover > .sub-menu{
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: all 0.5s ease;
}
.sidebar-menu .sub-menu a{
    padding: 6px 24px;
    font-size: 0.9rem;
}
.sidebar-menu .sub-menu .dropdown > a{
    padding-right: 2rem;
}
.sidebar-menu .sub-menu span{
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}
.sidebar-menu .sub-menu li:hover > a > span{
    background-size: 100% 1px;
}
.sidebar-menu .sub-menu i{
    transform: rotate(-90deg);
    right: 1.5rem;
}

nav.sticky {
	margin-top: 0;
	z-index: 3;
}
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}
.sticky .logo-icon{
	display: flex;
}
.logo-icon{
	display: none;
}
.logo-icon img{
	max-height: 3.25rem;
}
@keyframes bar {
    0% {
      transform:translateX(0)
    }
    50% {
      transform:translateX(100%)
    }
    50.001% {
      transform:translateX(-100%)
    }
    to {
      transform:translateX(0)
    }
}

#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;
}
.mobile-menu {
	height: 100%;
	width: 300px;
	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);
}
}

/* Footer Starts */
footer{
    background-color: #06244b;
    padding: 5rem 0 2.5rem 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
footer .footer{
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
}
.contact .logo{
    margin-bottom: 1.5rem;
}
.contact .logo img{
    max-height: 80px;
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 0.5rem;
}
.contact-details li{
    margin: 0.5rem 0;
}
.contact-details li a{
    display: flex;
    align-items: center;
    color: var(--white-color);
}
.contact-details li a .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    margin-right: 0.75rem;
}
.contact-details li a .icon img{
    width: auto;
}
.member-icon{
    text-align: center;
    margin-right: 0.75rem;
}
.member-icon img{
    width: 1.75rem;
}
.contact-details li a:hover i{
    color: var(--white-color-light);
}
.team .section-heading-wrapper .section-heading {
	font-size: 2.2rem;
	color: var(--white-color-light);
}
.team .section-heading-wrapper::before {
	background: var(--white-color-light);
}
.members{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem 2rem;
    color: var(--white-color);
}
.member-detail h6{
    margin-top: 0.25rem;
    padding-top: 0.25rem;
    border-top: 1px solid var(--white-color-light);
    line-height: 1.5;
}

#menu-footer-menu.menu, .foot-menu > .menu{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 2.5rem;
}
#menu-footer-menu.menu .menu-item, .foot-menu > .menu .menu-item{
    padding: 0.25rem 0;
}
#menu-footer-menu.menu .menu-item a, .foot-menu > .menu .menu-item a{
    color: var(--white-color-light);
	font-size: 0.9rem;
	font-weight: 500;
}
.footer .social{
    gap: 1rem;
}
.footer .social li a{
    border: none;
    border-radius: 50%;
}
.footer .social li a:hover{
    box-shadow: rgba(255, 255, 255, 0.09) 0px 2px 1px, rgba(255, 255, 255, 0.09) 0px 4px 2px, rgba(255, 255, 255, 0.09) 0px 8px 4px, rgba(255, 255, 255, 0.09) 0px 16px 8px, rgba(255, 255, 255, 0.09) 0px 32px 16px;
}
.footer .social li a img{
    width: 2.25rem;
    height: 2.25rem;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.6s ease;
}
.footer .social li a:hover img{
    transform: rotate(360deg);
}
.foot-menu #menu-footer-menu .menu-item.active, .foot-menu > .menu .menu-item.active {
	background-color: transparent;
}
.foot-menu #menu-footer-menu .menu-item.active a, .foot-menu > .menu .menu-item.active a {
    color: var(--primary-color-dark);
}

.doinepal, .pcn{
    padding: 0 1rem;
    text-align: center;
}
.doinepal span, .pcn span{
    display: inline-block;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #ccc3;
}
.doinepal h6, .pcn h6{
    font-size: 1.1rem;
}
.copyright{
    padding: 1rem 0;
    background-color: var(--black-color-dark);
}
.siteby a{
    color: var(--white-color);
}
.qr img{
    max-height: 64px;
}
/* Footer Ends */

/* Back To Top */
#btn-back-to-top {
	position: fixed;
	bottom: 12.5%;
	right: 5%;
	display: none;
	border-radius: 50%;
	padding: 0.55rem .6rem;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
#btn-back-to-top img{
    width: auto;
    height: 30px;
    padding: 0.3rem;
}
/* back To Top End */

/* Advertisements */
.ad img{
    width: 100%;
}
/* Advertisements Ends */

/* Section Heading Starts */
.section-heading-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-heading-wrapper::before {
	content: "";
	left: 0;
	height: 4px;
	background: rgb(238, 238, 238);
	order: 2;
	flex: 1;
}
.section-heading-wrapper .section-heading {
    font-family: "Khand", sans-serif;
    font-weight: 600;
    font-size: 2.25rem;
    letter-spacing: 2px;
	text-align: left;
	color: var(--secondary-color-dark);
	order: 1;
	display: inline-block;
}
.team .section-heading-wrapper .section-heading {
    font-size: 2rem;
    letter-spacing: 1px;
}
.foot-menu{
    min-width: 280px;
}
.foot-menu .section-heading-wrapper .section-heading {
    font-size: 2rem;
    color: var(--white-color-light);
}
.section-heading-wrapper .section-heading span {
	padding-right: 15px;
    display: inline-block;
    position: relative;
}
.section-heading-wrapper ul.options {
	margin: 0;
	padding: 0;
	position: relative;
	padding-left: 7px;
	order: 4;
	display: flex;
	align-items: center;
}
.section-heading-wrapper ul.options li {
	margin-left: 10px;
    display: flex;
    align-items: center;
    font-weight: var(--bold-600);
}
.section-heading-wrapper::after {
	display: block;
	content: "";
	clear: both;
}
/* Section Heading Ends */



/* Flash News */
.flash{
    padding: 1.5rem 0;
}
.flash-news{
    text-align: center;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
}
.flash-news img{
    max-width: 80%;
    max-height: 30rem;
    object-fit: cover;
    margin: 0 auto;
}
span.breaking{
    font-size: 0.9rem;
    color: var(--white-color-light);
    background-color: #041d3f;
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
}
.flash-news a h2{
    font-size: var(--font-3);
    line-height: var(--line-13);
    max-width: 88%;
    margin: 1rem auto 0 auto;
    transition: all 0.4s ease;
    @media (max-width: 768px) {
        font-size: var(--font-175);
    }
}
.flash-news a:hover h2{
    color: #06244b;
}
.flash-meta {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	margin-bottom: 1.5rem;
    color: #7a7a7a;
}
.flash-meta img{
    width: 1.75rem;
    margin-right: 0.3rem;
    filter: invert(92%) sepia(98%) saturate(7483%) hue-rotate(0deg) brightness(96%) contrast(104%);
    opacity: 0.68;
}
/* Flash News End */

/* Issue Section Begins */
.issue{
    padding: 1.5rem 4rem 0 4rem;
    margin-bottom: 1.5rem;
    @media (max-width: 768px) {
        padding: 0.5rem;
    }
    .row{
        .col-12{
            padding-bottom: 1.5rem;
            .khabar-main-news {
                min-height: 520px;
                margin-right: 0;
                .overlay-news-content{
                    text-align: center;
                    span.issue {
                        font-size: 0.9rem;
                        color: var(--white-color-light);
                        background-color: var(--primary-color-light);
                        padding: 0.25rem 1rem;
                        border-radius: 0.25rem;
                    }
                    h2{
                        margin-top: 1rem;
                        font-size: var(--font-25);
                        @media (max-width: 768px) {
                            font-size: var(--font-2);
                            padding-top: 1rem;
                        }
                    }
                }
            }
        }
        .col-lg-6{
            .khabar-main-news {
                min-height: 396px;
                margin-right: 0;
                .overlay-news-content{
                    text-align: center;
                    span.issue {
                        font-size: 0.9rem;
                        color: var(--white-color-light);
                        background-color: var(--primary-color-light);
                        padding: 0.25rem 1rem;
                        border-radius: 0.25rem;
                    }
                    h2{
                        margin-top: 1rem;
                        font-size: 1.75rem;
                    }
                }
            }
        }
    }
}
/* Issue Section Ends */


/* Highlights Begins */
.highlights{
    padding: 4rem 0;
    @media (max-width: 768px) {
        padding: 1.5rem 0;
    }
    
    .highlight-post{
        background-color: #06244b;
        border-radius: 1rem;
        overflow: hidden;
        margin: 1rem 0;
        box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
        
        a{
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
            @media (max-width: 768px) {
                flex-direction: column;
                gap: 0.5rem;
            }

            figure img{
                width: 100%;
                transition: all 0.5s ease;
                height: 25rem;
                width: 36rem;
                object-fit: cover;
                @media (max-width: 768px) {
                    height: 15rem;
                    object-fit: cover;
                }
            }
            .post-meta{
                width: 50%;
                padding: 1rem 2rem;
                transition: all 0.5s ease;
                @media (max-width: 768px) { 
                    padding: 1.5rem 2rem; 
                    width: 100%;
                }
                
                .breaking-inverse {
                    font-size: 0.9rem;
                    color: #06244b;
                    background-color: var(--white-color-light);
                    padding: 0.25rem 1rem;
                    border-radius: 0.25rem;
                }
                h2{
                    font-size: var(--font-175);
                    color: var(--white-color-light);
                    margin: 1.5rem 0 1rem 0;
                    @media (max-width: 768px) {
                        font-size: 1.4rem;
                        font-weight: var(--bold-600);
                    }
                }
                p{
                    color: #b9b9b9;
                    @media (max-width: 768px) {
                        display: none;
                    }
                }
            }
            &:hover{
                figure img{
                    transform: scale(1.01);
                    @media (max-width: 768px) {
                        transform: scale(1.1);
                    }
                }
                .post-meta{
                    transform: translateY(1rem);
                    @media (max-width: 768px) {
                        transform: translateY(0.5rem);
                    }
                }
            }
        }
    }
}
/* Highlights Ends */

/* Main Posts Begins */
.main-posts{
    padding: 1.5rem 0 4rem 0;
}
.khabar-main-news {
	position: relative;
	height: 100%;
	min-height: 600px;
    max-height: 600px;
	overflow: hidden;
	border-radius: 3px;
    margin-right: 1rem;
    @media (max-width: 768px) {
        margin-right: 0;
        min-height: 400px;
        max-height: 400px;
    }
    
    a::before {
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom,rgba(0,0,0,.2) 30%,#000 80%);
        left: 0;
        bottom: -1px;
        position: absolute;
        content: "";
        border-radius: 3px;
        z-index: 1;
    }
    a img {
        transition: all .5s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        right: 0;
        bottom: 0;
        object-fit: cover;
    }
    a:hover .overlay-news-content h2{
        color: var(--primary-color-dark);
    }
    .overlay-news-content {
        position: absolute;
        padding: 30px 35px 25px 40px;
        left: 0;
        bottom: 0;
        z-index: 1;
        width: 100%;
        color: #fff;
        border-radius: 3px;
        @media (max-width: 768px){
            padding: 1.5rem 1.5rem 1.3rem 1.5rem;
        }

        .main-meta{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            opacity: .75;

            .main-author{
                margin-right: 2.5rem;
                @media (max-width: 768px){
                    margin-right: 1.25rem;
                }
                
                img {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    position: relative;
                    margin-right: .5rem;
                }
            }
            .main-date {
                display: flex;
                align-items: center;
                
                img {
                    width: 20px;
                    height: 20px;
                    border-radius: 50%;
                    position: relative;
                    margin-right: .25rem;
                }
            }
        }
        h2 {
            color: #fff;
            font-size: 2rem;
            font-weight: 700;
            -webkit-transition: all .4s ease-in-out;
            -moz-transition: all .4s ease-in-out;
            -ms-transition: all .4s ease-in-out;
            -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            line-height: 1.3;
            text-align: center;
            margin-bottom: 1rem;
            @media (max-width: 768px) {
                font-size: var(--font-175);
            }
        }
    }
}
/* Main Posts Ends */

/* Post List */
.post-list{
    .post{
        a{
            display: flex;
            justify-content: space-around;
            gap: 1.5rem;
            margin: 0.75rem 0 0.75rem 0;
            padding: 0.75rem 0 0.75rem 0;
            border-bottom: 1px solid #dadada55;
            @media (max-width: 768px) {
                gap: 1rem;
            }
            figure{
                img{
                    width: 10rem;
                    max-width: 10rem;
                    height: 7.5rem;
                    object-fit: cover;
                    @media (max-width: 768px) {
                        width: 7.5rem;
                        height: 7.5rem;
                    }
                }
            }
            .post-data{
                h3{
                    transition: all 0.5s ease;
                    @media (max-width: 768px) {
                        font-size: var(--font-125);
                        font-weight: var(--bold-600);
                    }
                }
                .post-meta{
                    display: flex;
                    align-items: center;
                    gap: 1.5rem;
                    margin-top: 0.5rem;
                    @media (max-width: 768px){
                        gap: 0.75rem;
                    }
                    img {
                        width: 1.1rem;
                        margin-right: 0.3rem;
                        filter: invert(92%) sepia(98%) saturate(7483%) hue-rotate(0deg) brightness(96%) contrast(104%);
                        opacity: 0.68;
                        @media (max-width: 768px){
                            width: 0.75rem;
                            margin-right: 0;
                        }
                    }
                    span{
                        font-size: 0.8rem;
                        color: var(--black-color-light);
                        @media (max-width: 768px){
                            font-size: 0.715rem;
                        }
                    }
                    .author img{
                        width: 1.4rem;
                        margin-right: 0.1rem;
                        @media (max-width: 768px){
                            width: 0.9rem;
                            margin-right: 0;
                        }
                    }
                }
            }
        }
        a:hover{
            .post-data{
                h3{
                    color: var(--secondary-color-dark);
                }
                .post-meta{
                    span{
                        color: var(--black-color-light);
                    }
                }
            }
        }
    }
    .post:first-child{
        a{
            margin-top: 0;
            padding-top: 0;
            @media (max-width: 768px) {
                margin-top: 1rem;
                padding-top: 1rem;
            }
        }
    }
    .post:last-child{
        a{
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
    }
}
/* Post List Ends */

/* Large Posts Starts */
.large-posts{
    padding-bottom: 1.5rem;
    .section-heading-wrapper{
        margin-bottom: 1.5rem;
    }
    .large-post{
        margin-bottom: 2.5rem;
        a{
            display: flex;
            align-items: center;
            gap: 2rem;
            color: var(--black-color-light);
            @media (max-width: 768px) {
                gap: 1rem;
                flex-direction: column;
                background-color: #f4f4f4;
            }

            figure{
                img{
                    min-width: 24rem;
                    height: 20rem;
                    object-fit: cover;
                    @media (max-width: 768px) {
                        min-width: 100%;
                    }
                }
            }
    
            .post-content{
                width: 60%;
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                @media (max-width: 768px) {
                    width: 100%;
                    padding: 1rem;
                    margin-left: auto;
                    margin-right: auto;
                }
                h2{
                    font-size: var(--font-18);
                    font-weight: var(--bold-600);
                    transition: all 0.5s ease;
                    @media (max-width: 768px) {
                        font-size: var(--font-14);
                        text-align: center;
                    }
                }
                .post-meta{
                    display: flex;
                    align-items: center;
                    gap: 1.5rem;
                    margin-bottom: 1rem;
                    @media (max-width: 768px){
                        justify-content: center;
                    }
                    img {
                        width: 1.1rem;
                        margin-right: 0.3rem;
                        filter: invert(92%) sepia(98%) saturate(7483%) hue-rotate(0deg) brightness(96%) contrast(104%);
                        opacity: 0.68;
                    }
                    span{
                        font-size: 0.8rem;
                        color: var(--black-color-light);
                    }
                    .author img{
                        width: 1.4rem;
                        margin-right: 0.1rem;
                    }
                }
                .excerpt{  
                    padding-right: 1.5rem;                  
                    @media (max-width: 768px) {
                        display: none;
                    }
                }
            }
        }
        & a:hover{
            .post-content{
                h2{
                    color: var(--secondary-color-dark);
                }
            }
        }
    }
}
.medium-posts {
    .medium-post {
        margin-bottom: 1.5rem;
        padding-right: 1rem;
        @media (max-width: 768px) {
            padding-right: 0;
        }
        a{
            & figure{
                & img{
                    width: 100%;
                    height: 10rem;
                    object-fit: cover;
                }
            }
            .post-content {
                .title {
                    h3 {
                        padding: 0.75rem 0 0 0;
                        text-align: center;
                        transition: all 0.5s ease;
                        @media (max-width: 768px) {
                            font-size: 1.1rem;
                        }
                    }
                }
    
                .post-meta {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 1.5rem;
                    margin-bottom: 1rem;
                    @media (max-width: 768px) {
                        gap: 0.75rem;
                    }

    
                    img {
                        width: 1.1rem;
                        margin-right: 0.3rem;
                        filter: invert(92%) sepia(98%) saturate(7483%) hue-rotate(0deg) brightness(96%) contrast(104%);
                        opacity: 0.68;
                        @media (max-width: 768px) {
                            width: 0.9rem;
                            margin-right: 0.1rem;
                        }
                    }
    
                    span {
                        font-size: 0.8rem;
                        color: var(--black-color-light);
                        @media (max-width: 768px) {
                            font-size: 0.76rem;
                        }
                    }
    
                    .author img {
                        width: 1.4rem;
                        margin-right: 0.1rem;
                    }
                }
            }

        }
        & a:hover{
            .post-content{
                h3{
                    color: var(--secondary-color-dark);
                }
            }
        }
    }
}
.medium-posts .row .col-6.col-lg-4.col-md-4:last-child{  
    display: none;  
    @media (max-width: 768px) {
        display: block;
    }
}
/* Large Posts Ends */

/* List of Posts */
.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;
    transition: all 0.5s ease;
}

.list-of-posts li a:hover .postdata h3{
    color: var(--secondary-color-dark);
}
.post-num span{
    font-size: 2.5rem;
    font-weight: 600;
    color: #8c8c8c;
}
/* List of Posts Ends */

/* Grid Posts Begins */
.post-grid{
    background-color: #f3f3f3;
    padding: 4rem 0;
    .grid-posts{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 1.5rem;
        @media (max-width:768px){
            grid-template-columns: 1fr;
        }
        .post{
            a{
                display: flex;
                justify-content: space-around;
                gap: 1.5rem;
                margin: 0.75rem 0 0.75rem 0;
                padding: 0.75rem 0 0.75rem 0;
                @media (max-width: 768px) {
                    gap: 1rem;
                }
                figure{
                    img{
                        width: 10rem;
                        max-width: 10rem;
                        height: 7.5rem;
                        object-fit: cover;
                        @media (max-width: 768px) {
                            width: 7.5rem;
                            height: 7.5rem;
                        }
                    }
                }
                .post-data{
                    h3{
                        transition: all 0.5s ease;
                        @media (max-width: 768px) {
                            font-size: var(--font-125);
                            font-weight: var(--bold-600);
                        }
                    }
                    .post-meta{
                        display: flex;
                        align-items: center;
                        gap: 1.5rem;
                        margin-top: 0.5rem;
                        @media (max-width: 768px){
                            gap: 0.75rem;
                        }
                        img {
                            width: 1.1rem;
                            margin-right: 0.3rem;
                            filter: invert(92%) sepia(98%) saturate(7483%) hue-rotate(0deg) brightness(96%) contrast(104%);
                            opacity: 0.68;
                            @media (max-width: 768px){
                                width: 0.75rem;
                                margin-right: 0;
                            }
                        }
                        span{
                            font-size: 0.8rem;
                            color: var(--black-color-light);
                            @media (max-width: 768px){
                                font-size: 0.715rem;
                            }
                        }
                        .author img{
                            width: 1.4rem;
                            margin-right: 0.1rem;
                            @media (max-width: 768px){
                                width: 0.9rem;
                                margin-right: 0;
                            }
                        }
                    }
                }
            }
            a:hover{
                .post-data{
                    h3{
                        color: var(--secondary-color-dark);
                    }
                    .post-meta{
                        span{
                            color: var(--black-color-light);
                        }
                    }
                }
            }
        }
        .post:first-child{
            a{
                @media (max-width: 768px) {
                    margin-top: 1rem;
                    padding-top: 1rem;
                }
            }
        }
        .post:last-child{
            a{
                margin-bottom: 0;
                padding-bottom: 0;
                border-bottom: none;
            }
        }
    }
}
/* Grid Posts Ends */

/* Multi Column Post Begins */
.multi-column{
    .container{
        .row{
            .col-lg-6:first-child{
                padding-right: 2.5rem;
                @media (max-width: 768px) {
                    padding-right: 0;
                }
            }
            .col-lg-6:last-child{
                padding-right: 0;
                padding-left: 2.5rem;
                @media (max-width: 768px) {
                    padding-left: 0.75rem;
                }
            }
        }
    }
}
.multi-column-featured{
    padding: 0 0 0.5rem 0;
    @media (max-width: 768px) {
        padding: 1.5rem 0;
    }
    
    .highlight-post{
        background-color: #06244b;
        border-radius: 1rem;
        overflow: hidden;
        margin: 1rem 0;
        box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
        @media (max-width: 768px){
            margin: 0 1rem 0 0;
        }
        
        a{
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0;
            @media (max-width: 768px) {
                flex-direction: column;
                gap: 0.5rem;
            }

            figure img{
                width: 100%;
                height: 15rem;
                object-fit: cover;
                transition: all 0.5s ease;
                @media (max-width: 768px) {
                    height: 12rem;
                    object-fit: cover;
                }
            }
            .post-meta{
                width: 74%;
                padding: 1rem 2rem;
                transition: all 0.5s ease;
                margin-top: 0.15rem;
                @media (max-width: 768px) { 
                    padding: 1.25rem 1.75rem; 
                    width: 100%;
                }
                
                .breaking-inverse {
                    font-size: 0.9rem;
                    color: #06244b;
                    background-color: var(--white-color-light);
                    padding: 0.25rem 1rem;
                    border-radius: 0.25rem;
                }
                h2{
                    font-size: var(--font-14);
                    color: var(--white-color-light);
                    margin: 1.5rem 0 1rem 0;
                    max-height: 9rem;
                    overflow: hidden;
                    @media (max-width: 768px) {
                        font-size: 1.3rem;
                        font-weight: var(--bold-600);
                    }
                }
                p{
                    color: #b9b9b9;
                    @media (max-width: 768px) {
                        display: none;
                    }
                }
            }
            &:hover{
                figure img{
                    transform: scale(1.01);
                    @media (max-width: 768px) {
                        transform: scale(1.1);
                    }
                }
                .post-meta{
                    transform: translateY(1rem);
                    @media (max-width: 768px) {
                        transform: translateY(0.5rem);
                    }
                }
            }
        }
    }
}
.multi-column{
    .post-grid{
        padding: 0;
        .grid-posts{
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 0.75rem;
            @media (max-width:768px){
                grid-template-columns: 1fr;
            }
            .post{
                a{
                    gap: 0.75rem;
                    margin: 0.5rem 0 0.5rem 0;
                    padding: 0.5rem 0 0.5rem 0;
                    @media(max-width: 768px){
                        margin-right: 0.25rem;
                        padding-right: 0.25rem;
                    }
                    figure{
                        & img {
                            width: 7.5rem;
                            max-width: 7.5rem;
                            height: 6rem;
                            object-fit: cover;
                        }
                    }
                    & .post-data{
                        h3{
                            font-size: 1.2rem;
                        }
                    }
                }
            }
        }
    }
}
/* Multi Column Post Ends */

/* Interview Section Begins */
.inter-view{
    padding: 2.5rem 0;
    .int-main{
        margin-bottom: 1.5rem;
        .main-interview{
            display: flex;
            @media (max-width: 720px){
                flex-direction: column;
            }
            figure{
                width: 50%;
                @media (max-width: 720px){
                    width: 100%;
                }
                img{
                    height: 20rem;
                    @media (max-width: 720px){
                        height: 15rem;
                        object-fit: cover;
                    }
                }
            }
            .postdata{
                width: 50%;
                padding: 3.5rem 2rem 2rem 2rem;
                background: linear-gradient(to right,#004863,#4376a5);
                color: var(--white-color-light);
                position: relative;
                @media (max-width: 720px){
                    width: 100%;
                    padding: 1.5rem 2rem 2rem 2rem;
                }
                h3{
                    color: var(--white-color);
                    font-size: 1.75rem;
                    margin-bottom: 1rem;
                }
                .excerpt{
                    @media (max-width: 720px){
                        display: none;
                    }
                }
            }
            .postdata > *{
                width: 86%;
            }
            .postdata::before{
                content: url("../svg/right-quotation-mark.png");
                position: absolute;
                top: 1rem;
                right: 1rem;
                opacity: 0.5;
            }
        }
    }
    .int-more{
        display: flex;
        gap: 1.5rem;
        @media (max-width: 768px) {
            flex-direction: column;
            margin-bottom: 2.5rem;
        }
        li{
            width: 33.33%;
            @media (max-width: 768px) {
                width: 96%;
                margin-left: auto;
                margin-right: auto;
            }
            article{
                @media (max-width: 768px) {
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                }
                figure{
                    img{
                        width: 100%;
                        height: 12rem;
                        object-fit: cover;
                        @media (max-width: 768px) {
                            width: 100%;
                            min-width: 8rem;
                            height: 6rem;
                            object-fit: cover;
                        }
                    }
                }
                h3{
                    padding: 0.5rem;
                }
            }
        }
    }
    .blog-posts{
        li{
            a{
                .blog-post{
                    padding: 1.25rem 0;
                    margin: 1.25rem 0;
                    border-bottom: 1px solid #5a5a5a22;
                    display: flex;
                    gap: 0.75rem;
                    @media (max-width: 768px) {
                        padding: 1rem 0;
                        margin: 1rem 0;
                    }
                    img{
                        width: 5rem;
                        height: 5rem;
                        object-fit: cover;
                        border-radius: 50%;
                    }
                    .post-meta{
                        .author{
                            img{
                                width: 16px;
                                height: 16px;
                                filter: invert(92%) sepia(98%) saturate(7483%) hue-rotate(0deg) brightness(96%) contrast(104%);
                                border-radius: 0;
                            }
                        }
                    }
                }
            }
        }
        li:first-child{
            .blog-post{
                padding-top: 1rem;
                margin-top: 1rem;
            }
        }
        li:last-child{
            .blog-post{
                border-bottom: none;
            }
        }
    }
}
/* Interview Section Ends */

/* Entertainment Section */
.entertainment{
    padding: 5rem 0;
    background: #06243e url("../img/artboard.svg") no-repeat left top;
    background-size: cover;    
    .col-12.col-lg-6{
        @media (max-width: 768px) {
            margin-bottom: 1.5rem;
        }
    }
}
.entertainment .section-heading-wrapper .section-heading {
	color: var(--white-color);
}
.entertainment .section-heading-wrapper .options a {
	color: var(--white-color-light);
}
.entertainment .khabar-main-news {
    min-height: 420px;
}
.entertainment .khabar-main-news.main-news-lite .overlay-news-content h2{
    font-size: var(--font-14);
}
.entertainment .khabar-main-news.main-news-lite .overlay-news-content .main-meta .main-date{
    img{
        width: 16px;
        height: 16px;
        border-radius: 50%;
        position: relative;
        margin-right: .25rem;
    }
    span{
        font-size: 0.8rem;
    }
}
/* Entertainment Section Ends */

/* Single Page Begins */
#sticky-title{
    display: none;
    .container{
        .title{
            padding: 1rem 0;
            h2{
                font-size: 2.25rem;
            }
        }
    }
}
#sticky-title.title-sticky {
	display: flex;
	position: fixed;
	top: 4.6rem;
	width: 100%;
	background-color: #efefef;
	padding: 0;
	z-index: 2;
}
.title-ad{
    padding: 1.5rem 0;
    img{
        width: 100%;
    }
}
.single-title{
    .title-area{
        padding: 1rem 0 1.5rem 0;
        span.issue {
            font-size: 0.9rem;
            color: var(--white-color-light);
            background-color: var(--primary-color-light);
            padding: 0.25rem 1rem;
            border-radius: 0.25rem;
        }
        h1{
            margin-top: 1rem;
            font-size: 3.75rem;
            color: #2a2a2a;
            @media (max-width: 768px) {
                font-size: 2.25rem;
                padding: 1rem 0;
            }
        }
        h3{
            border-top: 1px solid #cccc;
            margin-top: 0.75rem;
            padding-top: 1.5rem;
            color: #5a5a5a;
        }
    }
}
.single-metabox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px dashed #7a7a7a;
    border-bottom: 1px dashed #7a7a7a;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    @media (max-width: 720px){
        flex-direction: column;
    }

    .single-meta {
        display: flex;
        flex-direction: row;
        align-items: center;
        opacity: .75;

        .single-author {
            margin-right: 2.5rem;

            img {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                position: relative;
                margin-right: .5rem;
            }
        }

        .single-date {
            display: flex;
            align-items: center;

            img {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                position: relative;
                margin-right: .25rem;
                filter: invert(92%) sepia(98%) saturate(7483%) hue-rotate(0deg) brightness(96%) contrast(104%);
            }
        }
    }
}
.featured-image{
    margin: 1.5rem 0;
    background-color: #dadada;
    text-align: center;
}
.content-ad{
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem 0;
    margin: 0.75rem 0;
    border-top: 1px solid #cccc;
    border-bottom: 1px solid #cccc;
}
.description{
    display: flex;
    gap: 1.5rem;
    .side-meta{
        @media (max-width: 768px) {
            display: none;
        }
        width: 20%;
        .author{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            border-bottom: 1px solid #cccc;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            img{
                width: 3rem;
                height: 3rem;
                border-radius: 50%;
                object-fit: cover;
            }
            span{
                color: #5a5a5a;
            }
        }
        .date{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            img{
                width: 1rem;
                height: 1rem;
                border-radius: 50%;
                object-fit: cover;
                filter: invert(92%) sepia(98%) saturate(7483%) hue-rotate(0deg) brightness(96%) contrast(104%);
            }
            span{
                color: #5a5a5a;
                font-size: 0.9rem;
            }
        }
    }
    .content{
        width: 80%;
        @media (max-width: 768px) {
            width: 100%;
        }
        p{
            font-size: 1.25rem;
            line-height: 1.6;
        }
    }
}
.fixed-column {
	position: sticky;
	top: 10rem;
	height: 100%;
}
.about-author{
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    .heading{
        margin-bottom: 1rem;
        @media (max-width: 768px) {
            margin-bottom: 0.75rem;
        }
        h3{
            font-size: 1.6rem;
            color: #bf1e2e;
            @media (max-width: 768px) {
                font-size: 1.4rem;
            }
        }
    }
    .user-details{
        display: flex;
        gap: 1.5rem;
        img{
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            object-fit: cover;
        }
        .details{
            h4{
                font-size: 1.25rem;
                font-weight: 700;
                @media (max-width: 768px) {
                    font-size: 1.1rem;
                }
            }
            p{
                color: #5f5f5f;
            }
            .more-link{
                position: relative;
                a{
                    font-size: 1.075rem;
                    font-weight: 600;
                    color: #bf1e2e;
                }
                a::before {
                    width: 35px;
                    content: "";
                    position: absolute;
                    top: 100%;
                    left: 0;
                    background: #bf1e2e;
                    height: 2px;
                    transition: all .1s ease-in-out;
                }
                a:hover:before {
                  width:86px;
                }
            }
        }
    }
}
/* Featured News */
.khabar-main-lite{
	position: relative;
	height: 100%;
	max-height: 240px;
	overflow: hidden;
	border-radius: 3px;
    margin-bottom: 1rem;
}
.featured .khabar-main-lite{
	position: relative;
	height: 60vh;
	max-height: 400px;
	overflow: hidden;
	border-radius: 3px;
}
.khabar-main-lite > a h3{
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    transition: all .3s ease;
    color: var(--white-color-light);
    
    @media (max-width: 720px){
        font-size: 1.1rem;
    }
}
.khabar-main-lite > a:hover h3{
    color: var(--primary-color-light);
}
.khabar-main-lite > a::before {
	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 img {
	transition: all .5s;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	right: 0;
	bottom: 0;
	object-fit: cover;
}
.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;
}
/* Single Page Ends */

/* Category Page Area Begins */
.category-main a{
    display: flex;
    align-items: center;
    position: relative;
}
.category-main a p{
    color: #6b6b6b;
    line-height: 1.6;
}
.category-main a .ft-image{
    min-width: 40%;
}
.category-main a .ft-image img{
    border-radius: 1rem;
    height: 25rem;
    object-fit: cover;
    width: 100%;
}
.author-date{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.author-date .author img{
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    padding: 0.2rem;
    border: 2px solid #ccc7;
    margin-right: 0.5rem;
}
.date i{
    color: var(--primary-color-dark);
}
.author-date .author span, .author-date .date span{
    color: #5a5a5a;
    font-size: 0.9rem;
}
.author-date .date img{
    width: 1rem;
    height: 1rem;
    filter: invert(92%) sepia(98%) saturate(7483%) hue-rotate(0deg) brightness(96%) contrast(104%);
}
.ft-content{
    background-color: #f5f5f5;
    padding: 2.5rem;
    border-radius: 1rem;
    margin-left: -2rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.ft-title h2{
    font-weight: 600;
    line-height: 1.5;
}
.epaper-container .ft-title h2{
    margin-top: 1rem;
}
.ft-title span{
    background-color: var(--primary-color-dark);
    color: var(--white-color-light);
    padding: 0.1rem 1rem;
    font-size: 0.8rem;
    border-radius: 0.75rem;
    text-align: center;
}
.ft-content .meta-data{
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ccc4;
}
.category-news-card{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin: 1.5rem 0;
}
.category-news-card img{
    width: 100%;
    height: 12.5rem;
    object-fit: cover;
}
.card-details{
    background: #f9f9f9;
    padding: 0.75rem 0.5rem;
    border-radius: 0.25rem;
}
.card-details h3{
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0.5rem 0;
    text-align: center;
}
.card-details i{
    font-size: 0.8rem;
    color: #db7878;
    
}
.card-details span{
    font-size: 0.8rem;
    color: #7a7a7a;
}
.epaper-container .ft-image img{
    width: 100%;
    height: 15rem !important;
    object-fit: cover;
    object-position: left top;
}
.epaper-container .category-news-card img {
    object-position: left top;
}
/* Category Page Area Ends */

/* 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: var(--primary-color-dark);
    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 */

/* Advertisement Styles */
.top-header-ads a img{
    margin: 0.25rem 0;
}
.content-ads {
	display: flex;
	flex-direction: row;
}
.content-ad{
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    padding: 0.5rem;
}
.content-ad img{
    padding: 0;
}
.content-ad span{
    font-size: 0.75rem;
    color: #5c5c5c;
}
.advertisement.flex-column a img{
    margin-bottom: 1rem;
    width: 100%;
}
/* 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(250,250,250);
}
  
/* Modal Content/Box */
.skip-ad-content {
    background-color: rgb(250,250,250);
    margin: 3.5% auto auto auto;
    padding: 0.5rem;
    border-radius: 1.25rem;
    width: 50%;
	max-width: 40vw;
}
@media screen and (max-width: 767px){
    .skip-ad-content{
        width: 100%;
        max-width: 100%;
        margin: 7.5rem auto auto auto;
    }
}

/* Popup */
.skip-ad-header {
    display: flex;
    -ms-flex-align: start;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: center;
    padding: 0 1.5rem 1rem 0;
    margin-bottom: 1rem;
    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;
}
.skip-ad-body{
    position: relative;
}
.skip-ad-body .close-btn{
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
}
.close-btn {
	background: #bf1b2c;
	border: none;
	border-radius: 50%;
	padding: .3rem;
	display: flex;
	align-items: center;
    justify-content: center;
	color: #e9ecef;
    transition: all .3s ease-in-out;
}
.close-btn:hover {
	background: #3b0d0d;
}
.close-btn img{
    width: 1rem;
    height: 1rem;
}
/* Advertisement Area Ends */

.wp-post-image {
	max-width: 100%;
	height: auto;
	background: #dadada;
}


/* Media Queries */
@media(max-width:720px){
    .top-header .container{
        flex-direction: column;
        gap: 1rem;
    }
    .top-header .container {
        margin: 0.75rem 0 0 0;
    }
    .mobile-menu .top-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 0.5rem 0.75rem;
    }
    .mobile-menu .social{
        margin-bottom: 2rem;
    }
    .top-header .top-menu{
        display: none;
    }
    ul.top-menu li a img, .today-date img {
        width: 18px;
    }
    ul.top-menu li a{
        font-size: 0.9rem;
    }
    header > .container {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
    .home-btn{
        margin-left: 0.75rem;
    }
    .home-btn img {
        max-width: 2rem;
    }
    nav .menu{
        display: none;
    }
    nav.sidebar-menu .menu{
        display: block;
    }
    .column{
        flex-direction: column !important;
    }
    .search-bar {
        padding: 1rem;
    }
    .search-bar input {
        padding: 0.5rem 0.75rem;
        width: 80%;
    }
    .search-bar button {
        padding: 0.5rem;
    }
    footer .footer {
        gap: 2rem;
        flex-direction: column;
    }
    footer .footer > * {
        padding: 0 1rem;
    }
    footer .footer > .team{
        padding: 1rem 0;
    }
    footer .footer > .foot-menu{
        width: 100%;
    }
    .member-icon img {
        width: 1.5rem;
    }
    .member-detail h6 {
        font-size: 0.98rem;
    }
}
/* Media Queries End */