@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'GC Georgia Demo';
    src: url(../fonts/GC\ Georgia\ Demo.ttf);
}

@font-face {
    font-family: 'Creato Display';
    src: url(../fonts/CreatoDisplay/CreatoDisplay-Bold.otf),
        url(../fonts/CreatoDisplay/CreatoDisplay-ExtraBold.otf),
        url(../fonts/CreatoDisplay/CreatoDisplay-Light.otf),
        url(../fonts/CreatoDisplay/CreatoDisplay-Medium.otf),
        url(../fonts/CreatoDisplay/CreatoDisplay-Regular.otf);
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*:focus,
*:focus-visible {
    outline: none;
}

:root {

    --transition-05s: all ease-in-out 0.5s;

    /* --font-gc-georgia: "GC Georgia Demo", sans-serif; */
    /* --font-creato-display: "Creato Display", sans-serif; */

    --main-color: #2d6f3f;
    /* rgb(0, 174, 239, 1); */
    --second-color: 255, 203, 5;
    /* rgba(255, 203, 5, 1) */
    --black-color: 0, 0, 0;
    /* rgb(0, 0, 0); */
    --white-color: 255, 255, 255;
    /* rgb(255, 255, 255); */

}

body {
    font-family: "Noto Serif", serif;
    background: url(../media/images/body-bg.png) no-repeat center center / cover;
    min-height: 100dvh;
    height: 100%;
}

/* ul,
ol {
    margin: 0%;
    padding: 0%;
} */

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

/* .row {
    gap: 24px 0px;
} */

/*<======================= Common Css ===============>*/
.common-section {
    padding: 40px 0px;
}

.common-head {
    text-align: center;
    width: 50%;
    margin: auto;
    margin-bottom: 40px;
}

.common-head h3 {
    color: #13181f;
    font-size: 38px;
    font-weight: 600;
    text-transform: capitalize;
}

.common-head p {
    color: #54585a;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 28px;
}

.common-btn {
    font-family: var(--font-creato-display);
    background-color: var(--main-color);
    border-radius: 0px;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 700;
    width: fit-content;
    transition: var(--transition-05s);
    color: rgba(var(--white-color), 1);
    position: relative;
    border: 1px solid transparent;
    transform: scale(1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.common-btn span {
    color: rgba(var(--second-color), 1);
}

.common-btn.second-slide-btn {
    background-color: rgba(var(--second-color), 1);
    color: rgba(var(--black-color), 1);
}

.common-btn.second-slide-btn span {
    color: rgba(var(--black-color), 1);
}

.common-btn:hover {
    transform: scale(1.1);
    color: rgba(var(--white-color), 1);
}

.content-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.content-footer span {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}


/************************************ Header Section **************************************/
.MainHeader {
    position: relative;
    background: rgba(var(--main-color), 0);
    top: 0px;
    z-index: 999;
    margin-top: var(--eMT-body);
    width: calc(100%);
}

.MainHeader .navbar {
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 999;
    width: 100%;
    padding: 10px 0px;
    /* margin: auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.MainHeader .navbar::before {
    /* content: ''; */
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg,
            rgba(var(--black-color), 1) 0%,
            rgba(var(--black-color), 0) 100%);
    opacity: 0.8;
}

.MainHeader .navbar>.container {
    position: relative;
    z-index: 2;
}

/* .menu-nav-bar.header-fixed {
    width: calc(100%);
    position: fixed;
    background: rgba(var(--white-color), 1);
    animation: slideDown 0.35s ease-out;
    backdrop-filter: blur(5px);
    box-shadow: 0px 5px 20px -8px rgba(14, 13, 14, 0.08);
} */

.navbar-brand h3 {
    font-family: var(--font-gc-georgia);
    font-size: 70px;
    font-weight: 400;
    color: #0a061f;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.menu-nav-bar.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    /* Add your background color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Optional shadow */
    animation: slideDown 0.3s ease-in-out;

}

/* .menu-nav-bar.header-fixed .navbar-nav {
    border-top: none !important;
    border-bottom: none !important;
} */

/* Smooth slide down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.MainInn-NavBox {
    width: 100%;
}

.head-search {
    font-family: var(--font-creato-display);
    border: none !important;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: rgba(10, 6, 31, 1);
}

.head-search i {
    font-size: 24px;
}

.navbar-brand img {
    object-fit: contain;
}

/* .DesktopView {
    padding: 2px 2px;
    width: calc(var(--ehw-dvlogo));
    height: calc(var(--ehw-dvlogo));
    overflow: hidden;
    margin: 0px 30px;
    --ehw-dvlogo: 130px;
    margin-top: -50px;
} */

nav.navbar.navbar-expand-xl.DesktopNav.header-fixed .DesktopView {
    margin-top: 0;
    --ehw-dvlogo: 100px;
}

.DesktopView .navbar-brand {
    --ehw-dvlogoa: 100%;
    width: var(--ehw-dvlogoa);
    height: var(--ehw-dvlogoa);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.DesktopNav .HeadContainer {
    display: flex;
    gap: var(--eGap-HCNL);
    align-items: center;
    justify-content: space-between;
    --eGap-HCNL: 20px;
}

.NBM-box {
    display: flex;
    /* gap: 50px; */
    width: 70%;
    justify-content: center;
    /* margin: auto; */
    /* margin-left: 30px; */
    padding: 10px 0px;
}

.navbar-toggler {
    padding: 6px;
    border: none;
    background: #2d6f3f;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler .navbar-toggler-icon {
    background: rgba(var(--white-color), 1);
    width: 1.1em;
    height: 2px;
    position: relative;
    display: block;
}

.navbar-toggler-icon.bar-1 {
    width: 0.6em;
}

.navbar-toggler-icon.bar-2 {
    width: 0.9em;
}

.navbar-toggler-icon.bar-2 {
    margin: 4px 0px;
}

.navbar.DesktopNav .HeadContainer .navbar-nav {
    font-family: var(--InterTight-font);
}

.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item {
    position: relative;
    margin-right: var(--eWNB);
    --eWNB: var(--eGap-HCNL);
}

.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item::after {
    /* content: ''; */
    position: absolute;
    display: inline-block;
    width: 1px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background: rgba(var(--third-color), 1);
    height: 80%;
}

.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
}

.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item:last-child::after {
    display: none;
}

.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link,
.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link:visited {
    color: rgba(var(--black-color), 1);
    transition: var(--transition-05s);
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 400;
    line-height: 1;
    padding: 5px var(--eptb-NavLink);
    /* padding-left: calc(var(--eptb-NavLink) + 4px); */
    /* background: rgba(var(--main-color), 0); */
    --eptb-NavLink: 8px;
    border-radius: 0px;
    font-size: 17px;
}

.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link.active,
.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link:hover,
.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link:focus,
.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link[aria-current="page"],
.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link[aria-current="page"]:visited {
    color: rgba(var(--black-color), 1);
}

.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item:last-child .nav-link {
    margin-right: 0px;
}

.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item>.nav-link::before {
    /* content: ''; */
    display: inline-block;
    position: absolute;
    width: var(--ehw-NavLinkB);
    border-radius: 50%;
    background: rgba(var(--main-color), 1);
    transition: var(--transition-05s);
    opacity: 0;
    visibility: hidden;
    margin: auto;
    top: 0px;
    bottom: 0px;
    --ehw-NavLinkB: 2px;
    height: 70%;
    left: 6px;
}

.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link.active::before,
.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link:hover::before,
.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link:focus::before,
.navbar.DesktopNav .HeadContainer .navbar-nav>.nav-item .nav-link[aria-current="page"]::before {
    opacity: 1;
    visibility: visible;
}

.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    content: "\f107";
    font-family: var(--font-awesome);
    font-weight: 600;
    border: none;
    vertical-align: middle;
    margin-left: 0.5em;
    font-size: 15px;
}

.navbar .navbar-nav .nav-item .dropdown-menu {
    padding: 0px;
    border: 0;
    border-radius: 0px;
    margin: 0 !important;
    transition: var(--transition-05s);
    /* overflow: hidden; */
    box-shadow: -12px 8px 20px -8px rgba(var(--white-color), 0.08),
        12px 8px 20px -8px rgba(var(--white-color), 0.08);

    padding: 8px;
    border-radius: 10px;
    background: rgba(var(--black-color), 0.1);
    background: rgba(var(--white-color), 0.8);
    /* box-shadow: 0px 8px 32px rgba(var(--white-color), 0.1), inset 0 1px 0 rgba(var(--black-color), 0.5), inset 0 -1px 0 rgba(var(--black-color), 0.1); */
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
    border: 1px solid rgba(var(--white-color), 0.3);
}

.navbar .navbar-nav .nav-item .dropdown-menu {
    margin-bottom: 10px;
}

.navbar .navbar-nav .nav-item .dropdown-menu>li>a,
.dropdown-menu .dropdown-submenu a {
    font-weight: 300;
    font-size: 14px;
    border-bottom: 1px solid rgba(var(--second2-color), 0.25);
    padding: 8px 6px;
    color: rgba(var(--second2-color), 1);
    transition: var(--transition-05s);
    background: none;
}

.navbar .navbar-nav .nav-item .dropdown-menu>li:first-child>a,
.dropdown-menu .dropdown-submenu:first-child a {
    padding-top: 0px;
}

.navbar .navbar-nav .nav-item .dropdown-menu>li:last-child>a,
.dropdown-menu .dropdown-submenu:last-child a {
    padding-bottom: 0px;
}

.navbar .navbar-nav .nav-item .dropdown-menu>li>a:hover,
.navbar .navbar-nav .nav-item .dropdown-menu>li>a:active,
.navbar .navbar-nav .nav-item .dropdown-menu>li>a:focus,
.navbar .navbar-nav .nav-item .dropdown-menu>li>a.active,
.dropdown-menu li .dropdown-submenu a:hover,
.dropdown-menu li .dropdown-submenu a:active,
.dropdown-menu li .dropdown-submenu a:focus,
.dropdown-menu li .dropdown-submenu a.active {
    color: rgba(var(--second2-color), 1);
    font-weight: 500;
}

.navbar .navbar-nav .nav-item .dropdown-menu>li:last-child a {
    border-bottom: none;
}

.navbar-expand-xl .HeadContainer .navbar-collapse {
    justify-content: center;
}

/* .Head-InnCaLog {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
} */

.Cart-btn,
.Cart-btn:visited,
.Cart-btn:focus {
    position: relative;
    padding: 6px 6px;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #1a1717;
    font-weight: 300;
    font-size: 18px;
    /* width: var(--ehw-CRB);
    height: var(--ehw-CRB); */
}

/* .Cart-btn.SerachBtn, .Cart-btn.SerachBtn:visited, .Cart-btn.SerachBtn:focus {
    padding: 2px;
    border: none;
} */
.Cart-btn:hover {
    color: rgba(var(--black-color), 1);
}

.Cart-btn.SerachBtn:hover {
    color: rgba(var(--black-color), 1);
}

.Cart-btn>* {
    line-height: 1;
}

.Cart-btn img {
    --ehw-EHWC: 20px;
    width: 40px;
    object-fit: contain;
}


.Head-CaForm {
    display: none;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    padding: 6px 8px;
    border: 1px solid rgba(26, 23, 23, 0.2);
    /* background: rgba(var(--second2-color), 1); */
    width: 330px;
}

.Head-CaForm .form-control,
.Head-CaForm .form-control:hover,
.Head-CaForm .form-control:focus {
    font-family: var(--DMSans-font);
    /* background: rgba(var(--main-color), 0); */
    border: none;
    min-height: 100%;
    padding: 4px;
    font-weight: 300;
    font-size: 14px;
    width: 100%;
    /* color: rgba(var(--black-color), 1); */
}

.Head-CaForm .form-control::placeholder {
    color: rgba(var(--black-color), 0.6);
}

.HeadCa-FormBtn,
.HeadCa-FormBtn:visited,
.HeadCa-FormBtn:focus {
    /* --ehw-HFB: 30px; */
    padding: 0px;
    /* width: var(--ehw-HFB); */
    /* height: var(--ehw-HFB); */
    /* border-radius: 50%; */
    border: none;
    color: #1a1717;
    /* font-size: 16px; */
    /* background: rgba(var(--main-color), 1); */
}

.HeadCa-FormBtn img {
    --ehw-EHWC: 80%;
    object-fit: contain;
}

/* btn HeadCa-FormBtn */

/* .HeadCa-FormBtn:hover {
    background: #F1D382;
} */

.menu-nav-bar {
    width: 100%;
}

.menu-nav-bar .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-top: 1px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
    padding: 10px 0px;
    gap: 25px;
}

.menu-nav-bar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: #0a061f;
}

/* Modal styling */
#searchModal .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#searchModal .modal-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem;
}

#searchModal .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

#searchModal .modal-body {
    padding: 2rem;
}

/* Search input styling */
#searchModal .form-control {
    height: 50px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0px;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

#searchModal .form-control:focus {
    border-color: #978989;
    box-shadow: none;
}

#searchModal .btn-primary {
    height: 50px;
    padding: 0 2rem;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

#searchModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Search suggestions */
.search-suggestions h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
}

.search-suggestions .badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-suggestions .badge:hover {
    background-color: #007bff !important;
    transform: translateY(-2px);
}

/* Close button styling */
#searchModal .btn-close {
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

#searchModal .btn-close:hover {
    opacity: 1;
}

#searchModal .btn-close:focus {
    box-shadow: none !important;
}

/* Fade in animation for modal */
#searchModal.fade .modal-dialog {
    /* transform: scale(0.9); */
    transform: translateY(0px);
    transition: transform 0.3s ease-out;
}

#searchModal.show .modal-dialog {
    /* transform: scale(1); */
    transform: translateY(50px);
}


/**************************************** News Section One  ******************************/
.news-img {
    width: 100%;
    height: 300px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-btn-box {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.news-right-img {
    width: 100%;
    height: 350px;
}

.news-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    color: #0a061f;
}

.news-content p {
    font-size: 19px;
    font-weight: 400;
    color: #3a3a3a;
}

.news-content span {
    font-size: 13px;
    color: #0a061f;
}

.news-small-content h3 {
    font-family: var(--font-creato-display);
    font-size: 22px;
    font-weight: 500;
    color: #0a061f;
    line-height: 24px;
}

.news-small-content p {
    font-size: 16px;
    font-weight: 400;
    color: #4d4d4d;
}

.news-small-content span {
    font-size: 13px;
    color: #0a061f;
}

.news-small-img {
    height: 200px;
}

.news-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-box-right h3 {
    font-family: var(--font-creato-display);
    color: #0a061f;
    font-size: 30px;
    line-height: 32px;
    font-weight: 500;
    margin-top: 20px;
}

.news-box-right span {
    font-size: 13px;
    color: #0a061f;
}

/************************************* News Category Section *****************************/
.common-section.news-category {
    padding: 0px 30px 60px;
}

.news-cat-head {
    margin-bottom: 20px;
}

.news-cat-head h3 {
    font-family: var(--font-creato-display);
    font-size: 40px;
    font-weight: 500;
    color: #0a061f;
}

.news-cat-slider {
    margin-top: 30px;
}

.news-cat-box {
    /* background: var(--main-color); */
    background: #dedede;
    padding: 15px;
    min-height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: var(--transition-05s);
}

.news-cat-box h5 {
    font-family: var(--font-creato-display);
    font-size: 24px;
    font-weight: 500;
    width: 60%;
    /* color: #fff; */
    color: #000;
}

.news-cat-box i {
    color: #000;
    font-size: 24px;
}

.news-cat-box:hover {
    background: var(--main-color);
}

.news-cat-box:hover h5,
.news-cat-box:hover i {
    color: #fff;
}

.news-cat-slider.owl-carousel {
    position: relative;
}

.news-cat-slider.owl-carousel .owl-nav {
    position: absolute;
    top: -50px;
    right: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-cat-slider.owl-carousel .owl-nav .owl-prev,
.news-cat-slider.owl-carousel .owl-nav .owl-next {
    font-size: 20px;
    color: #0a061f;

}

/**************************** Equal Rights Ads Banner Section ******************************/
.common-adsBnr-section {
    min-height: 400px;
    height: 100%;
    background: no-repeat center center / cover;
    position: relative;
}

.common-adsBnr-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 40px 0px;
}

.common-adsBnr-box h3 {
    font-family: var(--font-creato-display);
    font-size: 50px;
    font-weight: 400;
    line-height: 55px;
    color: #fff;
}

.common-adsBnr-box p {
    font-family: var(--font-creato-display);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
}

.common-adsBnr-box .content-footer span {
    color: #fff;
}

/***************************** Right, Liberty Freedom Section ***********************************/
.rlf-news-section,
.holidays-news-section {
    background: #5a000a;
    position: relative;
}

.govt-news-section,
.worldview-news-section {
    background: #0a061f;
}

.common-news-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.23);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.common-news-head h3 {
    font-family: var(--font-creato-display);
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
    color: #fff;
}

.common-news-main-box-content h3 {
    font-family: var(--font-creato-display);
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: #fff;
}

.common-news-main-box-content p {
    font-size: 18px;
    font-weight: 400;
    color: #b7b6b6;
}

.common-news-main-box-content .content-footer span {
    color: #fff;
}

.common-news-main-box-img {
    height: 325px;
    width: 100%;
}

.common-news-main-box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.common-news-leftLwr {
    margin-top: 20px;
}

.common-news-leftLwr-box-img {
    height: 200px;
}

.common-news-leftLwr-box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.common-news-leftLwr-box-content {
    margin-top: 20px;
}

.common-news-leftLwr-box-content h5 {
    font-family: var(--font-creato-display);
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.common-news-leftLwr-box-content .content-footer span {
    color: #fff;
}

.common-news-right-box {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    gap: 20px;
}

.common-news-right-box .common-news-right-box-content {
    width: 70%;
}

.common-news-right-box .common-news-right-box-content h5 {
    font-family: var(--font-creato-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
}

.common-news-right-box .common-news-right-box-content .content-footer span {
    color: #fff;
}

.common-news-right-box .common-news-right-box-img {
    width: 30%;
    height: 200px;
}

.common-news-right-box .common-news-right-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.economics-news-section.common-news-section .common-news-head {
    border-bottom: 1px solid #aeaeae;
}

.economics-news-section.common-news-section .common-news-head h3,
.economics-news-section.common-news-section .common-news-main-box-content h3,
.economics-news-section.common-news-section .common-news-main-box-content .content-footer span,
.economics-news-section.common-news-section .common-news-leftLwr-box-content h5,
.economics-news-section.common-news-section .common-news-leftLwr-box-content .content-footer span,
.economics-news-section.common-news-section .common-news-right-box .common-news-right-box-content h5,
.economics-news-section.common-news-section .common-news-right-box .common-news-right-box-content .content-footer span {
    color: #0a061f;
}

.economics-news-section.common-news-section .common-news-main-box-content p {
    color: #4d4d4d;
}

.common-news-section .news-btn-box .common-btn {
    background: #fff;
    color: #1d1d1d;
}

.govt-news-section.common-news-section .news-btn-box .common-btn,
.worldview-news-section.common-news-section .news-btn-box .common-btn {
    background: #2d6f3f;
    color: #fff;
}

/********************************* Social Justice News Section ******************************/
.sj-news-section {
    background: #2d6f3f;
}

.sj-news-section.common-news3-section .news-btn-box .common-btn {
    background: #fff;
    color: #000;
}

.common-news3-left-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.common-news3-left-box .common-news3-left-box-img {
    width: 40%;
    height: 290px;
}

.common-news3-left-box .common-news3-left-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common-news3-left-box .common-news3-left-box-content {
    width: 60%;
}

.common-news3-left-box .common-news3-left-box-content h5 {
    font-family: var(--font-creato-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
}

.common-news3-left-box .common-news3-left-box-content p {
    font-size: 16px;
    font-weight: 400;
    color: #88c097;
}

.common-news3-left-box .common-news3-left-box-content .content-footer span {
    color: #fff;
}

.common-news3-main-box-img {
    height: 475px;
    width: 100%;
}

.common-news3-main-box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.common-news3-main-box-content {
    margin-top: 20px;
}

.common-news3-main-box-content h5 {
    font-family: var(--font-creato-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
}

.common-news3-main-box-content p {
    font-size: 18px;
    font-weight: 400;
    color: #88c097;
}

.common-news3-main-box-content .content-footer span {
    color: #fff;
}

.common-news3-box-right-small {
    border-bottom: 1px solid rgba(222, 222, 222, 0.3);
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.common-news3-box-right-small:last-child {
    border-bottom: none !important;
}

.common-news3-box-right-small h3 {
    font-family: var(--font-creato-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
}

.common-news3-box-right-small p {
    font-family: var(--font-creato-display);
    font-size: 16px;
    font-weight: 400;
    color: #88c097;
}

.common-news3-box-right-small .content-footer span {
    color: #fff;
}

/************************************* Christian Commitment section *****************************/
.chc-news-section.common-news3-section .common-news-head h3,
.chc-news-section.common-news3-section .common-news3-left-box-content h5,
.chc-news-section.common-news3-section .common-news3-left-box-content .content-footer span,
.chc-news-section.common-news3-section .common-news3-box-right-small h3,
.chc-news-section.common-news3-section .common-news3-box-right-small .content-footer span,
.chc-news-section.common-news3-section .common-news3-main-box-content h5,
.chc-news-section.common-news3-section .common-news3-main-box-content .content-footer span {
    color: #0a061f;
}

.chc-news-section.common-news3-section .common-news3-left-box-content p,
.chc-news-section.common-news3-section .common-news3-box-right-small p,
.chc-news-section.common-news3-section .common-news3-main-box-content p {
    color: #4d4d4d;
}

.chc-news-section.common-news3-section .common-news-head {
    border-bottom: 1px solid #aeaeae;
}

.chc-news-section.common-news3-section .news-btn-box .common-btn {
    background: #fff;
    color: #000;
}



/********************************* History News Section *************************************/
.history-news-head {
    border-bottom: 1px solid #aeaeae;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.history-news-head h3 {
    font-family: var(--font-creato-display);
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
    color: #0a061f;
}

.history-news-img {
    height: 365px;
    width: 100%;
}

.history-news-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.history-news-content {
    margin-top: 20px;
    margin-bottom: 10px;
}

.history-news-content h5 {
    font-family: var(--font-creato-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #0a061f;
}

.history-news-content p {
    font-size: 16px;
    font-weight: 400;
    color: #4d4d4d;
    width: 80%;
}

.history-news-content .content-footer span {
    color: #0a061f;
}

/***************************** News Details Section ******************************************/
.news-detls-section {
    position: relative;
}

.news-detls-left .news-detls-left-main-img {
    width: 100%;
    height: auto;
}

.news-detls-left .news-detls-left-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detls-left-main-head {
    width: 70%;
    margin: 20px auto;
    text-align: center;
}

.news-detls-left-main-head h3 {
    font-family: var(--font-creato-display);
    font-size: 50px;
    line-height: 1.2;
    font-weight: 500;
    color: #0a061f;
}

.news-detls-left-main-head .content-footer {
    justify-content: center;
    margin-top: 20px;
}

.news-detls-left-main-head .content-footer span {
    font-size: 20px;
    line-height: 24px;
    color: #0a061f;
}

.news-detls-left-main-content>p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #1d1d1d;
}

.news-detls-left-main-content-img {
    width: 60%;
    margin: 40px auto 40px;
    height: 325px;
    text-align: center;
}

.news-detls-left-main-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detls-left-main-content-img-audio-top {
    width: 100%;
    margin: 40px auto 40px;
    height: 450px;
    text-align: center;
}

.news-detls-left-main-content-img-audio-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

.news-detls-left-main-content-img-audio {
    width: 650px;
    height: 70px;
    margin: auto;
}

.news-detls-left-main-content-img-audio img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-detls-left-main-content-img p {
    font-size: 15px;
    font-weight: 400;
    color: #1d1d1d;
    margin: 10px 0px;
}

.news-detls-comment-section h3 {
    font-family: var(--font-creato-display);
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
    color: #0a061f;
    font-weight: 500;
}

.comment-box-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-pf-img {
    --ehw-img: 50px;
    width: var(--ehw-img);
    height: var(--ehw-img);
    border-radius: 50%;
    overflow: hidden;
}

.comment-pf-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-pf-name h5 {
    font-family: var(--font-creato-display);
    font-size: 18px;
    font-weight: 500;
    color: #0a061f;
    margin-bottom: 0px;
}

.comment-pf-name span {
    font-size: 14px;
    font-weight: 400;
    color: #1a1717;
}

.comment-msg p {
    font-size: 15px;
    font-weight: 400;
    color: #1d1d1d;
}

.comment-post form {
    width: 80%;
    background: #f4f4f4;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.comment-post form h5 {
    font-family: var(--font-creato-display);
    font-size: 28px;
    line-height: 32px;
    color: #0a061f;
}

.comment-post form p {
    color: #1d1d1d;
    font-size: 15px;
    font-weight: 400;
}

.comment-input-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.comment-input-box label {
    font-size: 16px;
    font-weight: 500;
    color: #0a061f;
    text-transform: uppercase;
    margin-left: 5px;
}

.comment-input-box label>span {
    color: #ff0000;
}

.comment-input-box input,
.comment-input-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #fff;
}

.news-detls-right {
    position: sticky;
    top: 80px;
    /* Distance from top when sticky */
    align-self: flex-start;
    /* Prevents stretching in flexbox/grid layouts */
}

.news-detls-right-head {
    border-bottom: 1px solid rgba(191, 191, 191, 1);
    margin-bottom: 20px;
}

.news-detls-right-head h3 {
    font-family: var(--font-creato-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
    color: #0a061f;
    text-transform: capitalize;
}

.news-detls-recent-box {
    border-bottom: 1px solid rgba(191, 191, 191, 1);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.news-detls-recent-box:last-child {
    border-bottom: none;
}

.news-detls-recent-box h5 {
    font-family: var(--font-creato-display);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #0a061f;
}

.news-detls-recent-box p {
    font-size: 14px;
    font-weight: 400;
    color: #1a1717;
    margin-bottom: 8px;
    width: 80%;
}

.share-on-box {
    margin-bottom: 20px;
}

.share-on-box h5 {
    font-size: 28px;
    font-weight: 700;
}

.share-on-box ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-on-box ul li a i {
    font-size: 24px;
    color: #fff;
    background: #000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.publish-on-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.publish-on-box h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

.publish-on-box ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.publish-on-box ul li a {
    /* text-decoration: underline; */
    font-size: 16px;
    font-weight: 400;
    color: #1d1d1d;
    background: #f4f4f4;
    padding: 5px 20px;
    border-radius: 20px;
}

.news-detls-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.news-detls-nav li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #434a56;
}

.news-detls-nav li a::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #434a56;
    border-radius: 50%;
    display: block;
}

.news-detls-nav li:last-child a::after {
    display: none;
}

/******************************* Subscription Section ***********************************/
.sub-section {
    min-height: 320px;
    height: 100%;
    position: relative;
    background: no-repeat center center / cover;
    /* background-color: #2d6f3f; */
}

.sub-section::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(45, 111, 63, 0.75);
}

.sub-section>* {
    position: relative;
    z-index: 1;
}

.sub-main-box-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding: 20px 0px;
}

.sub-main-box-head h3 {
    font-family: var(--font-creato-display);
    font-size: 40px;
    line-height: 32px;
    font-weight: 400;
    color: #fff;
}

.sub-main-box-head p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
}

.sub-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 5px;
    margin-top: 20px;
    border: 2px dashed rgba(10, 6, 31, 0.5);
    background: rgba(165, 182, 188, 0.67);
    padding: 40px;
}

.sub-form input {
    font-family: var(--font-creato-display);
    width: 70%;
    background-color: #fff;
    /* background: transparent !important; */
    border: none !important;
    padding: 10px 10px 10px 15px;
}

.sub-form input::placeholder {
    font-family: var(--font-creato-display);
    font-size: 13px;
    color: #1d1d1d;
    font-weight: 500;
    text-transform: capitalize;
}

.sub-form button {
    font-family: var(--font-creato-display);
    width: 30%;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    background: #0a061f;
    color: #fff;
    border: none !important;
    padding: 10px;
    text-transform: uppercase;
}

/*************************************** News Listing Section ********************************/
.newsListing-head {
    text-align: center;
    margin-bottom: 40px;
}

.newsListing-head h5 {
    font-size: 34px;
    font-weight: 700;
    color: #0a061f;
}

.newsListing-head p {
    font-size: 16px;
    font-weight: 500;
    color: #0a061f;
}

.newsListing-box {
    display: inline-block;

}

.newsListing-box .newsListing-box-img {
    width: 100%;
    height: 250px;
}

.newsListing-box .newsListing-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsListing-box .newsListing-box-content {
    margin-top: 20px;
}

.newsListing-box .newsListing-box-content h5 {
    color: #0a061f;
    font-size: 24px;
    font-weight: 500;
}

/***************************************** Contact Us Page *******************************/
.contact-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    gap: 20px;
    min-height: 150px;
    padding: 20px;
    transition: var(--transition-05s);
    /* padding: 60px 20px; */
}

.contact-card:hover {
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
}

.contact-card:hover i {
    color: rgba(var(--white-color), 1);
}

.contact-card i {
    --ehw-bg: 50px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    font-size: 25px;
    background: rgba(var(--main-color), 0.5);
    color: rgba(var(--main-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.contact-name {
    width: 70%;
}

.contact-card .contact-name h4 {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.contact-card .contact-name p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}

.iframe-box {
    width: 100%;
    height: 480px;
    border: 1px solid rgba(var(--second-color), 1);
    padding: 5px;
    border-radius: 20px;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.contact-form-head {
    text-align: center;
    padding: 20px 0px;
}

.contact-form-head h3 {
    font-size: 54px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form-head p {
    font-size: 24px;
    font-weight: 400;
}

.contact-form {
    /* box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.75); */
    border: 1px solid #D1D1D1;
    padding: 20px;
    border-radius: 20px;
}

.form-contact-box input::placeholder,
.form-contact-box textarea::placeholder {
    font-weight: 400;
}

.form-contact-box button {
    width: 100%;
}

/******************************** Footer Section *********************************************/
.footer-section {
    position: relative;
    padding: 40px 0px 10px;
}

.footer-logo {
    text-align: center;
}

.footer-logo h5 {
    font-family: var(--font-gc-georgia);
    font-size: 60px;
    font-weight: 400;
    color: #0a061f;
}

.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer-menu li a {
    font-family: var(--font-creato-display);
    font-weight: 500;
    font-size: 16px;
    color: #0a061f;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-left: 0px;
    margin-bottom: 0px;
}

.footer-contact li a {
    font-family: var(--font-creato-display);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1d1d1d;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-transform: capitalize;
}

.footer-copyRight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

.footer-copyRight p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    color: #1d1d1d;
    margin-bottom: 0;
}

.footer-copyRight .footer-follow-list,
.footer-copyRight .footer-follow-list ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px !important;
    padding-left: 0.5rem !important;
}

.footer-copyRight .footer-follow-list ul a {
    color: #1d1d1d;
    font-size: 20px;
}

.footer-copyRight .footer-follow-list h5 {
    font-family: var(--font-creato-display);
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}





/********************************************** Media query ***********************************/

/********************* Min width Section *****************************/

@media (min-width: 769px) {}

/* @media (min-width: 1200px){
	.nav-item.dropdown .dropdown-menu[data-bs-popper] {
		top: 100%;
	}
} */

@media (min-width: 1400px) and (max-width: 1599px) {
    .menu-nav-bar .navbar-nav {
        gap: 15px;
    }

    .menu-nav-bar .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .common-section {
        padding: 40px 0px;
    }

    .news-content h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .news-content p {
        font-size: 14px;
    }

    .news-box-right h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .news-small-content h3 {
        font-size: 18px;
        line-height: 20px;
    }

    .news-small-content p {
        font-size: 14px;
    }

    .content-footer {
        flex-wrap: wrap;
    }

    .news-cat-box h5 {
        font-size: 20px;
        width: 80%;
    }

    .news-cat-head h3 {
        font-size: 34px;
    }

    .news-cat-box i {
        font-size: 20px;
    }

    .common-news-head h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .common-news-main-box-content h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .history-news-head h3 {
        font-size: 28px;
    }

    .history-news-content p {
        font-size: 14px;
        width: 90%;
    }

    .history-news-content h5 {
        font-size: 16px;
    }

    .common-news3-main-box-content h5 {
        font-size: 24px;
    }

    .common-news3-main-box-content p {
        font-size: 16px;
    }

    .common-news3-box-right-small h3 {
        font-size: 16px;
    }

    .common-news3-box-right-small p {
        font-size: 14px;
    }

    .footer-menu {
        gap: 30px;
    }

    .news-detls-left-main-head h3 {
        font-size: 42px;
        line-height: 48px;
    }

    .footer-menu li a {
        font-size: 15px;
    }

    .footer-copyRight .footer-follow-list,
    .footer-copyRight .footer-follow-list ul {
        margin-bottom: 0px !important;
        padding-left: 0.5rem !important;
    }
}

@media (min-width: 1500px) {}

@media (min-width: 1540px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1640px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1740px) {
    .container {
        max-width: 1690px;
    }
}

/************************************* Max Width Section ******************************/

@media (max-width: 1399px) {
    .menu-footer-menu-1-container ul {
        padding-left: 0px;
        margin-bottom: 0px;
    }

    .navbar-brand h3 {
        font-size: 60px;
    }

    .menu-nav-bar .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .menu-nav-bar .navbar-nav {
        padding: 6px 0px;
        gap: 5px;
    }

    .common-section {
        padding: 30px 0px;
    }

    .news-content h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .news-content p {
        font-size: 14px;
    }

    .news-small-content h3 {
        font-size: 18px;
        line-height: 20px;
    }

    .news-box-right h3 {
        font-size: 26px;
        line-height: 30px;
    }

    .news-cat-box h5 {
        font-size: 20px;
        width: 80%;
    }

    .news-cat-head h3 {
        font-size: 34px;
    }

    .news-cat-box i {
        font-size: 18px;
    }

    .common-news-head h3 {
        font-size: 24px;
    }

    .common-news-main-box-content p {
        font-size: 16px;
    }

    .common-news-main-box-img {
        height: 240px;
    }

    .common-news-leftLwr-box-img {
        height: 140px;
    }

    .common-news-leftLwr-box-content h5 {
        font-size: 16px;
    }

    .common-news-right-box .common-news-right-box-img {
        height: 160px;
    }

    .common-news-right-box .common-news-right-box-content h5 {
        font-size: 16px;
        line-height: 20px;
    }

    .history-news-img {
        height: 240px;
    }

    .content-footer span {
        font-size: 13px;
    }

    .common-news3-left-box .common-news3-left-box-img {
        height: 200px;
    }

    .common-news3-main-box-img {
        height: 320px;
    }

    .common-news3-left-box {
        gap: 20px;
        flex-wrap: wrap;
    }

    .common-news3-left-box .common-news3-left-box-img,
    .common-news3-left-box .common-news3-left-box-content {
        width: 100%;
    }

    .footer-menu {
        gap: 20px;
    }

    .footer-menu li a {
        font-size: 14px;
    }

    .footer-logo h5 {
        font-size: 50px;
    }

    .footer-contact li a {
        font-size: 13px;
        line-height: 24px;
    }

    .news-detls-left-main-head h3 {
        font-size: 36px;
        line-height: 44px;
    }

    .news-detls-left-main-head .content-footer span {
        font-size: 18px;
        line-height: 24px;
    }

}

@media (max-width: 1199px) {
    .navbar-collapse {
        position: absolute;
        background: rgb(194, 191, 191);
        width: 100%;
        left: 0;
        top: 100%;
        padding: 5px;
        border-top: 1px solid #f4f4f4;
        /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.23); */
    }

    .Head-InnCaLog {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .navbar-brand h3 {
        font-size: 50px;
        line-height: 1;
        margin-bottom: 0px;
    }

    .news-img {
        height: 200px;
    }

    .news-right-img {
        height: 240px;
    }

    .news-box-right h3 {
        font-size: 22px;
        line-height: 26px;
    }

    .news-box-small>.row {
        flex-direction: column-reverse;
    }

    .common-adsBnr-section {
        min-height: 350px;
        height: 100%;
        background: no-repeat center center / cover;
        position: relative;
    }

    .common-adsBnr-section {
        min-height: 350px;
    }

    .common-news-right-box .common-news-right-box-img {
        height: 100px;
    }

    .common-news-right-box {
        align-items: flex-start;
    }

    .common-adsBnr-box h3 {
        font-size: 40px;
        line-height: 46px;
    }

    .common-news3-main-box-img {
        height: 400px;
    }

    .footer-menu li a {
        font-size: 12px;
    }

    .news-detls-left-main-head h3 {
        font-size: 36px;
        line-height: 42px;
    }

    .news-detls-left-main-head {
        width: 80%;
    }

    .news-detls-left-main-head .content-footer span {
        font-size: 15px;
        line-height: 20px;
    }

    .news-detls-left-main-content>p {
        font-size: 16px;
        line-height: 24px;
    }

    .comment-post form {
        width: 100%;
    }

    .sub-main-box-head h3 {
        font-size: 34px;
    }

}

@media (max-width: 991px) {
    .news-right-img {
        height: auto;
    }

    .common-btn {
        padding: 5px 10px;
        font-size: 13px;
    }

    .navbar-brand h3 {
        font-size: 45px;
    }

    .head-search {
        font-size: 14px;
    }

    .head-search i {
        font-size: 18px;
    }

    .common-news-right {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 24px;
    }

    .common-news-right-box {
        flex-direction: column-reverse;
    }

    .common-news-right-box .common-news-right-box-img {
        width: 100%;
        height: auto;
    }

    .common-news-right-box .common-news-right-box-content {
        width: 100%;
    }

    .common-adsBnr-box {
        padding: 10px 0px;
    }

    .common-adsBnr-section {
        min-height: 280px;
    }

    .sj-news-left {
        display: flex;
        align-items: flex-start;
        gap: 24px;
    }

    .common-news3-left-box {
        width: 50%;
    }

    .common-news3-left-box .common-news3-left-box-img {
        height: auto;
    }

    .footer-menu {
        align-items: flex-start;
        gap: 10px;
        flex-direction: column;
    }

    .footer-logo {
        text-align: left;
    }

    .footer-contact {
        align-items: flex-start;
        gap: 10px;
        flex-direction: column;
    }

    .footer-copyRight {
        align-items: center;
        flex-direction: column-reverse;
    }

    .news-cat-head h3 {
        font-size: 24px;
    }

    .news-cat-box h5 {
        font-size: 18px;
        width: 80%;
    }

    .news-cat-box {
        min-height: 80px;
    }

    .history-news-img {
        height: auto;
    }

    .news-detls-left .news-detls-left-main-img {
        height: auto;
    }

    .news-detls-left-main-head {
        width: 100%;
        text-align: left;
    }

    .news-detls-left-main-head h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .news-detls-left-main-head .content-footer {
        justify-content: flex-start;
    }

    .news-detls-left-main-head .content-footer span {
        font-size: 16px;
        line-height: 20px;
    }

    .news-detls-left-main-content>p {
        font-size: 14px;
    }

    .news-detls-left-main-content-img {
        width: 100%;
        height: auto;
    }

    .comment-post form {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        border-radius: 5px;
    }

    .comment-post form h5 {
        font-size: 20px;
    }

    .news-detls-right-head h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .news-detls-recent-box h5 {
        font-size: 14px;
        line-height: 18px;
    }

    .news-detls-recent-box p {
        width: 100%;
    }

    .content-footer {
        gap: 2px;
    }

    .news-detls-left-main-content-img-audio-top {
        width: 100%;
        height: auto;
    }

    .news-detls-left-main-content-img-audio {
        width: 100%;
        height: auto;
    }

    .news-detls-nav {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .share-on-box h5 {
        font-size: 20px;
    }

    .publish-on-box h5 {
        font-size: 18px;
    }

    .publish-on-box ul li a {
        font-size: 14px;
        padding: 5px 10px;
    }




}

@media (max-width: 767px) {
    .head-search span {
        display: none;
    }

    .navbar-brand h3 {
        font-size: 35px;
    }

    .news-img,
    .news-small-img {
        height: auto;
    }

    .history-news-content p {
        font-size: 14px;
        width: 100%;
    }

    .history-news-content {
        margin-top: 10px;
    }

    .common-adsBnr-box {
        padding: 40px 20px;
        background: rgba(0, 0, 0, 0.5);
    }

    .common-news-leftLwr-box-content h5 {
        font-size: 14px;
    }

    .common-news-main-box-img {
        height: auto;
    }

    .sub-main-box-head h3 {
        font-size: 32px;
        line-height: 28px;
    }

    .sub-main-box-head p {
        font-size: 15px;
    }

    .sub-main-box-head {
        gap: 0px;
    }

    .sub-form {
        margin-top: 0px;
    }

    .sub-section {
        min-height: 240px;
    }

    .footer-logo h5 {
        font-size: 35px;
    }



    .news-detls-left-main-head .content-footer span {
        font-size: 14px;
        line-height: 18px;
    }



    .news-detls-left-main-content-img p {
        font-size: 12px;
    }

    .comment-post form h5 {
        font-size: 20px;
        line-height: 24px;
    }

    .comment-post form p {
        font-size: 13px;
    }

    .comment-input-box label {
        font-size: 13px;
    }

    .comment-input-box input,
    .comment-input-box textarea {
        padding: 6px;
        border-radius: 4px;
    }

    .news-detls-right-head h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .news-detls-left-main-head .news-detls-nav li {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        list-style: none;
    }

    .comment-post form p {
        font-size: 13px;
        display: flex;
        gap: 5px;
        align-items: baseline;
    }

    .comment-post #wp-comment-cookies-consent {
        position: relative;
        top: 3px;
    }

    .newsListing-lwr .row {
        justify-content: center;
    }

    .newsListing-head h5 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .Head-InnCaLog .common-btn {
        display: none;
    }

    .common-section {
        padding: 20px 0px;
    }

    .news-cat-slider.owl-carousel .owl-nav {
        top: auto;
        right: 100px;
    }

    .common-adsBnr-box h3 {
        font-size: 32px;
        line-height: 36px;
    }

    .common-news-head h3 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .common-news-main-box-content h3 {
        font-size: 20px;
    }

    .common-news-right {
        flex-direction: column;
    }

    .history-news-head h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .common-adsBnr-box h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .sj-news-left {
        flex-direction: column;
    }

    .common-news3-left-box {
        width: 100%;
    }

    .common-news3-main-box-content h5 {
        font-size: 18px;
        line-height: 24px;
    }

    .common-news3-main-box-content p {
        font-size: 15px;
    }

    .common-news3-box-right-small h3 {
        font-size: 15px;
    }

    .common-news3-box-right-small p {
        font-size: 13px;
    }

    .common-news-main-box-content h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .common-news-main-box .row {
        flex-direction: column-reverse;
    }

    .common-news-leftLwr-box-img {
        height: auto;
    }

    .sub-form {
        flex-direction: column;
    }

    .sub-form input {
        width: 100%;
    }

    .sub-form button {
        width: 100%;
    }

    .sub-main-box-head h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .sub-form button {
        font-size: 13px;
    }

    .footer-copyRight p {
        font-size: 12px;
        line-height: 20px;
    }

    .navbar-brand h3 {
        font-size: 30px;
    }

    #searchModal .modal-body {
        padding: 10px;
    }

    #searchModal .modal-header {
        padding: 0.8rem;
    }

    .news-detls-left .news-detls-left-main-img {
        height: auto;
    }


}

/* @media (max-width: 410px) {
    .contact-form {
        padding: 10px;
        border-radius: 10px;
    }

    .cart-icon img {
        width: 40px;
    }

    .btn-cart {
        gap: 5px;
    }

    .nav-btns {
        gap: 5px;
    }

    .head-brand-menu .common-btn {
        font-size: 10px;
    }
} */


#mega-menu-wrap-header_menu {
    background-color: transparent !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-content: center !important;
    border-top: 1px solid #f4f4f4 !important;
    border-bottom: 1px solid #f4f4f4 !important;
}

#mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-item>a.mega-menu-link {
    color: #000000 !important;
}

#mega-menu-wrap-header_menu .mega-menu-toggle+#mega-menu-header_menu {
    background-color: #f4f4f4 !important;
}

.mega-menu-link:hover,
.mega-menu-link:focus {
    background-color: transparent !important;
}

[aria-current="page"] {
    background-color: var(--main-color) !important;
    font-weight: 600 !important;
    color: #fff !important;
}

.comment-form-cookies-consent {
    margin-top: 20px !important;
}

.grecaptcha-badge {
    bottom: 60px !important;
}

.alignright {
    float: right !important;
    margin: 10px 0 1.5em 1.5em;
}

.alignleft {
    float: left !important;
    margin: 10px 15px 1.5em 0em;
}

.aligncenter {
    text-align: center;
    margin: 1.5em auto;
    display: block;
    max-width: 100%;
}

.news-detls-section ul {
    margin-bottom: 15px;
}

.news-detls-section ul li {
    padding-left: 10px;
    list-style: disc;
    margin-bottom: 3px;
    font-size: 18px;
}

@media (max-width: 1550px) {
    .menu-nav-bar .container {
        max-width: 1410px !important;
    }
}

@media (max-width: 1350px) {
    #mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-item>a.mega-menu-link {
        padding: 0px 3px !important;
    }
}

@media (max-width: 1250px) {
    #mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-item>a.mega-menu-link {
        font-size: 13px !important;
    }
}

.postid-398 .news-detls-left-main-head {
    width: 100%;
}

.postid-398 .news-detls-nav {
    align-items: flex-start;
    justify-content: flex-start;
}

.postid-398 .news-detls-nav li {
    flex-direction: column;
    width: 100%;
}

.newsListing-box {
    display: block;
}

#mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
    background-color: #ffffff !important;
}

.mega-sub-menu .mega-current-post-parent a {
    color: #000 !important;
}

.mega-sub-menu a:hover {
    color: #000 !important;
}

#mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    line-height: normal !important;
}

.mega-sub-menu {
    padding-top: 15px !important;
}

#mega-menu-header_menu .mega-sub-menu li {
    margin-bottom: 10px !important;
}

#mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
#mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {

    color: #306e40 !important;
}

#mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-item>a.mega-menu-link:hover {
    background: #2d6f3f !important;
    color: #fff !important;
}

.leftcatList {
    display: flex;
    width: 100%;
    margin-top: 0px;
    font-size: 14px;
    margin-bottom: 10px;
    align-items: baseline;
}

.leftcatList ul a {
    font-size: 14px;
}

@media (max-width:767px) {
    .leftcatList {
        display: flex;
        width: 100%;
        margin-top: 0px;
        font-size: 14px;
        margin-bottom: 10px;
        align-items: baseline;
        flex-direction: column;
    }

    .leftcatList ul {
        padding-left: 0 !important;
        list-style: none;
    }

    .leftcatList ul li {
        list-style: none;
        padding-left: 0;

    }
}

.news-detls-section a {
    color: #2d6f3f;
}

.news-detls-section a:hover {
    color: blue;
}

.newsListing-box .newsListing-box-content h5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-height: 70px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-detls-left-main-head h3 {
    font-family: "Noto Serif", serif !important;
}