@font-face {
    font-family: 'Noto-Sans';
    src: url('../fonts/NotoSans-Black.woff2') format('woff2'), url('../fonts/NotoSans-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto-Sans';
    src: url('../fonts/NotoSans-ExtraBold.woff2') format('woff2'), url('../fonts/NotoSans-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto-Sans';
    src: url('../fonts/NotoSans-Bold.woff2') format('woff2'), url('../fonts/NotoSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto-Sans';
    src: url('../fonts/NotoSans-Light.woff2') format('woff2'), url('../fonts/NotoSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto-Sans';
    src: url('../fonts/NotoSans-Medium.woff2') format('woff2'), url('../fonts/NotoSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto-Sans';
    src: url('../fonts/NotoSans-Regular.woff2') format('woff2'), url('../fonts/NotoSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto-Sans';
    src: url('../fonts/NotoSans-Thin.woff2') format('woff2'), url('../fonts/NotoSans-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto-Sans';
    src: url('../fonts/NotoSans-SemiBold.woff2') format('woff2'), url('../fonts/NotoSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}




body {
    margin: 0 auto;
    font-family: 'Noto-Sans';
}

.container {
    max-width: initial;
    padding: 0 100px;
}

.branding {
    display: inline-block;
    margin-top: 18px;
}

header.home {
    height: 84px;
    width: 100%;
    background: #000000;
    background: linear-gradient(180deg,rgba(58, 26, 8, 0.88) 0%, rgba(0, 0, 0, 0.1) 100%);
    padding-top: 7px;
    border-top: 3px solid #ff6a1c;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.main-nav > ul {
    display: flex;
    margin-top: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .main-nav > ul > li {
        position: relative;
    }

        .main-nav > ul > li > a .arrow {
            height: 7px;
            width: 7px;
            border-right: 1px solid #000;
            border-bottom: 1px solid #000;
            transform: rotate(45deg);
            margin: 0 auto;
        }

        .main-nav > ul > li:hover > a .arrow {
            border-color: #fff;
        }

        .main-nav > ul > li:hover > a {
            color: #f5a046;
        }

        .main-nav > ul > li > a {
            color: #fff;
            padding: 10px 10px 10px 10px;
            position: relative;
            font-size: 16px;
            display: flex;
            align-items: center;
            border-radius: 5px 5px 0 0;
            transition: 0.3s;
            text-decoration: none;
            white-space: nowrap;
        }

            .main-nav > ul > li > a.active {
                color: #f5a046;
                font-size: 16px;
                font-weight: 700;
            }

                .main-nav > ul > li > a.active:after {
                    content: "";
                    position: absolute;
                    bottom: 0px;
                    left: 0;
                    width: 100%;
                    height: 3px;
                    background-color: #f5a046;
                }

.main-nav ul li ul.submenu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    background: #fff;
    width: 300px;
    padding: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 5px 5px;
    opacity: 0;
    transition: 0.5s;
    height: 0;
    z-index: 0;
}

.main-nav ul li:hover ul.submenu {
    display: block;
    opacity: 1;
    height: auto;
    padding: 18px 0 18px;
    z-index: 9;
}

.main-nav ul li ul.submenu li {
    margin-bottom: 8px;
    padding: 0 18px;
    position: relative;
    display: none;
}

.main-nav ul li:hover ul.submenu li {
    display: block;
}

.main-nav ul li ul.submenu li:last-child {
    margin: 0;
}

.main-nav ul li ul.submenu li a {
    margin-top: 10px;
    display: block;
    font-size: 13px;
    color: #333;
    padding: 7px 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
    position: relative;
    transition: 0.3s;
    background: transparent;
    text-decoration: none;
}

.main-nav ul li ul.submenu > li:hover > a {
    background: #ffe1d0;
}

.main-nav ul li ul.submenu li a:after {
    content: url(../../index.html);
    position: absolute;
    top: 7px;
    right: 15px;
    display: block !important;
}

.main-nav ul li ul.submenu li a.active:after {
    content: url(../../index.html);
}

.main-nav ul li ul.submenu li a.active {
    color: #fff;
    background: #26448c;
}

.main-nav ul li ul.submenu li a:after {
    display: none;
}

.main-nav ul li ul.submenu li ul.submenu-L2 {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    width: 300px;
    padding: 18px 0 18px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.5);
    border-radius: 0 5px 5px 0;
    opacity: 0;
    transition: 0.3s;
    height: 0;
}

.main-nav ul li ul.submenu li:hover ul.submenu-L2 {
    display: block;
    opacity: 1;
    height: auto;
}

.main-nav ul li ul.submenu li ul.submenu-L2 > li:hover > a {
    background: #d9edff;
}

.main-nav > ul > li > a .arrow {
    height: 9px;
    width: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin: 0 auto;
}

.main-nav > ul > li:hover > a .arrow {
    border-color: #f5a046;
}

.home.scrolled .top-bar-right {
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
}

header.home.scrolled {
    height: 84px;
    background: #f47216;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.5);
}

.home.scrolled .main-nav > ul > li > a.active {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

    .home.scrolled .main-nav > ul > li > a.active:after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #ffffff;
    }
/*.home.scrolled .main-nav > ul > li > a { color:#000; }
.home.scrolled .header-buttons .hamburger-menu .hamburger .vbp-header-menu-button__svg line { stroke: #000; }*/
.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    justify-content: end;
    color: #fff;
    transition: all 0.5s ease;
}

    .top-bar-right a {
        color: #fff;
        text-decoration: none;
        font-size: 12px;
    }

    .top-bar-right .language {
        position: relative;
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.12);
        padding: 5px 12px;
        border-radius: 16px;
    }

        .top-bar-right .language i {
            font-size: 12px;
            color: #fff;
        }

        .top-bar-right .language select {
            background: transparent;
            border: none;
            font-weight: 500;
            color: #fff;
            font-size: 12px;
        }

            .top-bar-right .language select option {
                padding: 4px 10px;
                color: #333;
            }

        .top-bar-right .language img {
            display: inline-block;
            vertical-align: text-bottom;
            height: max-content;
        }

.bottom-header {
    display: flex;
    justify-content: end;
    align-items: center; /*margin-top: 7px;*/
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.search-icon {
    font-size: 1.2rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s;
    padding-right: 10px;
    margin-left: 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    line-height: 1.1;
}

    .search-icon:hover, .cart-icon:hover {
        color: #f5a046;
    }

.topsrchbx {
    display: none;
    position: absolute;
    background: #fff;
    top: 35px;
    width: 500px;
    padding: 10px;
    right: 0px;
    z-index: 99;
    border-radius: 0 0 5px 5px;
}

.topsrchinpt {
    padding: 5px;
    margin: 0px;
    width: calc(100% - 50px);
    float: left;
    font-size: 15px;
    border: 1px solid #f47216;
    border-radius: 4px 0 0 4px;
    height: 36px;
}

.topsrchbx button {
    margin: 0px;
    border-left: none;
    position: relative;
    right: 0px;
    padding: 7px 7px 6px;
    font-size: 15px;
    border-radius: 0 4px 4px 0;
    background: #f47216;
    height: 36px;
    color: #fff;
    border: none;
}




/* Hamburger Menu */

.hamburger-list {
    background-color: #f2f2f2;
    display: none;
    position: absolute;
    width: 200px;
    right: 0;
    top: 45px;
}

    .hamburger-list ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
    }

        .hamburger-list ul li a {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 500;
        }

            .hamburger-list ul li a:hover {
                background-color: #ddd;
            }

.vbp-header-menu-button__svg {
    width: 25px;
    height: 24px;
    cursor: pointer;
    transform: scaleX(-1);
}

    .vbp-header-menu-button__svg line {
        stroke: #fff;
        stroke-dasharray: 100%;
        stroke-dashoffset: 0%;
        transition: transform 0.3s, stroke-dashoffset .4s;
        transform-origin: center;
        stroke-width: 2px;
    }

    .vbp-header-menu-button__svg .top {
        transform: translateY(-35%);
        -webkit-transform: translateY(-35%);
        -moz-transform: translateY(35%);
        -ms-transform: translateY(35%);
        -o-transform: translateY(35%);
        stroke-dasharray: 100%;
        stroke-dashoffset: 9px;
    }

    .vbp-header-menu-button__svg:hover .top {
        stroke-dashoffset: 0%;
    }

    .vbp-header-menu-button__svg .middle {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
        transition: opacity .3s, transform .3s;
        -webkit-transition: opacity .3s, transform .3s;
        -moz-transition: opacity .3s, transform .3s;
        -ms-transition: opacity .3s, transform .3s;
        -o-transition: opacity .3s, transform .3s;
    }

    .vbp-header-menu-button__svg .bottom {
        transform: translateY(33%);
        -webkit-transform: translateY(33%);
        -moz-transform: translateY(33%);
        -ms-transform: translateY(33%);
        -o-transform: translateY(33%);
    }

/*** Mode Croix ***/
body.menu-open .vbp-header-menu-button__svg .top {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    stroke-linecap: round;
}

body.menu-open .vbp-header-menu-button__svg .middle {
    transform: scaleX(0.1);
    -webkit-transform: scaleX(0.1);
    -moz-transform: scaleX(0.1);
    -ms-transform: scaleX(0.1);
    -o-transform: scaleX(0.1);
    opacity: 0;
}

body.menu-open .vbp-header-menu-button__svg line.bottom {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    stroke-linecap: round;
}

body.menu-open .vbp-header-menu-button__svg .top {
    stroke-dashoffset: 0%;
}


/* Hero Section */

.hero {
    background-color: #fff;
    padding: 0;
    overflow: hidden;
    position: relative;
}

    .hero .container {
        display: flex;
        align-items: center;
        gap: 30px;
        position: relative;
        z-index: 1;
    }

.hero-content {
    flex: 1;
}

    .hero-content h1 {
        font-size: 2.5rem;
        color: var(--dark-blue);
        margin-bottom: 10px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.2rem;
        color: var(--dark-gray);
        margin-bottom: 20px;
    }

.hero_carosel .owl-nav button.owl-prev, .hero_carosel .owl-nav button.owl-next {
    position: absolute;
    bottom: 50%;
    right: 50%;
    color: #000;
    transition: 0.3s;
}

.hero_carosel .owl-nav button.owl-prev {
    left: 0
}

.hero_carosel .owl-nav button.owl-next {
    right: 0
}

.hero_carosel .owl-nav button.owl-prev:hover {
    left: 15px;
}

.hero_carosel .owl-nav button.owl-next:hover {
    right: 15px;
}

.hero_carosel.owl-carousel.owl-theme .owl-nav [class*='owl-'] {
    color: #444;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.hero_carosel.owl-carousel.owl-theme.owl-loaded a {
    text-decoration: none;
}

.hero_carosel i.owl-direction {
    margin: 0 13px;
    font-size: 3em;
    padding: 0;
    color: #607D8B;
}

.hero_carosel .owl-nav button.owl-next, .hero_carosel .owl-nav button.owl-prev {
    outline: 0;
    background: #FFF;
    width: 60px;
}

.tag {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero_carosel .ban2 {
    font-size: 33px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    width: 50%;
}

.hero_carosel .banner-box {
    display: inline-block;
    padding: 11px 40px;
    background: transparent;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #fff;
    transition: 0.3s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

.desc {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
    max-width: initial;
    padding: 0 100px;
}

.owl-carousel .owl-item .desc img {
    width: auto;
    display: inline-block;
}

.desc h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.desc h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.desc .desc-cont {
    font-size: 23px;
    color: #f5a046;
    margin-bottom: 15px;
    font-weight: normal;
}

.desc .carsl_btn {
    margin-bottom: 25px;
}

    .desc .carsl_btn img {
        width: auto !important;
    }

.hero-img {
    position: relative;
}

.btn-gradient-bg {
    display: inline-block;
    padding: 11px 20px;
    background: transparent;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #fff;
    transition: 0.3s;
}

    .btn-gradient-bg:hover {
        background: #f47216;
        color: #fff;
        border-color: #f47216;
    }

.delay-1 {
    animation-delay: .2s;
}

.delay-2 {
    animation-delay: .4s;
}

.delay-3 {
    animation-delay: .6s;
}

.delay-4 {
    animation-delay: .8s;
}

.slider-counter {
    z-index: 99;
    bottom: 1%;
    position: absolute;
    text-align: center;
    right: 4%;
    font-size: 120px;
    color: rgba(242, 242, 242, 0.7);
    font-weight: 700;
}

.hero .owl-theme .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 100px;
}

    .hero .owl-theme .owl-dots .owl-dot span {
        background: #ffffff;
        margin: 5px 5px;
    }

    .hero .owl-theme .owl-dots .owl-dot.active span,
    .hero .owl-theme .owl-dots .owl-dot:hover span {
        background: #21509a;
    }

.hero .owl-nav button.owl-prev, .hero .owl-nav button.owl-next {
    position: absolute;
    bottom: 50%;
    right: 50%;
    color: #000;
    transition: 0.3s;
}

.hero .owl-nav button.owl-prev {
    left: 0
}

.hero .owl-nav button.owl-next {
    right: 0
}

.hero .owl-nav button.owl-prev:hover {
    left: 15px;
}

.hero .owl-nav button.owl-next:hover {
    right: 15px;
}

.hero.owl-carousel.owl-theme .owl-nav [class*='owl-'] {
    color: #444;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.hero.owl-carousel.owl-theme.owl-loaded a {
    text-decoration: none;
}

.hero .owl-nav button.owl-next, .hero .owl-nav button.owl-prev {
    outline: 0;
    background: #FFF;
    width: 60px;
}


.SecondLevelDropdown a .arrow {
    height: 9px;
    width: 9px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    margin: 0 auto;
    position: absolute;
    right: 10px;
    top: 9px;
}

.main-nav ul li ul.submenu li.SecondLevelDropdown {
}

    .main-nav ul li ul.submenu li.SecondLevelDropdown ul {
        margin: -2px 0 0 0;
        padding: 10px 0 8px 0;
        background: #ffefe6;
        border: 1px solid #ccc;
        border-top: 0;
        border-radius: 0 0 5px 5px;
        position: relative;
        visibility: hidden;
        opacity: 0;
        max-height: 0px;
        transition: all 0.5s ease;
    }

    .main-nav ul li ul.submenu li.SecondLevelDropdown li {
        margin: 0;
        padding: 0;
    }

        .main-nav ul li ul.submenu li.SecondLevelDropdown li a {
            margin-top: 0;
            border: 0;
            padding-left: 29px;
        }

    .main-nav ul li ul.submenu li.SecondLevelDropdown:hover ul {
        visibility: visible;
        opacity: 1;
        max-height: 500px
    }

    .main-nav ul li ul.submenu li.SecondLevelDropdown li:last-child a {
    }

    .main-nav ul li ul.submenu li.SecondLevelDropdown li a:hover {
        background: #fff
    }

    .main-nav ul li ul.submenu li.SecondLevelDropdown ul li a:before {
        content: "";
        width: 6px;
        height: 6px;
        position: absolute;
        left: 15px;
        background: #c90b0b;
        top: 14px;
    }

@media (max-width: 767px) {
    .slider-counter {
        font-size: 80px;
        font-weight: 600;
        bottom: 0
    }
}

@media (max-width: 576px) {
    .slider-counter {
        font-size: 30px;
        font-weight: 500;
        bottom: 0
    }
}


/* About Section */

.about-section {
    padding: 80px 0 100px;
    background: #fff;
}

    .about-section .about-col {
        display: flex;
        flex-wrap: wrap;
    }
    /*.about-section .about-img{position: relative; display: inline-block;width: 377px;}*/
    .about-section .about-img {
        position: relative;
        display: inline-block;
        width: calc(100% - 50px);
    }

#bg-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-section video {
    height: 100%;
    z-index: 1;
    position: relative;
}

.about-section .about-img img {
    position: relative;
    z-index: 1;
    border-radius: 15px;
}

.about-section .about-img:after {
    content: '';
    width: 25%;
    height: 40%;
    background: #e9e9e9;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 0;
    transition: 0.3s;
    border-radius: 15px 0 0;
}

.about-section .about-img:before {
    content: '';
    width: 80%;
    height: 65%;
    background: #e9e9e9;
    position: absolute;
    bottom: -25px;
    right: -25px;
    z-index: 0;
    transition: 0.3s;
    border-radius: 0 0 15px;
}

.about-section:hover .about-img:after {
    top: -20px;
    left: -20px;
    background: #ffbc99;
}

.about-section:hover .about-img:before {
    bottom: -35px;
    right: -35px;
    background: #ffbc99;
}

.about-section .about-col .about-content {
    width: calc(100% - 467px);
    margin-left: 90px;
}

.about-section span {
    font-size: 30px;
    color: #333;
    position: relative;
}

    .about-section span:after {
        content: '';
        width: 95px;
        height: 5px;
        background: #333;
        position: absolute;
        left: 100%;
        top: 50%;
        margin-left: 20px;
        transition: 0.3s;
    }

.about-section:hover span:after {
    background: #ff7934;
    width: 200px;
}

.about-section h3 {
    font-size: 35px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section h1 {
    font-size: 35px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section h4 {
    font-size: 24px;
    color: #ff6a1c;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    text-align: justify;
}

.about-section .read-more-btn {
    background-color: #ff7934;
    color: #fff;
    padding: 13px 50px 13px 20px;
    font-weight: 400;
    transition: all 0.3s;
    font-size: 0.9rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 20px;
    display: inline-block;
    border-radius: 7px;
}

    .about-section .read-more-btn:hover {
        background-color: #333;
    }

    .about-section .read-more-btn:after {
        content: url(../images/btn-arrow.png);
        position: absolute;
        right: 20px;
        top: 11px;
        transition: 0.3s;
    }

    .about-section .read-more-btn:hover:after {
        right: 10px;
    }


/* Mileston */

.milestone-section {
    background: #ff7e44 url(../images/ks-bg.png) no-repeat;
    background-size: cover;
    color: white;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
}

    .milestone-section h2 {
        margin-bottom: 40px;
        font-weight: 700;
        font-size: 35px;
        color: #fff;
    }

.timeline {
    display: flex;
    justify-content: center;
    gap: 130px;
    position: relative;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.milestone-section .image-container {
    padding: 15px;
    border: 1px solid #fff;
    transition: 0.3s;
    border-radius: 20px;
    width: 456px;
}

    .milestone-section .image-container img {
        border-radius: 15px;
    }
/*.milestone-section:hover .image-container{transform: rotate(5deg);}*/
.milestone-section .content-text {
    width: calc(100% - 456px);
    padding-left: 80px;
    text-align: left;
}

    .milestone-section .content-text .year-label {
        background: #fff;
        color: #f26c2f;
        display: inline-block;
        padding: 5px 15px;
        font-weight: bold;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .milestone-section .content-text h3 {
        font-size: 25px;
        font-weight: bold;
        margin: 10px 0 15px;
    }

    .milestone-section .content-text h4 {
        font-size: 22px;
        font-weight: 300;
        margin-bottom: 25px;
    }

    .milestone-section .content-text p {
        font-size: 16px;
        font-weight: 400;
    }

.milestone-content-wrapper {
    position: relative;
}

.milestone-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease-in-out;
    max-width: initial;
    padding: 0 100px;
    margin: 0 auto;
}

.milestone-section .owl-nav button {
    height: 37px;
    width: 37px;
    border-radius: 50%;
    border: 2px solid #ff7934;
    color: #ff7934;
    background: #fff;
    margin-left: 15px;
    transition: 0.3s;
}

    .milestone-section .owl-nav button:hover {
        background: #ff7934;
        color: #fff;
        border: 2px solid #fff;
    }

    .milestone-section .owl-nav button span {
        font-size: 40px;
        line-height: 22px;
    }

.milestone-section .miles-main {
    margin-bottom: 30px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 1px;
    background: white;
    z-index: 0;
    opacity: 0.7;
}

.year-item {
    position: relative;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    color: #fff;
    font-weight: 500;
}

    .year-item .circle {
        width: 12px;
        height: 12px;
        background-color: white;
        border-radius: 50%;
        display: block;
        margin: 0 auto 5px;
        transition: background-color 0.3s;
        position: relative;
    }

        .year-item .circle:after {
            content: '';
            background: #f26c2f;
            z-index: -1;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 1px solid #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    .year-item.active .circle:after {
        background-color: #fff;
    }

    .year-item .year {
        font-size: 20px;
        font-weight: 300;
        display: block;
        margin-bottom: 25px;
        opacity: 0.8;
    }

    .year-item.active .year {
        opacity: 1;
        font-weight: bold;
    }




/* Scroll Section */

.articles-media-section {
    background: linear-gradient(to right, #fce9e0 0%,#fce9e0 50%,#fff4ef 50%,#fff4ef 100%);
    padding: 90px 0;
    position: relative;
}

    .articles-media-section .container {
        position: relative;
        z-index: 1;
    }

    .articles-media-section .card-top {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #d3d3d3;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .articles-media-section h2 {
        font-size: 35px;
        margin-bottom: 10px;
        font-weight: 700;
        color: #333;
    }

    .articles-media-section .scroll-controls {
        text-align: right;
        margin-bottom: 10px;
    }

        .articles-media-section .scroll-controls button {
            width: 35px;
            height: 35px;
            border: 2px solid #f58941;
            background-color: transparent;
            color: #ff7934;
            font-size: 18px;
            border-radius: 50%;
            cursor: pointer;
            margin-left: 5px;
            transition: 0.3s;
        }

            .articles-media-section .scroll-controls button:hover {
                background: #ff7934;
                color: #fff;
            }

    .articles-media-section .scroll-box {
        height: 400px;
        overflow-y: hidden;
        padding-right: 5px;
        transition: all 0.3s;
    }

        .articles-media-section .scroll-box:hover {
            overflow-y: auto;
        }

    .articles-media-section .scroll-box {
        scrollbar-width: thin;
        scrollbar-color: #e66300 #fff;
    }

        .articles-media-section .scroll-box::-webkit-scrollbar {
            width: 6px;
        }

        .articles-media-section .scroll-box::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 10px;
        }

        .articles-media-section .scroll-box::-webkit-scrollbar-track {
            background: #fff;
        }

    .articles-media-section .card {
        display: flex;
        margin: 10px 0;
        padding: 10px 0;
        background: transparent;
        gap: 15px;
        border: 1px solid transparent;
        flex-direction: unset;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 10px;
    }

        .articles-media-section .card:hover {
            border: 1px solid #e66300;
            background: rgba(255,255,255,0.7);
            padding: 10px;
        }

        .articles-media-section .card img {
            width: 153px;
            height: 97px;
            object-fit: cover;
            border-radius: 7px;
        }

        .articles-media-section .card .info {
            flex: 1;
        }

            .articles-media-section .card .info .date {
                color: #e66300;
                font-weight: bold;
                margin-bottom: 4px;
            }

            .articles-media-section .card .info .ab-description {
                font-size: 14px;
                color: #333;
            }

    .articles-media-section .explore {
        margin-top: 15px;
        cursor: pointer;
        position: relative;
        display: inline-block;
    }

        .articles-media-section .explore a {
            font-weight: 400;
            color: #e66300;
            text-decoration: none;
            transition: 0.3s;
            padding: 8px 10px;
            display: inline-block;
        }

            .articles-media-section .explore a:hover {
                padding: 8px 10px;
            }

        .articles-media-section .explore .SMN_effect-36 a:before {
            border-width: 2px;
        }

        .articles-media-section .explore .SMN_effect-36 a:after {
            border-width: 2px;
        }

    .articles-media-section .articles-card {
        padding-right: 50px;
    }

    .articles-media-section .media-card {
        padding-left: 50px;
    }



/* Interview Section */

.interviews-section {
    padding: 80px 0;
    background: #fcfcfc;
}

    .interviews-section .column-header {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #d3d3d3;
        padding-bottom: 15px;
        margin-bottom: 40px;
    }

        .interviews-section .column-header h2 {
            font-size: 35px;
            font-weight: bold;
            color: #333;
        }

    .interviews-section .owl-stage-outer {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .interviews-section .ab-content-card {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        overflow: hidden;
    }

        .interviews-section .ab-content-card .card-image {
            overflow: hidden;
        }

            .interviews-section .ab-content-card .card-image img {
                transform: scale(1);
                transition: 0.3s;
            }

        .interviews-section .ab-content-card:hover .card-image img {
            transform: scale(1.1);
        }

    .interviews-section .card-info {
        background: #fff;
        padding: 25px 40px 35px;
        height: 250px;
    }

    .interviews-section .view-more {
        background-color: #ff7934;
        color: #fff;
        padding: 10px 50px 10px 20px;
        font-weight: 400;
        transition: all 0.3s;
        font-size: 0.9rem;
        position: relative;
        text-decoration: none;
        text-transform: uppercase;
        margin-top: 20px;
        display: inline-block;
        border-radius: 7px;
    }

        .interviews-section .view-more:hover {
            background-color: #333;
        }

        .interviews-section .view-more:after {
            content: url(../images/btn-arrow.png);
            position: absolute;
            right: 20px;
            top: 9px;
            transition: 0.3s;
        }

        .interviews-section .view-more:hover:after {
            right: 10px;
        }

    .interviews-section .ab-content-card .card-info h3 {
        font-size: 20px;
        color: #000;
    }

    .interviews-section .ab-content-card .card-info p {
        font-size: 14px;
        color: #373636;
    }

    .interviews-section .owl-nav button {
        height: 37px;
        width: 37px;
        border-radius: 50%;
        border: 2px solid #ff7934;
        color: #ff7934;
        background: #fff;
        margin-left: 15px;
        transition: 0.3s;
    }

        .interviews-section .owl-nav button:hover {
            background: #ff7934;
            color: #fff;
        }

        .interviews-section .owl-nav button span {
            font-size: 40px;
            line-height: 22px;
        }

    .interviews-section .column-header .inter-head {
        display: flex;
    }

    .interviews-section .column-header .view-all {
        float: left;
        margin-right: 20px;
        color: #333;
        font-size: 13px;
        border-radius: 4px;
        padding: 8px 15px;
        transition: 0.3s;
        text-decoration: none;
        font-weight: 500;
    }

        .interviews-section .column-header .view-all:hover {
            color: #ff7934;
            text-decoration: none;
        }


/* Gallery Section */

.gallery-section {
    padding: 50px 0;
}

.gallery-container {
    display: grid; /*grid-template-columns: 1fr 1fr;*/
    grid-template-columns: 1fr;
    gap: 50px;
}

.gallery h2 {
    font-size: 35px;
    color: #333;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 700;
    position: relative;
}

    .gallery h2:after {
        content: '';
        width: 95px;
        height: 5px;
        background: #FFf;
        position: absolute;
        left: 100%;
        top: 50%;
        margin-left: 20px;
    }

.gallery-section .view-all {
    float: right;
    color: #333;
    font-size: 13px;
    border-radius: 4px;
    padding: 8px 15px;
    transition: 0.3s;
    text-decoration: none;
    font-weight: 500;
}

    .gallery-section .view-all:hover {
        color: #ff7934;
        text-decoration: none;
    }

.gallery-grid {
    display: grid; /*grid-template-columns: repeat(2, 1fr);*/
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
}

    .gallery-item img {
        width: 100%;
        object-fit: cover;
        transition: transform 0.3s;
        position: relative;
        z-index: 1;
        display: inherit;
        border-radius: 10px;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    .gallery-item p {
        font-size: 16px;
        font-weight: 500;
        color: #333;
        line-height: 1.4;
        margin-top: 20px;
    }

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-text);
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s;
    z-index: 2;
}

.gallery-item:hover .play-icon {
    opacity: 1;
}


/* Social Media News */

.social-midia-news {
    background: #fdefe8;
    padding: 80px 0;
}

    .social-midia-news h3 {
        font-size: 35px;
        color: #333;
        font-weight: 700;
        margin-bottom: 50px;
    }

    .social-midia-news h4 {
        font-size: 20px;
        display: flex;
        font-weight: 700;
        margin-bottom: 20px;
    }

        .social-midia-news h4 .tweeter {
            fill: #333 !important;
        }

        .social-midia-news h4 .youtube {
            fill: #FF0000 !important;
        }

        .social-midia-news h4 .facebook {
            fill: #274699 !important;
        }

        .social-midia-news h4 svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            margin-left: 20px;
        }

    .social-midia-news .social-cart {
        background: #fff;
        width: 100%;
        padding: 15px;
        border-radius: 15px;
    }

.social-cart .face-width {
    width: 100%
}

/* Speech Section */

.speeches-wrapper {
    padding: 70px 0px;
    background-color: #f5f5f5;
}

    .speeches-wrapper h2 {
        font-size: 35px;
        font-weight: bold;
        color: #333;
        margin-bottom: 40px; /*display: flex; justify-content: space-between;*/
    }

    .speeches-wrapper .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
        gap: 30px;
    }

    .speeches-wrapper .card {
        display: flex;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.08);
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s ease;
        flex-direction: row;
    }

        .speeches-wrapper .card:hover {
            transform: translateY(-5px);
        }

        .speeches-wrapper .card img {
            width: 163px;
            object-fit: cover;
        }

    .speeches-wrapper .card-content {
        padding: 20px;
        width: calc(100% - 163px);
    }

    .speeches-wrapper .date {
        color: #f26522;
        font-weight: bold;
        display: block;
        margin-bottom: 10px;
    }

    .speeches-wrapper .card-content p {
        font-size: 16px;
        margin-bottom: 15px;
        color: #333;
    }

    .speeches-wrapper .card-content a {
        text-decoration: none;
        color: #ff9765;
        font-weight: 400;
        font-size: 14px;
        transition: 0.3s;
    }

        .speeches-wrapper .card-content a:hover {
            color: #f26522;
        }

        .speeches-wrapper .card-content a i {
            transition: 0.3s;
        }

        .speeches-wrapper .card-content a:hover i {
            margin-left: 10px;
        }


.speeach-head {
    display: flex;
    justify-content: space-between;
}

    .speeach-head .view-all {
        float: left;
        margin-right: 20px;
        color: #333;
        font-size: 13px;
        border-radius: 4px;
        padding: 8px 15px;
        transition: 0.3s;
        text-decoration: none;
        font-weight: 500;
    }

        .speeach-head .view-all:hover {
            color: #ff7934;
            text-decoration: none;
        }

/* Footer Section */

footer {
    background: #1e1e1e;
}

    footer .top-footer {
        padding: 50px 0;
    }

        footer .top-footer ul.footer-nav {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0 30px;
            padding: 0;
        }

        footer .top-footer h3 {
            font-size: 0.90rem;
            margin-bottom: 20px;
            color: #fff;
            padding-bottom: 5px;
            font-weight: 700;
        }

        footer .top-footer ul.footer-nav li {
            padding: 1px 0;
        }

        footer .top-footer a {
            color: #fff;
            font-size: 0.8rem;
            transition: color 0.3s;
            opacity: 0.7;
            display: block;
            font-weight: 300;
        }

            footer .top-footer a:hover {
                opacity: 1;
            }

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .social-icons a {
        padding: 6px 7px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        border: 2px solid #a5a5a5;
    }

    .social-icons path {
        fill: #a5a5a5 !important;
    }

    .social-icons a svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
        transition: transform 0.3s ease;
    }

    .social-icons a:hover svg {
        transform: scale(1.3);
    }

    .social-icons .tweeter:hover path {
        fill: #1DA1F2 !important;
    }

    .social-icons .instagram:hover path {
        fill: #E1306C !important;
    }

    .social-icons .youtube:hover path {
        fill: #FF0000 !important;
    }

    .social-icons .facebook:hover path {
        fill: #1877F2 !important;
    }

    .social-icons .linkedin:hover path {
        fill: #2f6cb4 !important;
    }

.contact-info p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: flex;
    gap: 15px;
    color: #fff;
    opacity: 0.7;
    line-height: 1.3;
    font-weight: 300;
}

.contact-info i {
    color: var(--primary-color);
    min-width: 20px;
}

/*
---------------------------------------
hover effect 36
---------------------------------------
*/

.SMN_effect-36 a:before, .SMN_effect-36 a:after {
    content: "";
    position: absolute;
}

.SMN_effect-36 a:before {
    top: -.1em;
    bottom: -.1em;
    left: -.4em;
    right: -.4em;
    border-width: .1em;
    border-style: solid;
    border-left: none;
    border-right: none;
    opacity: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform .3s ease-out, opacity .3s ease-out;
    transition: transform .3s ease-out, opacity .3s ease-out
}

.SMN_effect-36 a:after {
    top: -.4em;
    bottom: -.4em;
    left: -.1em;
    right: -.1em;
    border-width: .1em;
    border-style: solid;
    border-top: none;
    border-bottom: none;
    opacity: 0;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transition: -webkit-transform .3s ease-out, opacity .3s ease-out;
    transition: transform .3s ease-out, opacity .3s ease-out
}

.SMN_effect-36 a:hover {
    overflow: visible
}

    .SMN_effect-36 a:hover:before, .SMN_effect-36 a:hover:after {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

.SMN_effect-36a a:before, .SMN_effect-36a a:after, .SMN_effect-36a a span:before, .SMN_effect-36a a span:after {
    border-color: rgba(255, 255, 255, 0.4);
}





.topbanimg {
    position: relative;
}

    .topbanimg img {
        width: 100%;
    }

    .topbanimg .topbantext {
        position: absolute;
        left: 0;
        top: 50%;
        bottom: auto;
        transform: translate(0, -50%);
        color: #fff;
    }

/* Articles */

/* Page Header */


.page-header h1 {
    font-weight: 600;
    font-size: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

.breadcrumb a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

.breadcrumb .active {
    font-weight: 600;
    color: #fff;
}

.page-header::after {
    content: "";
    display: block;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    margin-top: 20px;
    margin-left: 100px;
}


/* Articles Main Sec */
.main-articles .mb-4, .my-4 {
    margin-bottom: 3rem !important;
}

.main-articles .card-body {
    padding: 1.25rem 1.25rem 1.25rem 3rem;
}

.main-articles {
    margin-top: 60px;
}

    .main-articles .card {
        flex-direction: row;
        border: none;
        transition: transform 0.2s ease-in-out;
    }

        .main-articles .card:hover {
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, .165);
            transform: scale(1.02);
            background-color: #fff;
        }

        .main-articles .card .card-img-top {
            width: 50%;
        }

.card-main a {
    color: #212529;
    text-decoration: none;
}

.card-main .card-text {
    color: #5c5c5c;
}

.card {
    border-radius: 10px;
}

.card-img-top {
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
}

    .card-img-top img {
        display: block;
        width: 100%;
    }

        .card-img-top img:hover .card-image img {
            transform: scale(1.1);
        }

    .card-img-top img {
        transition: 0.3s;
    }

        .card-img-top img:hover {
            transform: scale(1.1);
        }

.date-text {
    color: #ff6f00;
    font-weight: bold;
    font-size: 0.9rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.sidebar {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

    .sidebar .searchkey {
        border-radius: 30px;
        padding: 24px;
    }

    .sidebar li {
        list-style: none;
        padding: 10px 14px;
        font-size: 0.95rem;
        border-bottom: 1px solid #e3e3e3;
        transition: 0.3s;
    }

        .sidebar li:hover {
            transform: scale(1, 1);
            padding-left: 20px;
        }

    .sidebar ul li a {
        color: #212529;
    }

        .sidebar ul li a:hover {
            color: #ff6f00;
            text-decoration: none;
        }


/* Pagination Sec */
.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

    .custom-pagination .page-link {
        border: 1px solid #ddd;
        background-color: #fff;
        color: #333;
        margin: 0 4px;
        font-weight: 500;
        border-radius: 8px;
        min-width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
        transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    }

    .custom-pagination .page-item:first-child .page-link,
    .custom-pagination .page-item:last-child .page-link {
        width: auto;
        padding: 0 16px;
    }

    .custom-pagination .page-link:hover {
        border-color: #f47216;
        color: #f47216;
    }

    .custom-pagination .page-item.active .page-link {
        background-color: #f47216;
        border-color: #f47216;
        color: #fff;
        font-weight: bold;
    }

    .custom-pagination .page-item.disabled .page-link {
        opacity: 0.4;
        pointer-events: none;
    }

    .custom-pagination .ellipsis {
        padding: 0 10px;
        font-weight: bold;
    }




/* Start CSS Gallery page */

.gallery .tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

    .gallery .tab-buttons button {
        border: none;
        padding: 10px 30px;
        background-color: #fff;
        border-radius: 8px;
        font-weight: 600;
        margin: 0 10px;
        box-shadow: 0 0 0 1px #ddd;
        transition: all 0.3s ease;
    }

    .gallery .tab-buttons .active {
        border-bottom: 3px solid orange;
        color: black;
    }

.gallery .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

    .gallery .card:hover {
        transform: scale(1.02);
    }

.gallery a {
    color: #212529;
}

    .gallery a:hover {
        text-decoration: none;
    }

.gallery .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery .card-body {
    padding: 20px 30px;
    height: 60px;
}

.gallery .card-date {
    color: #f15a24;
    font-weight: bold;
    font-size: 0.9rem;
}

.gallery .card-title {
    font-weight: 600;
    font-size: 1rem;
}





/* Start CSS Gallery Inner page */

.gallery-inner .gallery-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 40px auto;
}

.gallery-inner .gallery-date {
    color: #f15a24;
    font-weight: bold;
    font-size: 0.95rem;
}

.gallery-inner .gallery-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.gallery-inner .gallery-description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 40px;
}

.gallery-inner .gallery-images img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.gallery-inner .gallery-images img {
    transition: 0.3s;
}

    .gallery-inner .gallery-images img:hover {
        transform: scale(1.05);
    }

/*   @media (min-width: 768px) {
     .gallery-inner .gallery-images img {
        height: 200px;
      }
    }
*/


/* Start CSS gallery-popup */

.gallery-inner .gallery-img {
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.gallery-inner .modal-content {
    border-radius: 15px;
}

.gallery-inner .modal-body img {
    width: 100%;
    border-radius: 10px;
}

.gallery-inner .modal-title {
    font-weight: bold;
}

.gallery-inner .gallery-date {
    color: #f15a24;
    font-weight: bold;
    font-size: 0.95rem;
}

.gallery-inner .carousel-control-prev-icon,
.gallery-inner .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}




/* Start CSS Parliament Page */
.parliament .reply-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease-in-out;
    border: 1px solid transparent;
}

    .parliament .reply-card:hover {
        transform: scale(1.02);
        border: 1px solid #c7c7c7;
    }

.parliament .reply-img {
    width: 173px;
    height: 173px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

    .parliament .reply-img .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        background: red;
        color: white;
        font-size: 18px;
        text-align: center;
        line-height: 30px;
        border-radius: 50%;
    }

.parliament .reply-content {
    margin-left: 35px;
    flex: 1;
}

.parliament .reply-date {
    color: #f15a24;
    font-size: 0.9rem;
    font-weight: bold;
}

.parliament .reply-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 3px;
    color: #333;
    margin-bottom: 16px;
}

.parliament .download-btn {
    background-color: #f47216;
    color: white;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
}

    .parliament .download-btn:hover {
        background-color: #ca5400;
    }

.parliament .reply-card .reply-content a {
    text-decoration: none;
}

.parliament .reply-card .position-relative:before {
    content: '';
    width: 65%;
    height: 65%;
    background: #e9e9e9;
    position: absolute;
    bottom: -11px;
    right: -11px;
    z-index: 0;
    transition: 0.3s;
    border-radius: 0 0 15px;
}

.parliament .reply-card:hover .position-relative:before {
    bottom: -13px;
    right: -13px;
    background: #ffbc99;
}

.parliament .reply-card .position-relative:after {
    content: '';
    width: 25%;
    height: 40%;
    background: #e9e9e9;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 0;
    transition: 0.3s;
    border-radius: 15px 0 0;
}

.parliament .reply-card:hover .position-relative:after {
    top: -12px;
    left: -12px;
    background: #ffbc99;
}





/* Start CSS Recent Media Page */

.recent-media {
    padding: 80px 0;
}

    .recent-media .news-card {
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 60px;
        position: relative;
        transition: transform 0.3s;
        background: #fff;
        /* box-shadow: 0 4px 15px rgba(0,0,0,0.1);*/
    }

        .recent-media .news-card:hover {
            transform: translateY(-6px);
        }

    .recent-media .news-thumb {
        /* position: relative;*/
        overflow: hidden;
    }

        .recent-media .news-thumb img {
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
            transition: transform 0.4s ease;
        }

    .recent-media .news-card:hover .news-thumb img {
        transform: scale(1.1);
    }

    .recent-media .news-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        color: #fff;
        opacity: 0;
        transition: opacity 0.4s ease;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .recent-media .news-card:hover .news-overlay {
        opacity: 1;
    }

    .recent-media .news-overlay .hoverdate {
        font-size: 14px;
        background-color: #f27127;
        padding: 8px;
        border-radius: 5px;
        width: 120px;
    }

    .recent-media .news-overlay .hover-top {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 60px;
        line-height: 24px;
    }

    .recent-media .news-overlay .hover-bot {
        font-size: 16px;
        line-height: 22px;
    }

    .recent-media .news-date {
        font-size: 14px;
        color: #f37021;
        font-weight: bold;
        margin: 12px 0 5px;
        padding: 0 25px 25px;
    }

    .recent-media .news-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        padding: 0 25px 25px;
    }

    .recent-media .news-card p {
        margin-top: 10px;
        text-align: left;
    }




/* Pagination Sec */
.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

    .custom-pagination .page-link {
        border: 1px solid #ddd;
        background-color: #fff;
        color: #333;
        margin: 0 4px;
        font-weight: 500;
        border-radius: 8px;
        min-width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
        transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    }

    .custom-pagination .page-item:first-child .page-link,
    .custom-pagination .page-item:last-child .page-link {
        width: auto;
        padding: 0 16px;
    }

    .custom-pagination .page-link:hover {
        border-color: #f47216;
        color: #f47216;
    }

    .custom-pagination .page-item.active .page-link {
        background-color: #f47216;
        border-color: #f47216;
        color: #fff;
        font-weight: bold;
    }

    .custom-pagination .page-item.disabled .page-link {
        opacity: 0.4;
        pointer-events: none;
    }

    .custom-pagination .ellipsis {
        padding: 0 10px;
        font-weight: bold;
    }

/* End CSS Recent Media Page */








/* ANIMATION PULSE Milestone */
@keyframes animated-border {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

#box {
    color: white;
    animation: animated-border 1.5s infinite;
}













/* Start CSS Menu for Mobile Page */

#mobile_nav {
    display: none;
}

.mobile_nav__svg {
    width: 25px;
    height: 24px;
    cursor: pointer;
    transform: scaleX(-1);
}

    .mobile_nav__svg line {
        stroke: #fff;
        stroke-dasharray: 100%;
        stroke-dashoffset: 0%;
        transition: transform 0.3s, stroke-dashoffset .4s;
        transform-origin: center;
        stroke-width: 2px;
    }

    .mobile_nav__svg .top {
        transform: translateY(-35%);
        -webkit-transform: translateY(-35%);
        -moz-transform: translateY(35%);
        -ms-transform: translateY(35%);
        -o-transform: translateY(35%);
        stroke-dasharray: 100%;
        stroke-dashoffset: 9px;
    }

    .mobile_nav__svg:hover .top {
        stroke-dashoffset: 0%;
    }

    .mobile_nav__svg .middle {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
        transition: opacity .3s, transform .3s;
        -webkit-transition: opacity .3s, transform .3s;
        -moz-transition: opacity .3s, transform .3s;
        -ms-transition: opacity .3s, transform .3s;
        -o-transition: opacity .3s, transform .3s;
    }

    .mobile_nav__svg .bottom {
        transform: translateY(33%);
        -webkit-transform: translateY(33%);
        -moz-transform: translateY(33%);
        -ms-transform: translateY(33%);
        -o-transform: translateY(33%);
    }

/*** Mode Croix ***/
#mobile_nav.active .mobile_nav__svg .top {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    stroke-linecap: round;
}

#mobile_nav.active .mobile_nav__svg .middle {
    transform: scaleX(0.1);
    -webkit-transform: scaleX(0.1);
    -moz-transform: scaleX(0.1);
    -ms-transform: scaleX(0.1);
    -o-transform: scaleX(0.1);
    opacity: 0;
}

#mobile_nav.active .mobile_nav__svg line.bottom {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    stroke-linecap: round;
}

#mobile_nav.active .mobile_nav__svg .top {
    stroke-dashoffset: 0%;
}

#mobile_nav {
    display: none;
}

@media(max-width:768px) {
    #mobile_nav {
        display: block;
        background: transparent;
        border: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%; /* hidden off-screen */
        width: 100%;
        height: 100%;
        background-color: #f47216;
        color: white;
        transition: left 0.3s ease-in-out;
        z-index: -1000;
        padding: 20px;
        padding-top: 90px;
        overflow: auto;
    }

        .main-nav ul li ul.submenu {
            width: 100%;
        }

        .main-nav.active {
            left: 0;
        }

    #mobile_nav {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .main-nav > ul {
        display: block;
    }

        .main-nav > ul > li > a {
            padding: 12px !important;
            font-size: 14px !important;
            background-color: #ff9c64;
            margin-bottom: 10px;
        }
    /*    .bottom-header {margin-top: 10px !important;}*/
}

@media(max-width:577px) {
    .main-nav {
        padding-top: 110px;
    }
}



@media(max-width:340px) {
    .main-nav {
        padding-top: 173px;
    }
}

/* End CSS Menu for Mobile Page */








.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .responsive-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }




.vedio-width .modal-dialog-centered {
    max-width: 600px;
}

    .vedio-width .modal-dialog-centered iframe {
        width: 100%;
    }



/* Start CSS Budget Page */


.budget .nav-tabs {
    border-bottom: none;
    justify-content: center;
    margin-top: 30px;
}

    .budget .nav-tabs .nav-item {
        margin: 0 5px;
    }

    .budget .nav-tabs .nav-link {
        border: 1px solid #ddd;
        border-radius: 5px;
        font-weight: 500;
        color: #333;
        padding: 10px 40px;
        background-color: #f2f2f2;
        border-bottom: 4px solid #f2f2f2;
    }

        .budget .nav-tabs .nav-link.active {
            background-color: #ffffff;
            color: #333;
            font-weight: bold;
            border: 1px solid #ddd;
            border-bottom: 4px solid #f47c2c;
        }
/*.budget .card {
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
   .budget .card:hover {
      transform: translateY(-5px);
    }
   .budget .card img {
      max-height: 350px;
      object-fit: cover;
    }
    .budget .card-title {
      margin-top: 10px;
      font-weight: bold;
    }*/

.budget .budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 80px;
    width: 60%;
    margin: 0 auto;
}

.budget .budget-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    text-align: center;
    background: #fff;
    padding: 30px;
}

    .budget .budget-card:hover {
        transform: translateY(-5px);
    }

    .budget .budget-card img {
        width: auto;
        height: auto;
        max-height: 350px;
        object-fit: cover;
    }

    .budget .budget-card .card-body {
        padding: 15px;
    }

    .budget .budget-card .card-title {
        font-weight: bold;
        margin-top: 10px;
        font-size: 24px;
    }

.budget .text-orange {
    color: #fd8720;
}

.budget .but-cant-spa {
    margin-top: 50px;
}

.budget .budget-speech {
    padding: 80px 0;
    background: #fce9e0 url(../images/budget-speech-back.jpg) no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
    margin: 60px 0;
}

    .budget .budget-speech h2 {
        font-size: 35px;
        font-weight: bold;
        color: #333;
        text-align: center;
        margin-bottom: 60px;
    }

    .budget .budget-speech iframe {
        width: 80%;
    }

.post-budget .postbud-cart {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-bottom: 25px;
    align-items: flex-start;
    transition: background 0.2s ease-in-out;
    border: 1px solid #ff7934;
}

    .post-budget .postbud-cart:hover {
        background-color: #fce9e0;
    }



    .post-budget .postbud-cart iframe {
        width: 100%;
        border: 19px solid #fce9e0;
        border-radius: 10px;
    }

    .post-budget .postbud-cart .postbyd-text {
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        line-height: 22px;
        padding: 30px 0;
        height: 110px;
    }


.budget-analysis {
    background: hsla(12, 65%, 95%, 1);
    background: linear-gradient(180deg, hsla(12, 65%, 95%, 1) 0%, hsla(0, 0%, 100%, 1) 19%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FBEFEC", endColorstr="#FFFFFF", GradientType=1 );
    margin-top: 50px;
}

    .budget-analysis .report-card {
        border-radius: 15px;
        padding: 40px;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        text-align: center;
        transition: transform 0.3s ease;
    }

        .budget-analysis .report-card:hover {
            transform: translateY(-5px);
        }

        .budget-analysis .report-card .rep-card-text {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .budget-analysis .report-card img {
            /* width: 100%;*/
            height: auto;
            max-height: 320px;
            object-fit: cover;
            margin-top: 15px;
            border-radius: 8px;
        }

    .budget-analysis .report-date {
        color: #ff6600;
        font-size: 14px;
        font-weight: 600;
        text-align: left;
    }

    .budget-analysis .pdf-btn {
        background: #ff0000;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        padding: 5px 15px;
        border-radius: 6px;
        text-decoration: none;
        transition: background 0.3s;
        display: flex;
    }

        .budget-analysis .pdf-btn:hover {
            background: #cc0000;
            text-decoration: none;
            color: #fff;
        }

    .budget-analysis .owl-carousel .owl-item img {
        display: block;
        width: 50%;
        margin: 0 auto;
    }




.budget .reaction-section {
    background: #fce9e0 url(../images/rec-back.jpg) no-repeat;
    background-size: cover;
    padding: 60px 0px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.budget .reaction-box {
    background: #fff;
    color: #333;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

    .budget .reaction-box h3 {
        font-weight: 700;
        margin-bottom: 20px;
    }

    .budget .reaction-box p {
        font-size: 16px;
        margin-bottom: 15px;
    }

.budget .reaction-author {
    font-family: "Brush Script MT", cursive;
    font-size: 20px;
    font-weight: bold;
    color: #ff5722;
}

.budget .reaction-role {
    font-size: 14px;
    color: #666;
}

/*.budget .reaction-img {background: #fce9e000 url(../images/rec-front.png) no-repeat;
      background-size: cover;
      position: relative;
      overflow: hidden;
    }
    .budget .reaction-img  .reac-threebox {
      width: 86%;
      margin: 150px auto;
      margin-top: 20px;
    }*/
.budget .card-stack {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    margin: 40px auto;
}

/* Layer effect */
.budget .card-layer {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

    .budget .card-layer:nth-child(1) {
        top: 70px;
        left: -60px;
        right: -60px;
        /*opacity: 0.85;*/
        background: #fffefe;
        min-height: 448px;
        box-shadow: 0 10px 30px rgb(246 184 145);
    }

    .budget .card-layer:nth-child(2) {
        top: 30px;
        left: -30px;
        right: -30px;
        /* opacity: 0.85;*/
        background: #fffefe;
        min-height: 488px;
        box-shadow: 0 10px 30px rgb(246 184 145);
    }

.budget .card-main {
    border-radius: 12px;
    padding: 0px 40px;
    position: relative;
    z-index: 3;
    min-height: 517px;
    box-shadow: 0 10px 30px rgb(246 184 145);
    background: #fff url(../images/rec-back-new.html) no-repeat;
    background-size: cover;
}

.budget .ab-navigation {
    margin-top: 20px;
}



.budget .card {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    margin: 15px 0;
    color: #333;
    text-align: left;
    height: 380px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .budget .card:hover {
        transform: translateY(-5px);
    }

    .budget .card a {
        text-decoration: none;
        color: #333;
    }

.budget .card-body {
    padding: 40px;
}

.budget .card-title {
    font-size: 17px;
    font-weight: bold;
}

.budget .three-box-bot {
    display: flex;
    justify-content: space-between;
}

.budget .author {
    font-weight: bold;
    color: #e65100;
    margin-bottom: 1px;
}

.budget .designation {
    font-size: 0.9rem;
    color: #777;
}

.budget .card .arrow-btn {
    display: inline-block;
    background: #666666;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
}

.budget .card:hover .arrow-btn {
    background: #ff7934;
    color: #fff;
}




/*  .budget .reaction-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('../images/rec-back.jpg') repeat-x bottom;
      opacity: 0.2;
      z-index: 1;
    }*/




.budget .interview-section {
    padding: 60px 20px;
    background: #fff;
}

.budget .interview-title {
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.budget .channel-name {
    background: #f37021;
    color: #fff;
    font-weight: 600;
    padding: 6px 0;
    border-radius: 5px 5px 0 0;
    text-align: center;
}

.budget .video-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

    .budget .video-card:hover {
        transform: translateY(-5px);
    }

.budget .video-thumb {
    position: relative;
    overflow: hidden;
    margin-top: 12px;
}

    .budget .video-thumb img {
        width: 100%;
        height: auto;
        display: block;
    }

.budget .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.8);
    color: #fff;
    font-size: 28px;
    padding: 14px 18px;
    border-radius: 50%;
    transition: background 0.3s;
}

    .budget .play-btn:hover {
        background: rgba(255, 0, 0, 1);
        text-decoration: none;
    }


.budget .interaction-section {
    padding: 60px 20px;
    text-align: center;
}

.budget .interaction-title {
    font-weight: 700;
    margin-bottom: 30px;
}

.budget .nav-tabs {
    justify-content: center;
    border-bottom: none;
    margin-bottom: 30px;
}

    .budget .nav-tabs .nav-link {
        border: 1px solid #ddd;
        margin: 0 5px;
        border-radius: 5px;
        padding: 6px 20px;
        font-weight: 600;
        color: #666;
        background: #fff;
        transition: all 0.3s;
        width: 200px;
        text-align: center;
        height: 42px;
    }

        .budget .nav-tabs .nav-link.active {
            color: #f37021;
            background: #fff;
        }

.budget .video-card {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .budget .video-card:hover {
        transform: translateY(-5px);
    }

.budget .video-thumb {
    position: relative;
}

    .budget .video-thumb img {
        width: 100%;
        display: block;
    }

.budget .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.8);
    color: #fff;
    font-size: 28px;
    padding: 12px 16px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

    .budget .play-btn:hover {
        background: rgba(255, 0, 0, 1);
    }

.budget .interim-tabs .nav-link {
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 5px;
    padding: 2px 20px;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    background: #fff;
    transition: all 0.3s;
    width: auto;
    text-align: center;
    height: 32px;
    background-color: #eeeeee;
}

    .budget .interim-tabs .nav-link:hover {
        background-color: #f27b36;
        color: #fff;
        border: 1px solid #f07a3e;
    }


/* End CSS Budget Page */



/* Start CSS Speeches Page */

.speeches .nav-tabs {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 60px;
    margin-top: 60px;
}

    .speeches .nav-tabs .nav-item {
        margin: 0 10px;
    }

    .speeches .nav-tabs .nav-link {
        border: 1px solid #ddd;
        margin: 0 5px;
        border-radius: 5px;
        padding: 6px 20px;
        font-weight: 600;
        color: #666;
        background: #fff;
        transition: all 0.3s;
        width: 170px;
        text-align: center;
        height: 42px;
    }

        .speeches .nav-tabs .nav-link.active {
            background: #fff;
            border-bottom: 4px solid #f37021;
            color: #f37021;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

.speeches .event-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 35px;
    margin-bottom: 25px;
    transition: transform 0.2s ease-in-out;
    border: 1px solid transparent;
}

    .speeches .event-card:hover {
        transform: scale(1.02);
        border: 1px solid #c7c7c7;
    }

    .speeches .event-card:hover {
        transform: translateY(-5px);
    }

    .speeches .event-card img {
        width: 173px;
        height: 173px;
        object-fit: cover;
        border-radius: 8px;
        position: relative;
        z-index: 1;
    }

.speeches .event-content {
    flex: 1;
    margin-left: 35px;
}

.speeches .event-date {
    font-size: 14px;
    font-weight: bold;
    color: #f37021;
    margin-bottom: 5px;
}

.speeches .event-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.speeches .know-more {
    font-size: 14px;
    color: #f37021;
    text-transform: uppercase;
    text-decoration: none;
}

    .speeches .know-more:hover {
        text-decoration: underline;
    }

.speeches .event-card .position-relative:before {
    content: '';
    width: 65%;
    height: 65%;
    background: #e9e9e9;
    position: absolute;
    bottom: -11px;
    right: -11px;
    z-index: 0;
    transition: 0.3s;
    border-radius: 0 0 15px;
}

.speeches .event-card:hover .position-relative:before {
    bottom: -13px;
    right: -13px;
    background: #ffbc99;
}

.speeches .event-card .position-relative:after {
    content: '';
    width: 25%;
    height: 40%;
    background: #e9e9e9;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 0;
    transition: 0.3s;
    border-radius: 15px 0 0;
}

.speeches .event-card:hover .position-relative:after {
    top: -12px;
    left: -12px;
    background: #ffbc99;
}


/* End CSS Speeches Page */





/* Start CSS MP LADS Page */

.mpladsmain .content-section {
    text-align: center;
    margin: 70px 0 50px 0;
}

.mpladsmain .mplads .project-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
    position: relative;
}

    .mpladsmain .mplads .project-card img {
        height: 100%;
        object-fit: cover;
        width: 100%;
        display: block;
    }

.mpladsmain .mplads .project-info {
    padding: 45px 40px;
    height: 140px;
}

    .mpladsmain .mplads .project-info h6 {
        color: #ff5722;
        font-weight: bold;
    }



.mpladsmain .mplads .hover-overlay {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mpladsmain .mplads .project-card:hover .hover-overlay {
    opacity: 1;
}

.mpladsmain .mplads .hover-overlay .icon {
    background: #f15a24;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}




.mpladsmain .table-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

    .mpladsmain .table-container h3 {
        font-size: 35px;
        font-weight: bold;
        color: #333;
        margin-bottom: 30px;
    }

    .mpladsmain .table-container .greenbox {
        background-color: #00a54f;
        padding: 14px 0;
        height: 100px;
        border-radius: 10px 10px 0 0;
    }

    .mpladsmain .table-container .whtbox {
        margin-top: -40px;
        box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
    }

    .mpladsmain .table-container .whbox-top {
        margin-top: -10px;
        border-radius: 10px;
    }

    .mpladsmain .table-container .table-bordered td {
        border: none;
    }

    .mpladsmain .table-container .table td {
        border-top: 1px solid #dee2e6;
        padding: 30px 0;
        height: 100px;
    }

.mpladsmain .table thead th {
    background-color: #f9f9f9;
    ;
    color: #0fa552;
    border: none;
    text-align: center;
    vertical-align: middle;
}

.mpladsmain .table td, .table th {
    vertical-align: middle !important;
}

.mpladsmain .status-badge {
    border: 1px solid #00a651;
    color: #00a651;
    border-radius: 20px;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 500;
}

.mpladsmain .dropdown-btn {
    background-color: #00a651;
    color: #fff;
    border-radius: 8px;
    padding: 11px 40px;
    font-weight: 600;
    border: 1px solid #76c298;
    font-size: 19px;
}

    .mpladsmain .dropdown-btn:hover {
        background-color: #008f45;
        color: #fff;
    }

.mpladsmain .info-card {
    background: #efefef;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

    .mpladsmain .info-card h6 {
        margin: 0;
        font-size: 14px;
        color: #555;
    }

    .mpladsmain .info-card p {
        margin: 0;
        font-size: 17px;
        font-weight: 600;
    }

    .mpladsmain .info-card .cost {
        color: #f15a24; /* Orange color */
        font-weight: bold;
        font-size: 20px;
    }

    .mpladsmain .info-card .right-box {
        padding-left: 30px;
        border-left: 1px solid #d0d0d0;
    }

/* End CSS MP LADS Page */




/* Start CSS State Budget Page */

.statebudget .statebudget-section {
    padding: 60px 20px;
    text-align: center;
}

.statebudget .statebudget-section {
    font-weight: 700;
    margin-bottom: 30px;
}

    .statebudget .statebudget-section .budget-card {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(16,24,40,0.06);
        background: #fff;
        border: none;
        overflow: hidden;
    }

    .statebudget .statebudget-section .card-inner {
        padding: 22px;
    }

    .statebudget .statebudget-section .card-header-pill {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 10px 14px;
        margin-bottom: 14px;
        border-radius: 10px;
        border: 1px solid #f37216; /* orange */
        color: #222;
        font-weight: 600;
        background: #fff;
        box-sizing: border-box;
        font-size: 18px;
    }

    .statebudget .statebudget-section .budget-thumb {
        border-radius: 6px;
        overflow: hidden;
    }

        .statebudget .statebudget-section .budget-thumb img {
            width: 100%;
            height: auto;
            display: block;
        }

    .statebudget .statebudget-section .card-actions {
        padding-top: 14px; /*display:flex;*/
        align-items: center;
        justify-content: space-between;
    }


    .statebudget .statebudget-section .action-labels { /* display:flex;*/
        width: 100%;
        justify-content: space-between;
        padding: 12px 8px 0 8px;
    }

        .statebudget .statebudget-section .action-labels span {
            color: #444;
            font-size: 16px;
        }


    .statebudget .statebudget-section .btn-red {
        background: #e20613;
        border-color: #e20613;
        color: #fff;
        box-shadow: none;
        border-radius: 6px;
        padding: 8px 18px;
        font-weight: 600;
    }

        .statebudget .statebudget-section .btn-red:hover {
            background: #a51c00;
        }

    .statebudget .statebudget-section .btn-outline-red {
        background: #fff;
        border: 2px solid #e20613;
        color: #e20613;
        border-radius: 6px;
        padding: 8px 18px;
        font-weight: 600;
    }


    /* subtle vertical divider between buttons on small blocks */
    .statebudget .statebudget-section .btns-wrap { /* display:flex;*/
        align-items: center;
        gap: 16px;
    }


/* responsive spacing */
@media (min-width: 992px) {
    .statebudget .statebudget-section .col-lg-4 {
        margin-bottom: 0;
    }
}

@media (max-width: 991.98px) {
    .statebudget .statebudget-section .card-inner {
        padding: 16px;
    }

    .statebudget .statebudget-section .action-labels span {
        font-size: 14px;
    }
}


/*.statebudget .statebudget-section .custom-bar {
      background-color: #3c3c3c;
      padding: 20px 20px;
      border-radius: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 40px 0;
      flex-wrap: wrap; 
    }
    .statebudget .statebudget-section .link-btn {
      background-color: #e50914;
      color: #fff;
      font-weight: normal;
      border-radius: 5px;
      padding: 6px 15px;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      transition: 0.3s;
    }
    .statebudget .statebudget-section .link-btn:hover {
      background-color: #b20710;
      text-decoration: none;
      color: #fff;
    }
    .statebudget .statebudget-section .link-btn .fa-solid, .fas {font-size: 22px; margin-right: 10px;}
    .statebudget .statebudget-section.link-btn i {
      margin-right: 5px;
    }
    .statebudget .statebudget-section.dropdown-toggle {
      border-radius: 6px;
    }
    .statebudget .statebudget-section .nav-tabs {
      justify-content: center;
      border-bottom: none;
      margin-bottom: 30px;
    }
    .statebudget .statebudget-section .nav-tabs .nav-link {
      border: 1px solid #ddd;
      margin: 0 5px;
      border-radius: 5px;
      padding: 6px 20px;
      font-weight: 600;
      color: #666;
      background: #fff;
      transition: all 0.3s;
      width: 170px;
      text-align: center;
      height: 42px;
    }
    .statebudget .statebudget-section .nav-tabs .nav-link.active {
      color: #f37021;
      background: #fff;
    }
    .statebudget .statebudget-section .video-card {
      margin-bottom: 20px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .statebudget .statebudget-section .video-card:hover {
      transform: translateY(-5px);
    }*/

/*.statebudget .statebudget-section .nav-tabs .nav-link {
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 5px;
    padding: 6px 20px;
    font-weight: 600;
    color: #666;
    background: #fff;
    transition: all 0.3s;
    width: auto;
    text-align: center;
    height: 42px;
}
   
   .statebudget .statebudget-section .nav-tabs .nav-link.active {
    background-color: #ffffff;
    color: #333;
    font-weight: bold;
    border: 1px solid #ddd;
    border-bottom: 4px solid #f47c2c;
}

.statebudget .statebudget-section .btn { border-radius:10px; padding: 8px 30px; }
.statebudget .statebudget-section .btn-outline-light { border-color: #a2a2a2;}*/


/* End CSS State Budget Page */






/* Start CSS AKAM WEEK Page */



.akam-week .content-section {
    text-align: center;
    margin: 70px 0 50px 0;
}

    .akam-week .content-section h2 {
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 35px;
        font-weight: 700;
    }

    .akam-week .content-section p {
        font-size: 16px;
        line-height: 1.7;
        color: #333;
    }

.akam-week .video-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 50px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    margin: 20px auto;
    max-width: 1200px;
}

    .akam-week .video-card img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .akam-week .video-card p {
        margin-top: 15px;
        font-size: 24px;
        font-weight: 700;
        color: #000;
    }

    .akam-week .video-card iframe {
        width: 100%;
        height: 500px;
    }


.akam-week .event-accord {
    margin-top: 100px;
}

.akam-week .event-card {
    text-align: center;
    margin-bottom: 20px;
}

    .akam-week .event-card img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .akam-week .event-card p {
        font-size: 14px;
        font-weight: 500;
        color: #000;
    }

.akam-week .accordion .card-header {
    background: #f8f9fa;
    cursor: pointer;
}

.akam-week .accordion .btn-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

    .akam-week .accordion .btn-link:hover {
        text-decoration: none;
    }

.akam-week .day-header {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: .5rem;
    padding: .9rem 1.1rem;
    margin-bottom: .5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: all .3s ease;
    color: #000;
    text-decoration: none;
}

    .akam-week .day-header .chev {
        transition: transform .2s ease;
    }

    .akam-week .day-header[aria-expanded="true"] {
        background: #f47216; /* active background */
        color: #fff;
        border-color: #f47216;
    }

        .akam-week .day-header[aria-expanded="true"] .chev {
            transform: rotate(180deg);
            color: #fff;
        }

.akam-week .event-card img {
    width: 100%;
    height: auto;
    border-radius: .5rem;
}

.akam-week .event-card p {
    margin: .5rem 0 0;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 30px;
}

.akam-week .border {
    border: 1px solid #f27127 !important;
    background: linear-gradient(360deg, hsla(12, 65%, 95%, 1) 0%, hsla(0, 0%, 100%, 1) 19%);
    padding: 40px;
    margin-top: -16px;
}

.akam-week .event-card iframe {
    width: 100%;
}



.akam-week .akam-literacy-main {
    margin-top: 100px;
}

.akam-week .akam-literacy {
    background: hsla(12, 65%, 95%, 1);
    background: linear-gradient(180deg, hsla(12, 65%, 95%, 1) 0%, hsla(0, 0%, 100%, 1) 19%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FBEFEC", endColorstr="#FFFFFF", GradientType=1 );
    margin-top: 50px;
}

    .akam-week .akam-literacy h2 {
        font-size: 35px;
        font-weight: bold;
        color: #333;
    }

    .akam-week .akam-literacy .col-header {
        /* display: flex; 
    justify-content: space-between;
    border-bottom: 1px solid #d3d3d3;*/
        padding-bottom: 15px;
        margin-bottom: 40px;
        text-align: center;
    }

    .akam-week .akam-literacy .report-card {
        border-radius: 15px;
        padding: 40px;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        text-align: center;
        transition: transform 0.3s ease;
    }

        .akam-week .akam-literacy .report-card:hover {
            transform: translateY(-5px);
        }

        .akam-week .akam-literacy .report-card .rep-card-text { /* display: flex; justify-content: space-between;*/
            margin-bottom: 30px;
        }

        .akam-week .akam-literacy .report-card img {
            /* width: 100%;*/
            height: auto;
            max-height: 320px;
            object-fit: cover;
            margin-top: 15px;
            border-radius: 8px;
        }

    .akam-week .akam-literacy .owl-carousel .owl-item img {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .akam-week .akam-literacy .report-card iframe {
        width: 100%;
    }


.akam-week .comic-books .com-book-orange {
    background-color: #f47216;
    padding: 30px 100px;
    border-radius: 10px;
}

    .akam-week .comic-books .com-book-orange .nav-tabs {
        border-bottom: none;
    }

    .akam-week .comic-books .com-book-orange h3 {
        text-align: center;
    }

.akam-week .comic-books .nav-tabs .nav-link {
    background: #f27127;
    color: #333;
    border-radius: 10px;
    margin: 5px;
    font-weight: 500;
    border: 1px solid #ffab7a;
    padding: 10px 40px;
    color: #ffeade;
}

    .akam-week .comic-books .nav-tabs .nav-link.active {
        background: #ffffff;
        color: #f27127;
        font-weight: bold;
    }

.akam-week .comic-books .comic-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

    .akam-week .comic-books .comic-card img {
        width: 100%;
        object-fit: cover;
        transition: transform 0.3s;
        position: relative;
        z-index: 1;
        display: inherit;
        border-radius: 10px;
    }

.akam-week .comic-books .comic-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ff9254;
    padding-bottom: 30px;
}




/* End CSS AKAM WEEK Page */






/* Start CSS Interviews Page */
.interviews .reply-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease-in-out;
    border: 1px solid transparent;
}

    .interviews .reply-card:hover {
        transform: scale(1.02);
        border: 1px solid #c7c7c7;
    }

.interviews .reply-img {
    width: 173px;
    height: 173px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

    .interviews .reply-img .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        background: red;
        color: white;
        font-size: 18px;
        text-align: center;
        line-height: 30px;
        border-radius: 50%;
    }

.interviews .reply-content {
    margin-left: 35px;
    flex: 1;
}

.interviews .reply-date {
    color: #f15a24;
    font-size: 0.9rem;
    font-weight: bold;
}

.interviews .reply-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 3px;
    color: #333;
    margin-bottom: 20px;
}

.interviews .download-btn {
    background-color: #f47216;
    color: white;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    margin-top: 16px;
}

    .interviews .download-btn:hover {
        background-color: #ca5400;
    }

.interviews .reply-card .position-relative:before {
    content: '';
    width: 65%;
    height: 65%;
    background: #e9e9e9;
    position: absolute;
    bottom: -11px;
    right: -11px;
    z-index: 0;
    transition: 0.3s;
    border-radius: 0 0 15px;
}

.interviews .reply-card:hover .position-relative:before {
    bottom: -13px;
    right: -13px;
    background: #ffbc99;
}

.interviews .reply-card .position-relative:after {
    content: '';
    width: 25%;
    height: 40%;
    background: #e9e9e9;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 0;
    transition: 0.3s;
    border-radius: 15px 0 0;
}

.interviews .reply-card:hover .position-relative:after {
    top: -12px;
    left: -12px;
    background: #ffbc99;
}

.interviews .int-video iframe {
    width: 100%;
}

/* End CSS Interviews Page */



.language .goog-te-gadget-simple img {
    display: none;
}

.language .goog-te-gadget .goog-te-gadget-simple {
    background-color: transparent;
    border-left: none;
    border-top: none;
    border-bottom: none;
    border-right: none;
    padding-top: 0;
    padding-bottom: 0;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
    text-decoration: none;
    color: #fff;
}

.language .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span:nth-of-type(2) {
    display: none;
}

.language .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span:nth-of-type(3) {
    display: none;
}






/* .ab-navigation { margin-top: 90px;}*/
.reaction-img .owl-nav button {
    height: 37px;
    width: 37px;
    border-radius: 50%;
    border: 2px solid #ff7934;
    color: #ff7934;
    background: #fff;
    margin-left: 15px;
    transition: 0.3s;
}

    .reaction-img .owl-nav button span {
        font-size: 40px;
        line-height: 22px;
    }

    .reaction-img .owl-nav button:hover {
        background: #ff7934;
        color: #fff;
    }

.reaction-img .reac-threebox a {
    text-decoration: none;
}






/* ---------- Search Page Wrapper ---------- */
.search-page {
    padding: 0;
    color: #1d2939;
}

/* ---------- Search Results Grid ---------- */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.search-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .search-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 4px;
        background: #000080;
        transition: left 0.3s ease;
    }

    .search-item:hover::before {
        left: 0;
    }

    .search-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

    .search-item h4 {
        margin: 0 0 10px;
        font-size: 1.1rem;
        font-weight: 600;
        color: #000080;
    }

        .search-item h4 a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s;
        }

            .search-item h4 a:hover {
                color: #1e40af;
            }

    .search-item p {
        margin: 0;
        font-size: 0.95rem;
        color: #555;
    }

/* ---------- Pagination Modern Style ---------- */
.pagination-wrapper {
    text-align: center;
    margin-top: 30px;
}

    .pagination-wrapper nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    .pagination-wrapper a,
    .pagination-wrapper span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 14px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        border: none;
        background: #ffffff;
        color: #000080;
        box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        cursor: pointer;
    }

        /* Hover Effect */
        .pagination-wrapper a:hover {
            background: linear-gradient(135deg, #000080, #1e40af);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(0,0,0,0.15);
        }

    /* Active Page */
    .pagination-wrapper [aria-current="page"] span {
        background: linear-gradient(135deg, #000080, #1e40af);
        color: #fff;
        font-weight: 600;
        box-shadow: 0 6px 14px rgba(0,0,0,0.2);
        cursor: default;
    }

    /* Disabled */
    .pagination-wrapper span[aria-disabled="true"] {
        background: #f1f1f1;
        color: #aaa;
        box-shadow: none;
        cursor: not-allowed;
    }

    /* Arrows */
    .pagination-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .pagination-wrapper .shadow-sm {
        box-shadow: none !important;
    }

    .pagination-wrapper .px-4 {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .pagination-wrapper .leading-5 span {
        width: auto;
        padding: 0;
        min-width: initial !important;
        box-shadow: none;
    }













/* Mega Dropdown */
/* Mega menu box */
.main-nav ul li.multi-dropdown:hover a.jour-drop {
    background-color: #fff;
}

.mega-menu .fullbox-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 860px;
    background: #fff;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 20px;
}

.mega-menu .multi-dropdown:hover .fullbox-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Left vertical menu */
.mega-menu .left-menu a {
    display: block;
    padding: 10px;
    margin-bottom: 5px;
    background: #f5f5f5;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

    .mega-menu .left-menu a:hover,
    .mega-menu .left-menu a.active {
        background: #ff6600;
        color: #fff;
    }

.mega-menu .fullbox-menu .fa-chevron-down {
    transform: rotate(272deg);
}

/* Right side content layout */
.mega-menu .menu-content {
    display: none;
}

    .mega-menu .menu-content.active {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        animation: fadeIn 0.4s ease;
    }


/* Middle list vertical */
.mega-menu .middle-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 200px;
}

    .mega-menu .middle-list ul li {
        margin-bottom: 8px;
        position: relative;
    }

        .mega-menu .middle-list ul li a {
            display: block;
            padding: 8px 12px;
            color: #333;
            text-decoration: none;
            border-radius: 4px;
            background: #ffcfaf;
            transition: all 0.2s ease;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            font-size: 16px;
        }

            .mega-menu .middle-list ul li a:hover,
            .mega-menu .middle-list ul li a.active {
                background: #f5f5f5;
                color: #000;
            }

        /* Submenu dropdown (below item) */
        .mega-menu .middle-list ul li.has-sub:hover .inline-submenu {
            display: block;
        }

.mega-menu .inline-submenu {
    display: none;
    margin-top: 5px;
    margin-left: 15px;
}

    .mega-menu .inline-submenu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .mega-menu .inline-submenu ul li {
            margin-bottom: 5px;
        }

            .mega-menu .inline-submenu ul li a {
                display: block;
                padding: 6px 10px;
                background: #eee;
                border-radius: 4px;
                color: #444;
                text-decoration: none;
                font-size: 14px;
            }

                .mega-menu .inline-submenu ul li a:hover {
                    background: #ccc;
                    color: #000;
                }

.mega-menu .fa-chevron-down:before {
    font-size: 12px;
}

/*.mega-menu .submenu {
      display: none;
      position: absolute;
      left: 100%;
      top: 0;
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      min-width: 180px;
      z-index: 1000;
    }*/
/*.mega-menu .submenu li {
      margin: 0;
    }
    .mega-menu .submenu li a {
      display: block;
      padding: 8px 12px;
      color: #333;
      background: #f9f9f9;
      text-decoration: none;
    }
    .mega-menu .submenu li a:hover {
      background: #ff6600;
      color: #fff;
    }*/

/* Image */
.mega-menu .right-img img {
    max-width: 200px;
    border-radius: 6px;
    margin-left: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*.main-nav ul li{list-style: none;}
.main-nav ul li.multi-dropdown{position: unset;}
.fullbox-menu {
    position: absolute;
    left: 0;
    right: 0;
    box-shadow: 0 60px 60px 1px rgba(0,0,0,0.7);
    top: 62px;
    margin-top: 0px;
    z-index: 9;
    background: #fff;
    z-index: 91;
    display: none;
    overflow: hidden;
    border-top: 4px solid #fff;
    border-radius: 0 0 5px 5px;
    transition: all 0.3s ease;
}


.main-nav ul li.multi-dropdown:hover a.jour-drop { background-color:#fff; }
.main-nav ul li.multi-dropdown:hover .fullbox-menu {
    display: block;
}
.nav-bottom, .tab_cont_nav, .corporatetabcontent, .customerCarecontent, .main-nav ul li a .fas.open-dropdown {
    display: none;
}
.main-nav ul li a .fas {
    font-size: 12px;
    margin: 0 0 0 5px;
}
.desktopblock {
    display: block;
}
.nav-category ul.nav-lave2ul li a:hover{text-decoration: none;}
.fullbox-menu.customercare-nav .nav-category .col-md-8 .col-md-6 {
    position: unset;
}
.customercare-nav .nav-category ul.nav-lave2ul {
    padding: 40px 10px;
}
ul.nav-lave2ul {
    border-right: 1px solid #ddd;
    height: 100%;
    width: 347px;
}
ul.nav-lave2ul li {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
}
.nav-category ul.nav-lave2ul li a.customerCarelinks {
    border: 1px solid #bbbbbb;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    justify-content: space-between;
}
.nav-category ul.nav-lave2ul li a {
    font-size: 14px;
    color: #515151;
    font-weight: 500;
    width: 100%;
    padding: 10px 15px 10px 15px;
    border-right: 7px solid transparent;
    transition: all 0.5s ease;
}
.nav-category ul.nav-lave2ul li a.customerCarelinks:hover, .nav-category ul.nav-lave2ul li a.customerCarelinks.customerCare-active {
    background: #f47216;
    border-color: #f47216;
    color: #fff;
}
.nav-category ul.nav-lave2ul li.second-lavel-dropdown .nav-col-md9.tabcontent, 
.nav-category ul.nav-lave2ul li.second-lavel-dropdown .nav-col-md9.corporatetabcontent, 
.nav-category ul.nav-lave2ul li.second-lavel-dropdown .customerCarecontent.dropdown-mid {
    position: absolute;
    left: 345px;
    top: 0;
    right: 0;
    width: auto;
    bottom: 0;
    overflow-y: auto;
    max-width: unset;
}
.fullbox-menu.customercare-nav .nav-category .col-md-8 .col-md-6 {
    position: unset;
}
.customercare-nav .buletlink {
    padding-top: 40px;
}
.nav-category ul.nav-lave2ul li ul {
    padding-bottom: 10px;
}
.nav-category ul.nav-lave2ul li.second-lavel-dropdown .customerCarecontent .category-link li {
    border-top: 0;
}
.customercare-nav .buletlink ul.category-link li {
    flex: 0 0 100%;
    max-width: 100%;
}

.nav-category ul.nav-lave2ul li ul li {
    border-bottom: 0;
    padding: 0;
    margin: 0;
}
.nav-category ul.nav-lave2ul li.second-lavel-dropdown .customerCarecontent .category-link li a {
    padding: 10px 0 10px 0;
    border-right: 0;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    font-weight: 500;
}

.nav-category ul.nav-lave2ul li.second-lavel-dropdown .customerCarecontent .category-link li a:hover{ padding-left: 15px; }

.nav-img {
    display: inline-block;
    margin: 35px 10px 30px 40px;
    width: calc(100% - 33px);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}*/








/* Start CSS OVERVIEW Page */


.overview-main .speech-section-new .project-card {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
    background: #fff;
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .overview-main .speech-section-new .project-card:hover {
        transform: translateY(-5px);
    }

    .overview-main .speech-section-new .project-card a {
        color: #333;
        text-decoration: none;
    }

.overview-main .speech-section-new .column-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

    .overview-main .speech-section-new .column-header h2 {
        font-size: 35px;
        font-weight: bold;
        color: #333;
    }

    .overview-main .speech-section-new .column-header .inter-head {
        display: flex;
    }

    .overview-main .speech-section-new .column-header .view-all {
        float: left;
        margin-right: 20px;
        color: #333;
        font-size: 13px;
        border-radius: 4px;
        padding: 8px 15px;
        transition: 0.3s;
        text-decoration: none;
        font-weight: 500;
    }

.overview-main .speech-section-new .owl-nav button {
    height: 37px;
    width: 37px;
    border-radius: 50%;
    border: 2px solid #ff7934;
    color: #ff7934;
    background: #fff;
    margin-left: 15px;
    transition: 0.3s;
}

    .overview-main .speech-section-new .owl-nav button span {
        font-size: 40px;
        line-height: 22px;
    }

.overview-main .speech-section-new .project-info {
    padding: 30px;
    height: 180px;
}



.overview-main .articles-media-section:after {
    content: none;
}

.overview-main .about-img {
    width: calc(100% - 50px);
}
/*.overview-main .carousel-control-next {background: #000000; background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); opacity: 1;}
    .overview-main .carousel-control-prev {background: #000000; background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); opacity: 1;}
    .overview-main .carousel-control-next:hover {background: #000000; background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); }
    .overview-main .carousel-control-prev:hover {background: #000000; background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); }*/



.overview-main .about-section .carousel-img-text .carousel-inner .ptext {
    position: absolute;
    bottom: -100%;
    z-index: 1;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    margin: 20px;
    transition: all 0.5s ease;
    /*width: 94%;*/
}

.overview-main .about-section .carousel-img-text .carousel-inner:hover .ptext {
    bottom: 4px
}

.overview-main .articles-media-section .card img {
    width: 163px;
    height: 163px;
}

.overview-main #carouselGallery {
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}

.overview-main .overbox {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    text-align: center;
    background: #fff;
    padding: 30px;
    color: #000;
    text-align: justify;
}

    .overview-main .overbox:hover {
        transform: translateY(-5px);
    }

    .overview-main .overbox img {
        width: 100%;
        border-radius: 10px;
    }

.overview-main .overviewtop-section h2 {
    font-size: 35px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.overview-main .overview .project-card {
    border-radius: 12px;
    overflow: hidden;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      background: #fff;*/
    position: relative;
}

    .overview-main .overview .project-card img {
        height: 100%;
        object-fit: cover;
        width: 100%;
        display: block;
    }

.overview-main .overview .project-info {
    padding: 45px 40px;
}

    .overview-main .overview .project-info h6 {
        color: #ff5722;
        font-weight: bold;
    }

.overview-main .overview .hover-overlay {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-main .overview .project-card:hover .hover-overlay {
    opacity: 1;
}

.overview-main .overview .hover-overlay .icon {
    background: #f15a24;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


.overview-section {
    padding: 80px 0 0 0;
    background: #fcfcfc;
}

    .overview-section .column-header {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #d3d3d3;
        padding-bottom: 15px;
        margin-bottom: 40px;
    }

        .overview-section .column-header h2 {
            font-size: 35px;
            font-weight: bold;
            color: #333;
        }

        .overview-section .column-header .inter-head {
            display: flex;
        }

        .overview-section .column-header .view-all {
            float: left;
            margin-right: 20px;
            color: #333;
            font-size: 13px;
            border-radius: 4px;
            padding: 8px 15px;
            transition: 0.3s;
            text-decoration: none;
            font-weight: 500;
        }

            .overview-section .column-header .view-all:hover {
                color: #ff7934;
                text-decoration: none;
            }

    .overview-section .owl-nav button {
        height: 37px;
        width: 37px;
        border-radius: 50%;
        border: 2px solid #ff7934;
        color: #ff7934;
        background: #fff;
        margin-left: 15px;
        transition: 0.3s;
    }

        .overview-section .owl-nav button:hover {
            background: #ff7934;
            color: #fff;
        }

        .overview-section .owl-nav button span {
            font-size: 40px;
            line-height: 22px;
        }








.speech-section {
    padding: 80px 0;
    background: #fcfcfc;
}

    .speech-section .column-header {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #d3d3d3;
        padding-bottom: 15px;
        margin-bottom: 40px;
    }

        .speech-section .column-header h2 {
            font-size: 35px;
            font-weight: bold;
            color: #333;
        }

        .speech-section .column-header .inter-head {
            display: flex;
        }

        .speech-section .column-header .view-all {
            float: left;
            margin-right: 20px;
            color: #333;
            font-size: 13px;
            border-radius: 4px;
            padding: 8px 15px;
            transition: 0.3s;
            text-decoration: none;
            font-weight: 500;
        }

            .speech-section .column-header .view-all:hover {
                color: #ff7934;
                text-decoration: none;
            }

    .speech-section .owl-nav button {
        height: 37px;
        width: 37px;
        border-radius: 50%;
        border: 2px solid #ff7934;
        color: #ff7934;
        background: #fff;
        margin-left: 15px;
        transition: 0.3s;
    }

        .speech-section .owl-nav button:hover {
            background: #ff7934;
            color: #fff;
        }

        .speech-section .owl-nav button span {
            font-size: 40px;
            line-height: 22px;
        }




/* End CSS OVERVIEW Page */












@media(max-width:1570px) {
    .fullbox-menu {
        left: -170px;
    }

    .timeline {
        gap: 100px;
    }

    .overview-main .overview .project-info {
        padding: 20px;
    }
}



@media(max-width:1500px) {
    .budget .reaction-img .reac-threebox {
        margin: 0px auto;
        width: 90%;
    }
    /*  .ab-navigation {margin-top: 68px;}*/
    /*  .budget .card { margin: 15px 10px; height: 320px; width: 86%;}*/
    .budget .card-body {
        padding: 20px;
    }

    .fullbox-menu {
        left: -170px;
    }

    .timeline {
        gap: 100px;
    }

    .overview-main .overview .project-info {
        padding: 20px;
    }
}





@media(max-width:1450px) {
    .main-nav > ul > li > a {
        padding: 10px 5px;
    }
    /*   .ab-navigation {margin-top: 70px;}*/
    .budget .reaction-img {
        height: 520px;
    }

    .fullbox-menu {
        left: -170px;
    }

    .timeline {
        gap: 90px;
    }

    .overview-main .overview .project-info {
        padding: 20px;
    }
}


@media(max-width:1400px) {
    .container, .desc {
        padding: 0 50px;
    }

    .desc {
        width: 90%;
    }

    .main-nav > ul > li > a {
        padding: 0 5px 10px 5px
    }

    .owl-carousel .owl-item .desc img {
        width: 240px;
    }

    .interviews-section .card-info {
        height: 260px;
    }

    .timeline {
        gap: 80px;
    }

    .main-articles .card-body {
        padding: 0 1.25rem;
    }

    .topbanimg .topbantext {
        top: 70%;
    }

    .recent-media .news-overlay {
        padding: 30px;
    }

        .recent-media .news-overlay .hover-top {
            margin-bottom: 20px;
        }

    .budget .reaction-img .reac-threebox {
        margin: 3px auto;
    }
    /*.budget .card {height: 300px;}*/
    .budget .card-title {
        font-size: 20px;
    }

    .budget .card-body {
        padding: 20px;
    }

    .budget .budget-grid {
        width: 80%;
    }
    /*.ab-navigation {margin-top: 70px;}*/
    .budget .reaction-img {
        height: 520px;
    }


    .nav-img {
        margin: 35px 10px 30px 40px;
        width: calc(100% - 69px);
    }

    .nav-category ul.nav-lave2ul li.second-lavel-dropdown .customerCarecontent.dropdown-mid {
        left: 370px;
    }

    .fullbox-menu {
        top: 53px;
        left: -132px;
    }

    ul.nav-lave2ul {
        width: 380px;
    }
}

@media(max-width:1270px) {
    .timeline {
        gap: 95px;
    }

    .main-articles .card-body {
        padding: 0 1.25rem;
    }

    .recent-media .news-overlay .hover-top {
        font-size: 18px;
    }

    .recent-media .news-overlay .hover-bot {
        font-size: 16px;
    }

    .main-nav > ul > li > a {
        padding: 10px 5px;
        font-size: 14px;
    }

    .main-nav > ul > li > a {
        padding-top: 5px
    }
}

@media(max-width:1200px) {
    .branding img {
        width: 94%;
    }

    .container, .desc {
        padding: 0 20px;
    }

    .desc {
        width: 90%;
    }

    .main-nav > ul > li > a {
        padding: 10px 2px;
        font-size: 14px;
    }

    .owl-carousel .owl-item .desc img {
        width: 200px;
        margin-top: 100px;
    }

    .about-section .about-img {
        width: calc(100% - 50px);
    }

        .about-section .about-img:before {
            bottom: -16px;
            right: -16px;
        }

        .about-section .about-img img {
            width: 309px;
        }

    .timeline {
        gap: 100px;
    }

    .milestone-content {
        padding: 0 50px;
    }

    .milestone-section .image-container {
        width: 40%;
    }

        .milestone-section .image-container img {
            width: 100%;
        }

    .social-icons {
        gap: 5px;
    }
}


@media(max-width:1070px) {
    .timeline {
        gap: 80px;
    }

    .desc {
        width: 90%;
    }

    .hero_carosel .ban2 {
        font-size: 24px;
    }

    .budget .budget-speech iframe {
        width: 100%;
    }

    .budget .budget-grid {
        grid-gap: 40px;
        width: 100%;
    }

    .main-nav > ul > li > a {
        padding: 10px 3px;
        font-size: 12px;
    }

        .main-nav > ul > li > a.active {
            font-size: 12px;
        }

    .home.scrolled .main-nav > ul > li > a.active {
        font-size: 12px;
    }
}

@media(max-width:992px) {
    .branding img {
        width: 86%;
    }

    .container, .desc {
        padding: 0 10px;
    }

    .desc {
        width: 85%;
    }

    .hero_carosel .ban2 {
        font-size: 24px;
    }

    .main-nav > ul > li > a {
        padding: 10px 2px;
        font-size: 11px;
    }

        .main-nav > ul > li > a.active {
            font-size: 12px;
        }

    .topbanimg .topbantext h1 {
        font-size: 30px;
    }

    .owl-carousel .owl-item .desc img {
        width: 170px;
        margin-top: 200px;
    }

    .tag {
        font-size: 16px;
    }

    .btn-gradient-bg {
        font-size: 16px;
    }

    .about-section .about-img {
        width: calc(100% - 50px);
    }

        .about-section .about-img img {
            width: 259px;
        }

    .about-section span {
        font-size: 20px;
    }

    .about-section h3 {
        font-size: 26px;
    }

    .about-section h1 {
        font-size: 26px;
    }

    .about-section h4 {
        font-size: 17px;
    }

    .about-section p {
        font-size: 14px;
    }

    .timeline {
        gap: 60px;
    }

    .milestone-content {
        padding: 0 30px;
    }

    .milestone-section .content-text {
        width: 100%;
        margin-top: 30px;
    }

    .milestone-section h2 {
        margin-bottom: 30px;
    }

    .articles-media-section:after {
        display: none;
    }

    .articles-media-section h2 {
        font-size: 25px;
    }

    .interviews-section .column-header h2 {
        font-size: 25px;
    }

    .speeches-wrapper h2 {
        font-size: 25px;
    }

    .gallery h2 {
        font-size: 25px;
    }

    .social-midia-news h3 {
        font-size: 25px;
    }

    .social-midia-news h4 {
        font-size: 16px;
    }

    .play-icon {
        top: 24%;
    }

    .social-icons a {
        padding: 2px 6px;
        width: 28px;
        height: 28px;
    }

        .social-icons a svg {
            width: 10px;
            height: 10px;
        }

    .contact-info p {
        font-size: 13px;
    }

    .gallery h2:after {
        display: none;
    }

    .budget .nav-tabs .nav-item {
        margin: 10px 5px;
    }

    .main-nav > ul > li > a .arrow {
        height: 7px;
        width: 7px;
    }

    .main-nav > ul > li > a {
        font-size: 10px;
    }

        .main-nav > ul > li > a.active {
            font-size: 10px;
        }

    .home.scrolled .main-nav > ul > li > a.active {
        font-size: 10px;
    }

    .budget .reaction-img {
        background: #ffffff;
        border-radius: 20px;
    }

        .budget .reaction-img .reac-threebox {
            width: 100%;
        }

        .budget .reaction-img .reac-threebox {
            margin: 20px auto;
        }

    .budget .card {
        height: auto;
    }

    ul.nav-lave2ul {
        width: 306px;
    }

    .nav-category ul.nav-lave2ul li.second-lavel-dropdown .customerCarecontent.dropdown-mid {
        left: 280px;
    }
}

@media(max-width:768px) {
    .container, .desc {
        padding: 0 20px;
    }

    .desc {
        width: 80%;
    }

    .hero_carosel .ban2 {
        font-size: 22px;
    }

    .about-section .about-img {
        width: calc(100% - 50px);
    }

        .about-section .about-img img {
            width: 179px;
        }

    .timeline {
        gap: 30px;
    }

    .articles-media-section {
        background: linear-gradient(to right, #fce9e0 0%, #fce9e0 50%, #fff4ef 100%, #fff4ef 100%);
    }

    footer .top-footer h3 {
        font-size: 0.7rem;
    }

    footer .top-footer ul.footer-nav {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery h2:after {
        display: none;
    }

    .gallery-grid {
        display: inline-block;
    }

    .gallery-item p {
        height: 110px;
    }

    .gallery h2 {
        font-size: 20px;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .top-bar-right {
        gap: 2px;
    }

        .top-bar-right a {
            font-size: 12px;
        }

    .bottom-header {
        margin-top: 0px;
    }

    .owl-carousel .owl-item .desc img {
        width: 130px;
        margin-top: 230px;
    }

    .tag {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .btn-gradient-bg {
        font-size: 14px;
    }

    .desc .carsl_btn {
        margin-bottom: 52px;
    }

    .branding img {
        width: 100%;
    }

    .top-bar-right .language select {
        font-size: 9px;
    }

    .top-bar-right .screen {
        display: none;
    }

    .top-bar-right .skip {
        display: none;
    }

    header.home.scrolled {
        height: 90px;
    }

        header.home.scrolled .bottom-header {
            margin-top: 0px;
        }

    .interviews-section .column-header {
        display: block;
    }

    .mpladsmain .table-container h3 {
        font-size: 25px;
    }

    .akam-week .video-card iframe {
        height: 300px;
    }

    .budget .reaction-img {
        background: #ffffff;
        border-radius: 20px;
    }

        .budget .reaction-img .reac-threebox {
            width: 100%;
        }

        .budget .reaction-img .reac-threebox {
            margin: 20px auto;
        }

    .budget .card {
        height: auto;
    }

    .ab-navigation {
        margin-top: 30px;
    }

    .card-body {
        height: 300px;
    }

    .statebudget .statebudget-section .link-btn {
        display: block;
        width: 50%;
        margin: 10px auto;
    }

    .statebudget {
        margin-top: 70px;
    }

        .statebudget .statebudget-section .custom-bar {
            margin: 20px 0;
            display: block;
        }

            .statebudget .statebudget-section .custom-bar .mr-2 {
                margin-right: 0 !important;
                font-size: 18px;
            }

    .card-main {
        padding: 20px;
        min-height: 250px;
    }
}



@media(max-width:576px) {
    .MobileLogo {
        max-width: calc(100% - 115px);
    }

    .MobileRight {
        max-width: 115px;
    }

    .desc {
        width: 80%;
    }

    .speeches-wrapper .cards-grid {
        grid-template-columns: 100%;
    }

    .about-section .about-img {
        width: 100%;
    }

        .about-section .about-img img {
            width: 100%;
        }

    .timeline {
        gap: 5px;
    }

    .year-item .year {
        font-size: 16px;
    }

    .milestone-section .image-container {
        width: 100%;
    }

    .milestone-section {
        padding: 80px 0 50px;
    }

    .articles-media-section .articles-card {
        padding-right: 0;
    }

    .articles-media-section .media-card {
        margin-top: 50px;
        padding-left: 20px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    footer .top-footer ul.footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-midia-news h4 {
        margin-top: 20px;
    }

    .speeches-wrapper .card img {
        width: 100%;
    }

    .speeches-wrapper .card {
        flex-wrap: wrap;
    }

    .speeches-wrapper .card-content {
        width: 100%;
    }

    .hero {
        margin-top: 84px;
    }

    .hero_carosel.owl-carousel.owl-theme .owl-nav [class*='owl-'] img {
        width: 11px
    }

    .hero .owl-carousel .owl-stage-outer {
        padding-bottom: 50px
    }

    .desc {
        width: 100%;
    }

    .hero_carosel .ban2 {
        width: 100%;
        margin-top: 50px;
    }

    .owl-carousel .owl-item .desc img {
        margin-top: 37px;
    }

    .hero_carosel.owl-theme .owl-nav {
        position: absolute;
        bottom: 0;
        left: 50%;
        text-align: center;
        display: flex;
        justify-content: center;
        transform: translate(-50%, 0);
    }

    .hero_carosel.owl-carousel.owl-theme .owl-nav [class*='owl-'] {
        position: unset;
        width: auto;
        background: #f27127;
        padding: 5px 14px !important;
    }

    .hero-img img {
        min-height: 230px;
    }
    /*.about-section {padding: 190px 0 100px;}*/
    header.home {
        padding-bottom: 10px;
    }

    .home.scrolled .top-bar-right {
        flex-wrap: wrap;
        justify-content: end;
        margin-bottom: 0;
        visibility: visible;
        opacity: 1;
        max-height: unset;
        overflow: visible;
    }

    .top-bar-right a {
        font-size: 11px;
    }

    .about-section:hover .about-img:before {
        right: -14px;
        bottom: -17px;
    }

    .about-section .about-img:before {
        right: -14px;
        bottom: -17px;
    }

    .gallery-item p {
        height: auto;
    }

    .about-section {
        padding: 50px 0 20px;
    }

    .articles-media-section {
        background: linear-gradient(to bottom, #fce9e0 0%, #fce9e0 50%, #fff4ef 00%, #fff4ef 00%);
    }

    .articles-media-section {
        padding: 50px 0;
    }

    .interviews-section {
        padding: 80px 0;
    }

    .timeline {
        gap: 5px;
    }

    .year-item .year {
        font-size: 15px;
    }


    header.home.scrolled {
        height: auto;
    }

        header.home.scrolled .bottom-header {
            margin-top: 0px;
        }

    .top-bar-right .screen {
        display: none;
    }

    .top-bar-right .skip {
        display: none;
    }

    .topsrchbx {
        width: 311px;
    }

    header.mobtopnav {
        margin-top: -50px;
    }

    .interviews-section .column-header {
        display: block;
        margin-top: 20px;
    }

    .mpladsmain .table-container h3 {
        font-size: 25px;
    }

    .main-nav ul li ul.submenu {
        position: relative;
    }

    .main-nav > ul > li:hover > a, .main-nav > ul > li > a.active {
        color: #fff
    }

        .main-nav > ul > li:hover > a .arrow {
            border-color: #fff;
        }

    .main-nav > ul > li > a .arrow {
        position: absolute;
        right: 17px;
        top: 17px;
    }

    .topbanimg {
        display: none;
    }

    .budget .reaction-img {
        background: #ffffff;
        border-radius: 20px;
        margin: 0 10px;
        height: auto;
    }

        .budget .reaction-img .reac-threebox {
            width: 100%;
        }

    .budget .card {
        height: auto;
    }

    .statebudget .statebudget-section .nav-tabs {
        margin-bottom: 0;
        margin-top: 50px;
    }

        .statebudget .statebudget-section .nav-tabs .nav-link.active {
            margin-bottom: 20px;
        }

    .recent-media {
        padding: 100px 0;
    }

    .interviews .reply-card {
        display: block;
    }

    .interviews .reply-img {
        width: 100%;
    }

    .interviews .reply-content {
        margin-top: 35px;
        margin-left: 0;
    }

    .interviews .reply-card:nth-of-type(1) {
        margin-top: 50px;
    }

    .statebudget .statebudget-section {
        margin-top: 50px;
        margin-bottom: 0;
    }

    .akam-week .content-section {
        margin: 100px 0 50px 0;
    }

        .akam-week .content-section h2 {
            font-size: 27px;
        }

    .akam-week .video-card {
        padding: 0;
    }

        .akam-week .video-card iframe {
            height: 300px;
        }

        .akam-week .video-card p {
            font-size: 15px;
        }

    .akam-week .akam-literacy h2 {
        font-size: 24px;
    }

    .gallery {
        margin-top: 60px;
    }

    .main-articles {
        margin-top: 100px;
    }

    .speeches {
        margin-top: 60px;
    }

    .parliament {
        margin-top: 60px;
    }

    .post-budget .postbud-cart iframe {
        height: 300px;
    }

    .post-budget .postbud-cart .postbyd-text {
        height: auto;
    }

    .post-budget .postbud-cart {
        padding: 10px;
    }

    .budget .interaction-section {
        padding: 0 0 20px 0;
    }

    .budget .interaction-title {
        font-size: 24px;
    }

    .budget .interview-title {
        font-size: 24px;
    }

    .budget .budget-speech h2 {
        font-size: 28px;
    }

    .budget .budget-speech {
        padding: 40px 0;
        margin: 30px 0;
    }

    .budget-analysis .report-card {
        padding: 20px;
    }

    .budget-analysis .owl-carousel .owl-item img {
        width: 100%;
    }

    .budget .nav-tabs .nav-link {
        width: auto;
        height: 38px;
        padding: 6px 10px;
        font-size: 14px;
    }

    .budget .budget-card .card-title {
        font-size: 20px;
    }

    .budget .budget-speech iframe {
        height: 300px;
    }

    .ab-navigation {
        margin-top: 30px;
    }

    .card-body {
        height: auto;
    }

    .statebudget .statebudget-section .link-btn {
        display: block;
        width: 50%;
        margin: 10px auto;
    }

    .statebudget {
        margin-top: 70px;
    }

        .statebudget .statebudget-section .custom-bar {
            margin: 20px 0;
        }

            .statebudget .statebudget-section .custom-bar .mr-2 {
                margin-right: 0 !important;
                font-size: 18px;
            }

    .customercare-nav .nav-img {
        display: none;
    }

    .fullbox-menu {
        top: 153px;
        left: 0px;
    }

    .main-nav > ul > li:hover > a, .main-nav > ul > li > a.active {
        color: #000000;
    }


    .mega-menu .fullbox-menu {
        position: relative;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border-radius: 0;
        padding: 10px 0;
        display: none;
    }

    .mega-menu .multi-dropdown.open .fullbox-menu {
        display: block;
        margin-bottom: 10px;
    }

    .mega-menu .fullbox-menu .row {
        flex-direction: column;
    }

    .mega-menu .left-menu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .mega-menu .left-menu {
        width: 100%;
        margin-bottom: 10px;
    }

        .mega-menu .left-menu a {
            background: #f5f5f5;
            margin-bottom: 4px;
            font-size: 14px;
            width: 100%;
        }

    .mega-menu .menu-content.active {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }

    .mega-menu .middle-list {
        flex: 1 1 50%;
        max-width: 50%;
    }

        .mega-menu .middle-list ul {
            width: 100%;
        }

    .mega-menu .right-img {
        flex: 1 1 50%;
        max-width: 50%;
        text-align: center;
    }

        .mega-menu .right-img img {
            max-width: 73%;
            height: auto;
            border-radius: 6px;
            margin-left: 0;
        }

    .mega-menu .middle-list ul li a {
        font-size: 14px;
        padding: 6px 8px;
    }

    .mega-menu .submenu {
        left: 0%;
        min-width: 100%;
    }

    .overview .column-header {
        display: block;
    }

        .overview .column-header h2 {
            font-size: 25px;
        }

    .overview-main {
        margin-top: 70px;
    }

        .overview-main .recent-media {
            padding: 50px 0;
        }
}


.fixed-size-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}

    .fixed-size-img.small-source-img {
        object-fit: contain;
        background-color: #f1f1f1;
    }

.fixed-size-img_carousel {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block; /* ensures proper alignment */
    margin: 0 auto; /* centers inside column */
}

.fixed-size-img_carousel_news {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block; /* ensures proper alignment */
    margin: 0 auto; /* centers inside column */
}

.img-wrapper {
    padding: 20px; /* space around image */
    text-align: center; /* optional for alignment */
}




@media(max-width:400px) {
    .container {
        padding: 0 15px;
    }

    .custom-pagination .page-link {
        padding: 0px 5px;
        margin: 0 2px;
    }

    .about-section .about-img {
        margin-bottom: 60px;
    }

    .about-section p {
        text-align: justify;
    }

    .milestone-content {
        padding: 0 30px;
    }

    .milestone-section .content-text {
        width: 100%;
        padding-left: 0px;
    }

    .budget .budget-speech iframe {
        height: auto;
    }

    .recent-media .news-overlay .hover-top {
        font-size: 16px;
    }

    .recent-media .news-overlay .hover-bot {
        font-size: 16px;
    }

    .interviews-section .column-header {
        display: block;
        margin-top: 20px;
    }

    .mpladsmain .table-container h3 {
        font-size: 25px;
    }

    .mpladsmain .info-card {
        display: block;
    }

        .mpladsmain .info-card .right-box {
            padding-left: 0;
            border-left: none;
            padding-top: 10px;
            border-top: 1px solid #d0d0d0;
        }

    .statebudget .statebudget-section .custom-bar {
        display: block;
    }

    .statebudget .statebudget-section .btn-outline-light {
        margin: 10px;
    }

    .akam-week .comic-books .com-book-orange {
        padding: 30px 20px;
    }

    .speeches .event-card {
        display: block;
    }

        .speeches .event-card img {
            width: 100%;
            height: auto;
        }

    .speeches .event-content {
        margin-left: 0;
        margin-top: 35px;
    }

    .parliament .reply-card {
        display: block;
    }

        .parliament .reply-card .position-relative img {
            width: 100%;
            height: auto;
        }

    .parliament .reply-content {
        margin-left: 0;
        margin-top: 35px;
    }

    .main-articles .card {
        flex-direction: column;
    }

        .main-articles .card .card-img-top {
            width: 100%;
        }

    .main-articles .card-body {
        padding: 20px 0.25rem;
    }
}


@media(max-width:340px) {
}
