html {
    scroll-behavior: smooth;
}
:root {
    --primary: #007A43;
    --secondary: #694827;
    --light: #FFF;
    --dark: #000;
    --fontEN: 'Poppins';
}

::-webkit-scrollbar {
    width: 0;
}
::-webkit-scrollbar-thumb {
    background-color: var(--primary);
}
::selection {
    background: var(--primary);
    color: var(--light);
}
input,
textarea,
button,
select,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: 'Noto Sans Condensed';
    src: url('fonts/NotoSansCondensed-Regular.woff2') format('woff2'),
        url('fonts/NotoSansCondensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans Condensed';
    src: url('fonts/NotoSansCondensed-Medium.woff2') format('woff2'),
        url('fonts/NotoSansCondensed-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans Condensed';
    src: url('fonts/NotoSansCondensed-SemiBold.woff2') format('woff2'),
        url('fonts/NotoSansCondensed-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans Condensed';
    src: url('fonts/NotoSansCondensed-Bold.woff2') format('woff2'),
        url('fonts/NotoSansCondensed-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.woff2') format('woff2'),
        url('fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.woff2') format('woff2'),
        url('fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.woff2') format('woff2'),
        url('fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    padding-top: 97px;
    margin: 0;
    font-family: 'Noto Sans Condensed';
    font-size: 16px;
    color: var(--dark);
    font-weight: 400;
    line-height: 140%;
    font-display: swap;
}
html h1,
html h2,
html h3,
html h4,
html h5,
html h6 {
    margin-top: 0;
    line-height: 140%;
    font-weight: 500;
}
p {
    margin-top: 0;
    margin-bottom: 14px;
}
p:last-child {
    margin-bottom: 0;
}
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s;
}
a:focus-visible {
    outline: 0;
    outline-offset: 0;
}
img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
}
* {
    box-sizing: border-box;
}
section {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}
.bg-primary {
    background: var(--primary);
}
.container {
    width: 1370px;
    max-width: 100%;
    padding: 0 25px;
    margin: 0 auto;
}
.container-sm {
    width: 1370px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col {
padding: 31px 15px;}
.gx-4 {
    margin: 0 -20px;
}
.gx-4 > * {
    padding: 0 20px;
}
.gx-5 {
    margin: 0 -25px;
}
.gx-5 > * {
    padding: 0 25px;
}
.col-1 {
    width: 8.33%;
}
.col-2 {
    width: 16.66%;
}
.col-3 {
    width: 25%;
}
.col-4 {
    width: 33.33%;
}
.col-5 {
    width: 41.65%;
}
.col-6 {
    width: 50%;
}
.col-7 {
    width: 58.31%;
}
.col-8 {
    width: 66.66%;
}
.col-9 {
    width: 75%;
}
.col-10 {
    width: 83.33%;
}
.col-11 {
    width: 91.66%;
}
.col-12 {
    width: 100%;
}
.col-auto {
    width: auto;
}
.align-items-center {
    align-items: center;
}
.align-items-end {
    align-items: flex-end;
}
.justify-content-start {
    justify-content: flex-start;
}
.justify-content-end {
    justify-content: flex-end;
}
.justify-space-between {
    justify-content: space-between;
}
.justify-content-center {
    justify-content: center;
}
.text-end {
    text-align: right;
}
html ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.text-light {
    color: var(--light);
}
.title h2.text-light:after {
    background: var(--light);
}



header {
    padding: 5px 0;
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    transition: all 0.4s;
    background: var(--primary);
}
.HeaderSticky .headerLogo a {
    width: 70px;
}
.menu-toggle,
.overlay {
    display: none;
}
.header-wpr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerLogo a {
    display: block;
    width: 82px;
}
.headerLogo a:hover {
    transform: scale(0.9);
}
.headerLogo a img {
    width: 100%;
}
.header-menu ul {
    display: flex;
    align-items: center;
}
.header-menu ul li {
    margin-right: 32px;
}
.header-menu ul li:last-child {
    margin-right: 0;
}
.header-menu ul li a {
    font-size: 18px;
    line-height: 150%;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    color: var(--light);
}
.header-menu ul li a:after {
    content: '';
    display: block;
    width: 0%;
    height: 1px;
    background: var(--light);
    transition: all 0.4s;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
}
.header-menu ul li a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}
.header-menu ul li a:hover {
    opacity: 0.7;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50px;
    color: var(--light);
    background: rgba(240, 246, 242, 0.1);
    position: relative;
    z-index: 1;
}
.search-icon a:hover {
    background: var(--light);
    color: var(--primary);
}


.btn {
    font-family: 'Noto Sans Condensed';
    font-size: 18px;
    font-weight: 600;
    background: var(--light);
    color: var(--primary);
    line-height: 44px;
    border-radius: 50px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    border: 0;
}
.icon-btn {
    gap: 10px;
    padding-left: 5px;
}
.icon-btn .icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 122 67 / 14%);
    border-radius: 50px;
    transition: all 0.4s;
}
.btn:hover {
    background: var(--secondary);
    color: var(--light);
}
.btn:hover .icon {
    background: #FFF;
}
.btn-light {
    background: var(--light);
    color: var(--dark);
}
.btn-light:hover {
    background: var(--dark);
    color: var(--light);
}
.btn-outline-primary {
    background: transparent;
    color: var(--dark);
}
.btn-outline-primary:hover {
    background: var(--dark);
    color: var(--light);
}
.btn-outline-light {
    background: transparent;
    color: var(--light);
}
.text_center {
    text-align: center;
}
.title {
    margin-bottom: 17px;
}
.title h2 {
    font-size: 18px;
    line-height: 130%;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fontEN);
}
.title-lg h2 {
    font-size: 22px;
}
.title h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 1.6px;
    background: #3EAA5D;
    margin-bottom: -3px;
    border-radius: 10px;
}
.mt-10 {
    margin-top: 10px;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-30 {
    margin-bottom: 30px;
}
.advBanner .box {
    background: rgba(69, 141, 90, 0.08);
}
.advBanner .box img{
    display: block;
    width: 100%;
}
.advBanner > .box {
    margin-bottom: 30px;
}
.advBanner > .box:last-child {
    margin-bottom: 0;
}
.advBanner .box h6 {
    margin: 0;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--fontEN);
    word-break: break-all;
}
.badge {
    display: inline-block;
    padding: 0 22px;
    font-size: 13px;
    line-height: 29px;
    background: #458D5A;
    border-radius: 40px;
    margin-bottom: 16px;
}
.border-left {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.Rgap30 {
    row-gap: 30px;
}
.sticky-element {
    position: sticky;
    top: 104px;
}
.footer {
    padding-top: 50px;
    background: #fff !important;
}
.Footerlogo a img {
    width: inherit;
    height: inherit;
}
.Footerlogo a {
    display: block;
    width: 103px;
}
.Footerlogo a:hover {
    transform: scale(0.9);
}
.QuickLinks h4,
.FollowUs h4 {
    font-weight: 600;
    font-size: 19px;
    line-height: 130%;
    color: var(--primary);
    margin-bottom: 16px;
    font-family: var(--fontEN);
}
.QuickLinks ul li {
    margin-bottom: 12px;
}
.QuickLinks ul li:last-child {
    margin-bottom: 0;
}
.QuickLinks ul li a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    line-height: 130%;
}
.QuickLinks ul li a:hover {
    color: var(--primary);
}
.PageLinks ul li a {
    font-weight: 400;
    font-family: var(--fontEN);
}
.FollowUs ul {
    display: flex;
    gap: 10px;
}
.FollowUs ul li a {
    width: 38px;
    height: 38px;
    background: #F0F6F2;
    color: var(--dark);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.FollowUs ul li a:hover {
    background: var(--primary);
    color: var(--light);
}
.copyRight {
    padding: 18px;
    text-align: center;
    background: var(--primary);
    color: var(--light);
    font-size: 15px;
    line-height: 130%;
    font-weight: 400;
    margin-top: 50px;
    font-family: var(--fontEN);
}
.ctaBox {
    color: var(--light);
    padding: 50px;
    border-radius: 12px;
    /*background-image: url('../images/cta-bg.jpg');*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.ctaBox:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 31, 17, 0.5) 0%, rgba(0, 31, 17, 0) 100%);
    z-index: -1;
}
.ctaBox h5 {
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--fontEN);
}
.ctaBox h2 {
    font-size: 28px;
    line-height: 140%;
    font-weight: 600;
    margin-bottom: 0;
    width: 510px;
    max-width: 100%;
    font-family: var(--fontEN);
}
.form_group {
    width: 526px;
    max-width: 100%;
    margin-left: auto;
    border: 5px solid var(--light);
    background: var(--light);
    border-radius: 13px;
    display: flex;
    gap: 10px;
    font-family: var(--fontEN);
}
.form_group .form_control {
    width: 100%;
    height: 44px;
    padding: 5px 18px;
    background: var(--light);
    border: 0;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    outline: 0;
    font-family: var(--fontEN);
}
.form_group .btn {
    padding: 0 20px;
    line-height: 44px;
    border-radius: 9px;
    background: var(--primary);
    color: var(--light);
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    outline: 0;
    font-family: var(--fontEN);
}
.form_group .btn:hover {
    background: var(--secondary);
}


.boxNews .image a {
    display: block;
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}
.boxNews .image a:hover {
    transform: scale(0.97);
}
.boxNews .image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}
.boxNews .image a:hover img {
    transform: scale(1.15);
}
.boxNews h6 {
    font-size: 12px;
    line-height: 130%;
    font-weight: 400;
    color: var(--dark);
    opacity: 0.6;
    margin-bottom: 4px;
    font-family: var(--fontEN);
}
.boxNews h3 {
    font-size: 18px;
    line-height: 140%;
    font-weight: 600;
    color: var(--dark) !important;
    margin-bottom: 0;
}
.boxNews h3:hover {
    color: var(--primary);
}
.LightboxNews h6 {
    color: var(--light);
}
.LightboxNews h3 {
    color: var(--light);
}
.LightboxNews h3:hover a {
    color: var(--light);
    opacity: 0.7;
}
.hide {
    display: none;
}
html .popup {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgb(0 0 0 / 80%);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}
html .popup.show {
    visibility: visible;
    opacity: 1;
}
html .popup .close-icon {
    border: 0;
    border-radius: 50px;
    padding: 0;
    width: 36px;
    height: 36px;
    background: var(--light);
    color: var(--primary);
    font-size: 26px;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -18px;
    right: -18px;
    cursor: pointer;
}
html .popup .close-icon:hover {
    transform: rotate(90deg);
    transition: all 0.4s;
}
html .popup .pp_video {
    width: 700px;
    max-width: 100%;
    position: relative;
}
html .popup .pp_video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 2px solid var(--light);
    box-shadow: 6px 6px 0 0 var(--light);
    border-radius: 16px;
    background: var(--dark);
}
/*html .newscarousel .owl-nav .disabled {*/
/*    pointer-events: none;*/
/*}*/
html .newscarousel .owl-nav {
    margin: 0;
}
html .newscarousel .owl-nav [class*="owl-"] {
    font-size: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #FFF;
    border-radius: 50px;
    transition: all 0.4s;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 10px;
}
html .newscarousel .owl-nav [class*="owl-"]:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url('data:image/svg+xml,<svg width="17" height="13" viewBox="0 0 17 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.5303 7.03033C16.8232 6.73744 16.8232 6.26256 16.5303 5.96967L11.7574 1.1967C11.4645 0.903806 10.9896 0.903806 10.6967 1.1967C10.4038 1.48959 10.4038 1.96447 10.6967 2.25736L14.9393 6.5L10.6967 10.7426C10.4038 11.0355 10.4038 11.5104 10.6967 11.8033C10.9896 12.0962 11.4645 12.0962 11.7574 11.8033L16.5303 7.03033ZM0 7.25H16V5.75H0V7.25Z" fill="%23140047"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s;
}
html .newscarousel .owl-nav .owl-prev {
    right: auto;
    left: 0;
}
html .newscarousel .owl-nav .owl-prev:before {
    transform: scaleX(-1);
}
html .newscarousel .owl-nav [class*="owl-"]:hover {
    background: var(--primary);
}
html .newscarousel .owl-nav [class*="owl-"]:hover:before {
    filter: brightness(0) invert(1);
}

html .newscarousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    bottom: 12px;
    position: absolute;
    left: 0;
    right: 0;
}
html .newscarousel .owl-dots [class*="owl-"] {
    margin: 0;
    width: 10px;
    height: 10px;
    background: #FFF;
    transition: all 0.4s;
    border-radius: 50px;
    opacity: 0.5;
}
html .newscarousel .owl-dots .active {
    opacity: 1;
}
html .newscarousel .owl-dots [class*="owl-"] span {
    display: none;
}
.boxNewsImg .image img {
    height: 180px;
    width: 100%;
    margin-bottom: 20px;
}
.boxNewsImg {
    text-align: center;
}
.boxNewsImg h3 {
    transition: all .4s ease;
}
.boxNewsImg:hover h3 {
    color: #fff !important;
}
ul.pagination {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
ul.pagination li span, ul.pagination li a {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    display: grid;
    place-items: center;
    transition: all .4s ease;
}
ul.pagination li.active span{
    color: #ffffff;
}
ul.pagination li a:hover {
    background: #000;
    color: #fff;
}
ul.pagination li.disabled span {
    border: 1px solid grey;
    color: grey;
    cursor: default;
}
.pagination {
    width: 100%;
}
.topNews p {
    line-height: 1.8;
}
.newsheadline {
    width: 100%;
    padding: 8px 0;
    background: var(--secondary);
    margin-bottom: 30px;
}
.newsheadline .line {
    display: flex;
    align-items: center;
    overflow: hidden;
}
.newsheadline .line h6 {
    color: var(--light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 20px;
    padding-right: 24px;
    position: relative;
    white-space: nowrap;
}
.newsheadline .line h6:after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: var(--light);
    border-radius: 50px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.newsheadline .line h6 a {
    color: inherit;
}
.newsheadline .line h6 a:hover {
    opacity: 0.7;
}

@media (max-width:1200px) {
    .menu-toggle {
        display: block;
        width: 40px;
        min-width: 40px;
        height: 40px;
        margin-left: 10px;
        position: relative;
    }
    .menu-toggle span {
        display: block;
        width: 90%;
        height: 2px;
        background: var(--light);
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        margin-right: 0;
        transition: all 0.4s;
    }
    .menu-toggle span:first-child {
        top: -16px;
        width: 60%;
        margin-left: auto;
        margin-right: 0;
    }
    .menu-toggle span:last-child {
        bottom: -16px;
        width: 60%;
        margin-left: auto;
        margin-right: 0;
    }
    .header-menu {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        width: 350px;
        background: var(--primary);
        padding: 40px;
        padding-top: 30px;
        padding-right: 22px;
        z-index: 99;
        transform: translateX(100%);
        transition: all 0.6s;
    }
    .show .header-menu {
        transform: translateX(0%);
    }
    .header-menu ul {
        display: block;
    }
    .header-menu ul li {
        margin-right: 0;
        margin-bottom: 12px;
    }
    .header-menu .menu-toggle {
        margin-left: auto;
        margin-bottom: 30px;
    }
    .header-menu .menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    .header-menu .menu-toggle span:first-child,
    .header-menu .menu-toggle span:last-child {
        top: 0;
        bottom: 0;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        transform: rotate(45deg);
    }
    .header-menu .menu-toggle span:last-child {
        transform: rotate(-45deg);
    }
    .header-actions {
        margin-left: auto;
    }
    .overlay {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgb(0 0 0 / 70%);
        backdrop-filter: saturate(180%) blur(12px);
        -webkit-backdrop-filter: saturate(180%) blur(12px);
        z-index: 9;
        visibility: hidden;
        opacity: 0;
        transition: all 0.6s;
    }
    .show .overlay {
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width:991px) {
    .newsheadline {
        margin-bottom: 20px;
    }
    .newsheadline .line h6 {
        font-size: 12px;
        margin-right: 20px;
        padding-right: 24px;
    }
    body {
        font-size: 14px;
    }
    .boxNewsImg .image img {
        height: 150px;
    }
    .row {
        margin: 0 -8px;
    }
    .gx-5 {
        margin: 0 -15px;
    }
    .col {
        padding: 0 8px;
    }
    .gx-5 > * {
        padding: 0 15px;
    }
    .container {
        padding: 0 20px;
    }
    .advBanner .box h6 {
        font-size: 14px;
    }
    .badge {
        padding: 0 16px;
        font-size: 12px;
        line-height: 28px;
        margin-bottom: 8px;
    }
    .title h2 {
        font-size: 16px;
        gap: 6px;
    }
    .title h2:after {
        width: 30px;
        margin-bottom: -1px;
    }
    .Rgap30 {
        row-gap: 20px;
    }
    .mb-30 {
        margin-bottom: 20px;
    }
    .footer {
        padding-top: 40px;
    }
    .Footerlogo a {
        width: 60px;
    }
    .QuickLinks h4, .FollowUs h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }
    .QuickLinks ul li {
        margin-bottom: 8px;
    }
    .QuickLinks ul li a {
        font-size: 12px;
    }
    .FollowUs ul {
        gap: 8px;
    }
    .FollowUs ul li a {
        width: 30px;
        height: 30px;
    }
    .copyRight {
        padding: 14px;
        font-size: 13px;
        margin-top: 40px;
    }
    .ctaBox {
        padding: 30px;
    }
    .ctaBox h5 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .ctaBox h2 {
        font-size: 18px;
    }
    .form_group {
        border: 2px solid var(--light);
        border-radius: 8px;
        gap: 4px;
    }
    .form_group .form_control {
        height: 38px;
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 14px;
    }
    .form_group .btn {
        padding: 0 16px;
        line-height: 38px;
        border-radius: 6px;
        font-size: 14px;
    }
    .boxNews .image a {
        height: 100px;
        border-radius: 6px;
        margin-bottom: 10px;
    }
    .boxNews h6 {
        font-size: 11px;
    }
    .boxNews h3 {
        font-size: 12px;
    }
    .advBanner > .box {
        margin-bottom: 16px;
    }
    html .newscarousel .owl-nav [class*="owl-"] {
        display: none;
    }
}

@media (max-width:767px) {
    .newsheadline .line h6 {
        font-size: 11px;
        margin-right: 15px;
        padding-right: 20px;
    }
    body {
        padding-top: 74px;
        font-size: 12px;
    }
    .gx-5 {
        margin: 0 -8px;
    }
    .gx-5 > * {
        padding: 0 8px;
    }
    .col {
        width: 100%;
    }
    .border-left {
        border-left: 0;
    }
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .title {
        margin-bottom: 12px;
    }
    .sticky-element {
        position: relative;
        top: 0;
    }
    .headerLogo a {
        width: 60px;
    }
    .HeaderSticky .headerLogo a {
        width: 50px;
    }
    .btn {
        font-size: 16px;
        line-height: 38px;
        padding: 0 22px;
    }
    .icon-btn {
        gap: 6px;
        padding-left: 5px;
    }
    .icon-btn .icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    .header-menu {
        width: 100%;
    }
    .advBanner [class*="col-"] .box {
        margin-bottom: 20px;
    }
    .advBanner [class*="col-"]:last-child .box {
        margin-bottom: 0;
    }
    .footer {
        padding-top: 20px;
    }
    .Footerlogo a {
        width: 80px;
        margin-bottom: 20px;
    }
    .QuickLinks {
        margin-bottom: 20px;
    }
    .QuickLinks h4, .FollowUs h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .QuickLinks ul li {
        margin-bottom: 6px;
    }
    .QuickLinks ul li a {
        font-size: 14px;
    }
    .copyRight {
        padding: 12px;
        font-size: 12px;
        margin-top: 20px;
    }
    .ctaBox {
        padding: 20px;
        border-radius: 10px;
    }
    .ctaBox h5 {
        font-size: 12px;
        margin-bottom: 5px;
        text-align: center;
        letter-spacing: 0.15em;
    }
    .ctaBox h2 {
        font-size: 14px;
        text-align: center;
    }
    .form_group {
        margin-top: 12px;
    }
    .boxNews .image a {
        height: 200px;
        margin-bottom: 12px;
    }
    .boxNews h6 {
        font-size: 12px;
    }
    .boxNews h3 {
        font-size: 14px;
    }
    .col-revers-sm {
        flex-direction: column-reverse;
    }
    .panchang-image {
        height: 300px !important;
    }
}
@media (max-width:425px) {
    .panchang-image {
        height: 270px !important;
    }
}

.advBanner > a {
    display: block;
    margin-bottom: 30px;
}
.panchang_list .boxNews h6 {
    opacity: 1;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}
.advBanner .box img {
    display: block;
    width: 100%;
    max-height: 150px;
    object-fit: cover;
}