@charset "UTF-8";
/*!
 * Bootstrap  v5.2.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #A8B504;
    --bs-secondary: #6c6c6c;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f5f2f2;
    --bs-dark: #444443;
    --bs-primary-rgb: 168, 181, 4;
    --bs-secondary-rgb: 108, 108, 108;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 245, 242, 242;
    --bs-dark-rgb: 68, 68, 67;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 0.8rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #A8B504;
    --bs-link-hover-color: #869103;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

* {
    padding: 0;
    margin: 0;
}

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

::placeholder {
    color: #000000c2;
    opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}


html::-webkit-scrollbar {
    width: 0.3rem;
}

html::-webkit-scrollbar-track {
    background: orange;
}

html::-webkit-scrollbar-thumb {
    background: var(--bs-primary);
    border-radius: 0.5rem;
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    /*background-color: var(--bs-body-bg);*/
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1, .h1 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 2rem;
    }
}

h2, .h2 {
    font-size: calc(1.285rem + 0.42vw);
}

@media (min-width: 1200px) {
    h2, .h2 {
        font-size: 1.6rem;
    }
}

h3, .h3 {
    font-size: calc(1.265rem + 0.18vw);
}

@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 1.4rem;
    }
}

h4, .h4 {
    font-size: 1.2rem;
}

h5, .h5 {
    font-size: 1rem;
}

h6, .h6 {
    font-size: 0.8rem;
}

a {
    color: #000;
    text-decoration: underline;
}

    a.rlogo {
        text-decoration: none;
    }

    a:hover {
        color: var(--bs-primary);
    }


pre,
code,
kbd,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
}

.toll_freeno {
    font-weight: 500 !important;
}

.lead {
    font-size: 1rem;
    font-weight: 300;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1rem;
}


@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1350px;
        margin: 0 auto;
        width: 100%;
    }
}

.table-primary {
    --bs-table-color: #000;
    --bs-table-bg: #eef0cd;
    --bs-table-border-color: #d6d8b9;
    --bs-table-striped-bg: #e2e4c3;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #d6d8b9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #dcdebe;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-secondary {
    --bs-table-color: #000;
    --bs-table-bg: #e2e2e2;
    --bs-table-border-color: #cbcbcb;
    --bs-table-striped-bg: #d7d7d7;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbcbcb;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d1d1;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-light {
    --bs-table-color: #000;
    --bs-table-bg: #f5f2f2;
    --bs-table-border-color: #dddada;
    --bs-table-striped-bg: #e9e6e6;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dddada;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e3e0e0;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-dark {
    --bs-table-color: #fff;
    --bs-table-bg: #444443;
    --bs-table-border-color: #575756;
    --bs-table-striped-bg: #4d4d4c;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #575756;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #525251;
    --bs-table-hover-color: #fff;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1rem;
}

.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.7rem;
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #6c757d;
}

.form-control {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 0;
    border: 1px solid #39424C;
}

    .form-control:focus {
        border-color: #d4da82;
        box-shadow: 0 0 0 0.25rem rgba(168, 181, 4, 0.25);
    }

    .form-control::-webkit-date-and-time-value {
        height: 1.5em;
    }

    .form-control:disabled {
        background-color: #e9ecef;
        opacity: 1;
    }

.form-control-sm {
    font-size: 0.7rem;
}

.form-control-lg {
    font-size: 1rem;
}

.form-select {
    font-size: 0.8rem;
    border: 1px solid #39424C;
}

    .form-select:focus {
        border-color: var(--bs-primary);
    }

.form-select-sm {
    font-size: 0.7rem;
}

.form-select-lg {
    font-size: 1rem;
}

.form-check {
    min-height: 1.2rem;
    border: 1px solid #39424C;
}


.form-check-input:checked {
    background-color: #A8B504;
    border-color: #A8B504;
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(168, 181, 4, 0.25);
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(168, 181, 4, 0.25);
}

.form-range::-webkit-slider-thumb {
    background-color: #A8B504;
}

    .form-range::-webkit-slider-thumb:active {
        background-color: #e5e9b4;
    }

.form-range::-moz-range-thumb:active {
    background-color: #e5e9b4;
}

.form-range:disabled {
    pointer-events: none;
}

    .form-range:disabled::-webkit-slider-thumb {
        background-color: #adb5bd;
    }

    .form-range:disabled::-moz-range-thumb {
        background-color: #adb5bd;
    }

.form-floating {
    position: relative;
}


.input-group-text {
    font-size: 0.8rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
    font-size: 1rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
    font-size: 0.7rem;
}


.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #198754;
}

.valid-tooltip {
    font-size: 0.7rem;
}

.btn, .linksBtnSide .btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family:;
    --bs-btn-font-size: 0.8rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #212529;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.375rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    background-color: var(--bs-btn-bg);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn, .linksBtnSide .btn {
        transition: none;
    }
}

.btn-primary {
    --bs-btn-color: #000;
    --bs-btn-bg: #126331;
    --bs-btn-border-color: #A8B504;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #b5c02a;
    --bs-btn-hover-border-color: #b1bc1d;
    --bs-btn-focus-shadow-rgb: 143, 154, 3;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #b9c436;
    --bs-btn-active-border-color: #b1bc1d;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #A8B504;
    --bs-btn-disabled-border-color: #A8B504;
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #6c6c6c;
    --bs-btn-border-color: #6c6c6c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5c5c5c;
    --bs-btn-hover-border-color: #565656;
    --bs-btn-focus-shadow-rgb: 130, 130, 130;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #565656;
    --bs-btn-active-border-color: #515151;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c6c6c;
    --bs-btn-disabled-border-color: #6c6c6c;
}

.btn-light {
    --bs-btn-color: #000;
    --bs-btn-bg: #f5f2f2;
    --bs-btn-border-color: #f5f2f2;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #d0cece;
    --bs-btn-hover-border-color: #c4c2c2;
    --bs-btn-focus-shadow-rgb: 208, 206, 206;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #c4c2c2;
    --bs-btn-active-border-color: #b8b6b6;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f5f2f2;
    --bs-btn-disabled-border-color: #f5f2f2;
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #444443;
    --bs-btn-border-color: #444443;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #60605f;
    --bs-btn-hover-border-color: #575756;
    --bs-btn-focus-shadow-rgb: 96, 96, 95;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: dimgray;
    --bs-btn-active-border-color: #575756;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #444443;
    --bs-btn-disabled-border-color: #444443;
}

.btn-outline-primary {
    --bs-btn-color: #A8B504;
    --bs-btn-border-color: #A8B504;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #A8B504;
    --bs-btn-hover-border-color: #A8B504;
    --bs-btn-focus-shadow-rgb: 168, 181, 4;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #A8B504;
    --bs-btn-active-border-color: #A8B504;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #A8B504;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #A8B504;
    --bs-gradient: none;
}

.btn-outline-secondary {
    --bs-btn-color: #6c6c6c;
    --bs-btn-border-color: #6c6c6c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #6c6c6c;
    --bs-btn-hover-border-color: #6c6c6c;
    --bs-btn-focus-shadow-rgb: 108, 108, 108;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #6c6c6c;
    --bs-btn-active-border-color: #6c6c6c;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #6c6c6c;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #6c6c6c;
    --bs-gradient: none;
}

.btn-outline-light {
    --bs-btn-color: #f5f2f2;
    --bs-btn-border-color: #f5f2f2;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #f5f2f2;
    --bs-btn-hover-border-color: #f5f2f2;
    --bs-btn-focus-shadow-rgb: 245, 242, 242;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #f5f2f2;
    --bs-btn-active-border-color: #f5f2f2;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #f5f2f2;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #f5f2f2;
    --bs-gradient: none;
}

.btn-outline-dark {
    --bs-btn-color: #444443;
    --bs-btn-border-color: #444443;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #444443;
    --bs-btn-hover-border-color: #444443;
    --bs-btn-focus-shadow-rgb: 68, 68, 67;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #444443;
    --bs-btn-active-border-color: #444443;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #444443;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #444443;
    --bs-gradient: none;
}

.btn-link {
    --bs-btn-focus-shadow-rgb: 143, 154, 3;
    text-decoration: underline;
}

.btn-lg, .btn-group-lg > .btn {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-border-radius: 0.5rem;
}

.btn-sm, .btn-group-sm > .btn {
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.7rem;
    --bs-btn-border-radius: 0.25rem;
}

.dropdown-menu {
    --bs-dropdown-font-size: 0.8rem;
    --bs-dropdown-link-active-bg: #A8B504;
}

.dropdown-header {
    font-size: 0.7rem;
}


.dropdown-menu-dark {
    --bs-dropdown-link-active-bg: #A8B504;
    --bs-dropdown-header-color: #adb5bd;
}


.nav-pills {
    --bs-nav-pills-link-active-bg: #A8B504;
}



    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
        color: #ffffff;
        background-color: var(--bs-primary);
    }


.navbar {
    --bs-navbar-brand-padding-y: 0.35rem;
    --bs-navbar-brand-font-size: 1rem;
    --bs-navbar-toggler-font-size: 1rem;
}

@media (min-width: 1200px) and (max-width: 1350px) {
    .logo-wrapper .logo-text p:nth-child(2) {
        font-size: 21px;
    }

    .logo-wrapper .logo-text p:nth-col(3) {
        font-size: 16px;
    }
}

.accordion {
    --bs-accordion-btn-focus-border-color: #d4da82;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(168, 181, 4, 0.25);
    --bs-accordion-active-color: #97a304;
    --bs-accordion-active-bg: #f6f8e6;
}

.accordion-button {
    font-size: 0.8rem;
}


.accordion-body {
    background: #fffae0;
    border: 1px solid #e5e5e5;
}

.breadcrumb-item.active a {
    color: #FBF53C;
    text-decoration: none;
    pointer-events: none;
}

.breadcrumb_cust {
    position: relative;
    bottom: 25px;
}

    .breadcrumb_cust .breadcrumb-item {
        font-size: 12px;
    }

.pagination {
    --bs-pagination-font-size: 0.8rem;
    --bs-pagination-focus-box-shadow: 0 0 0 0.1rem #006c51;
    --bs-pagination-active-bg: #A8B504;
    --bs-pagination-active-border-color: #A8B504;
}

.page-link {
    color: var(--bs-primary);
}

    .page-link:hover, .page-link:focus {
        color: #404601;
        border-color: var(--bs-primary);
    }

    .page-link.active, .active > .page-link {
        color: #fff;
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
    }

.pagination-lg {
    --bs-pagination-font-size: 1rem;
    --bs-pagination-border-radius: 0.5rem;
}

.pagination-sm {
    --bs-pagination-font-size: 0.7rem;
    --bs-pagination-border-radius: 0.25rem;
}

.alert-primary {
    --bs-alert-color: #656d02;
    --bs-alert-bg: #eef0cd;
    --bs-alert-border-color: #e5e9b4;
}

    .alert-primary .alert-link {
        color: #515702;
    }

.alert-secondary {
    --bs-alert-color: #414141;
    --bs-alert-bg: #e2e2e2;
    --bs-alert-border-color: lightgray;
}

    .alert-secondary .alert-link {
        color: #343434;
    }


.alert-light {
    --bs-alert-color: #626161;
    --bs-alert-bg: #fdfcfc;
    --bs-alert-border-color: #fcfbfb;
}

    .alert-light .alert-link {
        color: #4e4e4e;
    }

.alert-dark {
    --bs-alert-color: #292928;
    --bs-alert-bg: #dadad9;
    --bs-alert-border-color: #c7c7c7;
}

    .alert-dark .alert-link {
        color: #212120;
    }


.progress {
    --bs-progress-font-size: 0.6rem;
    --bs-progress-bar-bg: #A8B504;
}


.list-group {
    --bs-list-group-active-bg: #A8B504;
    --bs-list-group-active-border-color: #A8B504;
}

.list-group-item-primary {
    color: #656d02;
    background-color: #eef0cd;
}

    .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
        color: #656d02;
        background-color: #d6d8b9;
    }

    .list-group-item-primary.list-group-item-action.active {
        color: #fff;
        background-color: #656d02;
        border-color: #656d02;
    }

.list-group-item-secondary {
    color: #414141;
    background-color: #e2e2e2;
}

    .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
        color: #414141;
        background-color: #cbcbcb;
    }

    .list-group-item-secondary.list-group-item-action.active {
        color: #fff;
        background-color: #414141;
        border-color: #414141;
    }

.list-group-item-light {
    color: #626161;
    background-color: #fdfcfc;
}

    .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
        color: #626161;
        background-color: #e4e3e3;
    }

    .list-group-item-light.list-group-item-action.active {
        color: #fff;
        background-color: #626161;
        border-color: #626161;
    }

.list-group-item-dark {
    color: #292928;
    background-color: #dadad9;
}

    .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
        color: #292928;
        background-color: #c4c4c3;
    }

    .list-group-item-dark.list-group-item-action.active {
        color: #fff;
        background-color: #292928;
        border-color: #292928;
    }


.tooltip {
    --bs-tooltip-font-size: 0.7rem;
}


.popover {
    --bs-popover-font-size: 0.7rem;
    --bs-popover-header-font-size: 0.8rem;
}


.text-bg-primary {
    color: #000 !important;
    background-color: RGBA(168, 181, 4, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
    color: #fff !important;
    background-color: RGBA(108, 108, 108, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
    color: #000 !important;
    background-color: RGBA(245, 242, 242, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
    color: #fff !important;
    background-color: RGBA(68, 68, 67, var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
    color: #A8B504 !important;
}

    .link-primary:hover, .link-primary:focus {
        color: #b9c436 !important;
    }

.link-secondary {
    color: #6c6c6c !important;
}

    .link-secondary:hover, .link-secondary:focus {
        color: #565656 !important;
    }

.link-light {
    color: #f5f2f2 !important;
}

    .link-light:hover, .link-light:focus {
        color: #f7f5f5 !important;
    }

.link-dark {
    color: #444443 !important;
}

    .link-dark:hover, .link-dark:focus {
        color: #363636 !important;
    }


.h-100, #rtiCycle .card .d-flex {
    height: 100% !important;
}


.mx-auto, .owl-carouselWrapper .owl-carousel .item .iconWrap {
    margin-right: auto !important;
    margin-left: auto !important;
}


.mb-4, .linksBtnSide li {
    margin-bottom: 1.5rem !important;
}


.p-2, .owl-carouselWrapper .owl-carousel .item .arrow {
    padding: 0.5rem !important;
}


.p-4, .owl-carouselWrapper .owl-carousel .item .iconWrap {
    padding: 1.5rem !important;
}

.linksBtnSide .btn {
    padding-right: .5rem !important;
    padding-left: .5rem !important;
}

.fw-bold, #rtiCycle .card h4, #rtiCycle .card .h4, .linksBtnSide .btn {
    font-weight: 600 !important;
}


.text-uppercase, .linksBtnSide .btn {
    text-transform: uppercase !important;
}


.text-info {
    --bs-text-opacity: 1;
    color: #6b3d1b;
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2rem !important;
    }

    .fs-2 {
        font-size: 1.6rem !important;
    }

    .fs-3 {
        font-size: 1.4rem !important;
    }
}

.bg-dark-gray {
    background: #ccc;
}

.innerHeaderBg {
    background: #000 url("../images/internal-bg.jpg") no-repeat center center;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #f5f2f2;
}

.border-bottom-1 {
    border-bottom: 1px solid #ccc;
}

.list-group {
    border-radius: 0;
}

    .list-group li {
        background: #f6f2f2;
        padding: 0;
    }

        .list-group li a {
            padding: 0.5rem 1rem;
            display: block;
            font-weight: 500;
            font-size: 1rem;
            color: #666666;
        }

        .list-group li .active {
            background: var(--bs-primary);
            color: #ffffff;
        }

#menuLeft li:hover a {
    background: #6b3d1b;
    color: #ffffff !important;
    cursor: pointer;
}

.list-group-flush > .list-group-item:last-child {
    border-radius: 0;
}

.address h4, .address .h4 {
    margin-bottom: 1rem;
}

.address .addIcon {
    display: flex;
    gap: 12px;
}

    .address .addIcon p {
        font-weight: 500;
        font-size: 18px;
    }

.mapouter {
    position: relative;
    text-align: left;
    height: 100%;
    width: 100%;
    display: block;
}

    .mapouter .gmap_canvas {
        overflow: hidden;
        background: none !important;
        height: 100%;
        width: 100%;
    }

        .mapouter .gmap_canvas .iframe {
            width: 100%;
            height: 300px;
        }

.highcharts-figure,
.highcharts-data-table table {
    min-width: 360px;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

#orgChart h4, #orgChart .h4 {
    text-transform: none;
    font-size: 14px;
    font-weight: normal;
}

#orgChart p {
    font-size: 11px;
    line-height: 14px;
}

@media screen and (max-width: 600px) {
    #orgChart h4, #orgChart .h4 {
        font-size: 2.3vw;
        line-height: 3vw;
    }
}

.nav-pills .nav-item {
    margin: 0px 2px;
}

    .nav-pills .nav-item .nav-link {
        font-weight: 500;
        position: relative;
        line-height: 1.5;
    }

.bulletText {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1rem;
}

    .bulletText li {
        margin-bottom: 0.6rem;
        list-style: none;
        padding-left: 20px;
        position: relative;
    }

        .bulletText li p a {
            text-decoration: underline;
            color: var(--bs-primary) !important;
        }

a.text-primary {
    text-decoration: underline;
    color: var(--bs-primary) !important;
}



.bulletText li span {
    font-weight: 500;
    display: unset;
}

.pageLink {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #f6f2f2;
}

    .pageLink li {
        display: block;
        position: relative;
    }

        .pageLink li::before {
            content: "\f061";
            position: absolute;
            top: 10px;
            left: 8px;
            font-family: fontAwesome;
            color: #8f3900;
        }

        .pageLink li a {
            background: #f6f2f2;
            color: #666;
            display: block;
            padding: 0.5rem 1rem 0.5rem 1.5rem;
            border-bottom: 1px solid #ccc;
            font-size: 1rem;
            font-weight: 500;
        }

        .pageLink li ul {
            padding-left: 1rem;
        }

.sub-menu {
    display: none;
}

.dynamicContent .card-body h1, .dynamicContent .card-body .h1, .dynamicContent .card-body h2, .dynamicContent .card-body .h2, .dynamicContent .card-body h3, .dynamicContent .card-body .h3, .dynamicContent .card-body h4, .dynamicContent .card-body .h4, .dynamicContent .card-body h5, .dynamicContent .card-body .h5, .dynamicContent .card-body h6, .dynamicContent .card-body .h6 {
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #ccc;
    margin: 1.5rem 0 0.5rem 0;
    color: #A8B504;
    font-weight: 600;
}

.dynamicContent .card-body p {
    margin-bottom: 1rem;
}

.dynamicContent .card-body .table {
    font-size: 0.938rem;
}

.dynamicContent .card-body ul li {
    font-size: 0.938rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

    .dynamicContent .card-body ul li::before {
        content: "\f101";
        position: absolute;
        left: 0;
        top: -1px;
        font-size: 1rem;
        font-family: fontAwesome;
        color: #8f3900;
        font-weight: 500;
    }

.dynamicContent .card-body ol {
    margin: 0;
    padding: 0 0 0 0.8rem;
}

    .dynamicContent .card-body ol li {
        font-size: 0.938rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
        padding-left: 1rem;
        position: relative;
    }

/*--------- Topbar Style-------------*/
html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
}

html {
    margin: 0px;
    padding: 0px;
}

ul {
    padding-left: 0px;
    list-style-type: none;
}

p {
    margin-bottom: 0.938rem;
    margin-top: 0px;
    font-family: "Poppins", sans-serif;
    font-size: 0.938rem;
    line-height: 1.5rem;
}


.scrollbar::-webkit-scrollbar {
    width: 0.8em;
    height: 0.8em;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: #A8B504;
}

.scrollbar::-webkit-scrollbar-track {
    background: #d4da82;
}

.scrollbar {
    scrollbar-color: #A8B504 #d4da82;
}

    .scrollbar::-webkit-scrollbar {
        width: 10px;
    }

    .scrollbar::-webkit-scrollbar-track {
        background: #d4da82; /* Old scrollbar-track-color */
    }

    .scrollbar::-webkit-scrollbar-thumb {
        background: #A8B504; /* Old scrollbar-face-color */
    }

.rti-sec {
    background: #ececec;
}

.res-earch-logo img {
    height: 90px;
}

.search-icon {
    background-color: #A8B504;
    border: 0;
    outline: auto;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.19), 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 29px;
    width: 29px;
    border-radius: 4px;
}

.search-container {
    position: absolute;
    right: 0;
    transition: all 0.3s;
    max-height: 0;
    overflow: hidden;
    background-color: #eee;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    top: 36px;
}

    .search-container.opened {
        max-height: 100px;
    }

.Wrapper {
    flex: 1;
}

.search-container input#search-terms {
    outline: auto;
    font-size: 12px;
    width: 300px;
    background-color: inherit;
    border: 0;
    height: 37px;
    padding: 10px;
}

.search-container .search-icon {
    vertical-align: middle;
}

.search-toggle.opened .search-icon.icon-search {
    display: none;
}

.search-toggle.opened .search-icon.icon-close {
    display: block;
    padding: 1px 5px 0;
}

.search-toggle .search-icon.icon-close {
    display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
    content: unset;
}

/*------------Top Bottom Btn End Styling --------------*/

.card {
    border-radius: unset;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.topbar {
    background: var(--bs-primary);
}

    .topbar ul li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .topbar ul li:first-child a {
            color: #fff;
        }

        .topbar ul li:not(:last-child):after {
            content: "";
            position: absolute;
            z-index: 1;
            display: block;
            top: 0;
            right: 0;
            height: 100%;
        }

        .topbar ul li button, .topbar ul li p, .topbar ul li a {
            font-size: 0.8rem;
            font-weight: 300;
            color: #ffffff;
            background: none;
            border: none;
        }


.mode-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    font-size: 12px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
}

    .mode-btn i {
        pointer-events: none;
    }

    .mode-btn[aria-pressed="true"] {
        box-shadow: 0 0 0 2px rgba(0, 94, 162, 0.5); /* Visual pressed state */
        border-color: #005ea2;
    }

    /* Specific Modes */
    .mode-btn.light-btn {
        background-color: #fff;
        color: var(--bs-primary);
        border: 1px solid #ccc;
    }

    .mode-btn.dark-btn {
        background-color: #000;
        color: #ff0;
        border: 1px solid #666;
    }

    .mode-btn.gray-btn {
        background-color: #545454;
        color: #ff0;
        border: 1px solid #666;
    }

.screen_reader_icon {
    height: 20px !important;
    filter: invert(1)
}

.skip_content_icon {
    font-size: 13px;
    margin-top: 5px;
}

#languageIcon {
    color: #fff;
}
/*--------- Topbar Style-------------*/
/*----------- header logo section Style ------*/
.facebook {
    background: #3b5998;
    color: #fff;
}

.twitter {
    background: #00acee;
    color: #fff;
}

.index_map {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.h-322 {
    height: 300px;
    overflow: auto;
}

.h-330 {
    height: 253px;
    overflow: auto;
}

.h-167 {
    height: 167px;
    overflow: auto;
}

.linksBtnSide li:after {
    content: "";
    width: 15px;
    height: 30px;
    background-color: #6d5200;
    transform: skewY(45deg);
    display: block;
    position: absolute;
    right: 0;
    top: -10px;
    z-index: -1;
}

.linksBtnSide .btn {
    color: #444443;
    font-size: 1.04rem;
    width: 100%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

/*----------- header logo section Style ------*/
/*------------------Nav Section Style -------*/
/*------------------Nav Section Style -------*/
/*---------- Banner Section Style ---------*/
.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 100%;
    background: #6c6c6c;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #A8B504;
    opacity: 1 !important;
}

/*---------- Banner Section Style ---------*/
/*-----------Introduction and About the Ministers Section----------------*/
.intro-box p {
    text-align: justify;
}

.intro-box .divider {
    display: flex;
}

    .intro-box .divider:before, .intro-box .divider:after {
        content: "";
        flex: 1;
    }

.intro-box .intro-title {
    overflow: hidden;
    align-items: center;
    background: #A8B504;
    color: #fff;
    height: 2em;
    line-height: 2em;
    margin: 0px;
}

    .intro-box .intro-title:before, .intro-box .intro-title:after {
        background: white;
        padding: 50px 0;
        height: 0;
        transform: rotate(45deg);
    }

.intro-box .intro-content {
    padding: 20px 20px;
    background: #f5f2f2;
}

    .intro-box .intro-content p {
        font-size: 14px;
        line-height: 21px;
        text-align: justify;
        margin-bottom: 10px;
    }

    .intro-box .intro-content img {
        max-height: 260px;
    }

.about-ministrybg {
    background: #fff;
}

.mnster-min-hght {
    min-height: 325px;
}

    .mnster-min-hght img {
        height: 167px;
    }

    .mnster-min-hght h6, .mnster-min-hght .h6 {
        font-size: 14px;
        margin: 10px 0px 0px;
        line-height: 19px;
        font-weight: 500;
    }

    .mnster-min-hght p {
        font-size: 14px;
    }

    .mnster-min-hght a {
        color: #A8B504;
        font-size: 14px;
    }

.state-mistry img {
    height: 64px;
}

.state-mistry h6, .state-mistry .h6 {
    font-size: 14px;
    margin: 0px 0px 0px 0px;
    line-height: 19px;
    font-weight: 500;
}

.state-mistry a {
    font-size: 13px;
    font-weight: 500;
    display: block;
    color: #6c6c6c;
}

    .state-mistry a:hover {
        color: #A8B504;
    }

.state-mistry p {
    font-size: 14px;
}

/*-----------Introduction and About the Ministers Section----------------*/
/*---------RTI Section --------------------*/
.rti-bg {
    background: url(../images/rtibg.png), rgba(254, 245, 151, 0.4705882353);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: auto;
    padding: 0px 0px;
}

    .rti-bg div {
        text-align: center;
    }

        .rti-bg div p {
            color: #6c6c6c;
            font-size: 14px;
            text-align: center;
            font-weight: 600;
            margin-bottom: 0px;
        }

.rti-img {
    width: 52px;
}

/*---------RTI Section --------------------*/
/*----------News Section ------------*/
.news-secbg .btns-pos {
    z-index: 11;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-secbg .btns {
    position: unset;
}

.news-secbg a {
    font-size: 16px;
    color: #000;
}

.news-secbg h4, .news-secbg .h4 {
    font-size: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #000;
}

.news-secbg #newssec-slider {
    padding-top: 70px;
    margin-top: -53px;
}

.news-secbg .swiper-button-next, .news-secbg .swiper-button-prev {
    top: 14%;
    height: 30px;
    width: 30px;
    background: #6c6c6c;
    border-radius: 50px;
    color: #fff;
}

.news-secbg .swiper-button-prev {
    left: auto;
    right: 45px;
}

.news-secbg .news-announcementsec-box {
    display: flex;
    flex-direction: column;
}

    .news-secbg .news-announcementsec-box i {
        color: #000;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .news-secbg .news-announcementsec-box a {
        color: #000;
        font-size: 14px;
        line-height: 12px;
        display: block;
        line-height: 1.3;
    }

    .news-secbg .news-announcementsec-box p {
        margin-top: 5px;
        font-size: 14px;
    }

        .news-secbg .news-announcementsec-box p i {
            font-size: 14px;
        }

.tweets-title {
    margin-top: 0px;
    font-size: 25px;
    margin-bottom: 15px;
}

/*.tweets-box {
    height: 352px;
    overflow: auto;
   
}*/
.tweets-box {
    height: 368px;
    overflow: auto;
}

.custom_width {
    width: 250px;
    border-radius: 5px;
}

#formDate,
#toDate {
    height: 28px;
}

.custom_width > .form-control-sm {
    border-radius: 5px;
}

.galley_gap {
    gap: 20px;
}

.gallery_main_heading {
    padding-left: 20px;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
}

    .gallery_main_heading p {
        margin-bottom: 0px;
    }

.max-lines {
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 4.5em;
    line-height: 1.5em;
}

/*----------News Section ------------*/



/*------------Top Bottom Btn Start Styling --------------*/
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: #ffc107;
    color: #ffffff;
    border-radius: 50%;
    border: none;
    text-align: center;
    display: none;
    animation: pulse 3s ease-out;
    animation-iteration-count: infinite;
    z-index: 9999;
}

.bottom_top .top_arr {
    line-height: 40px;
}

/*@keyframes pulse {
    0%, 100% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0px);
    }
}*/

.back-to-top:hover {
    text-decoration: none;
    color: #ffffff;
}
/*------------Top Bottom Btn End Styling --------------*/


/*----------Logo Slider Section--------*/
.india-repblicbg {
    background: url("../images/republic.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 136px;
}

.content {
    position: relative;
    overflow: hidden;
    padding: 30px 0px;
}

    .content .content-overlay {
        background: rgba(0, 0, 0, 0.7);
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        opacity: 0;
        transition: all 0.4s ease-in-out 0s;
    }

    .content:hover .content-overlay {
        opacity: 1;
    }

    .content .content-image {
        width: 100%;
        height: 145px;
    }

    .content .content-details {
        position: absolute;
        text-align: center;
        padding-left: 1em;
        padding-right: 1em;
        width: 100%;
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease-in-out 0s;
    }

        .content .content-details p {
            color: #fff;
            font-size: 14px;
            padding: 0px 10px;
        }

    .content:hover .content-details {
        top: 50%;
        left: 50%;
        opacity: 1;
    }

    .content .fadeIn-top {
        top: 20%;
    }

.skip_content {
    cursor: pointer;
}

.gallery-sec {
    background: #f5f2f2;
    padding: 30px 0px;
}

    .gallery-sec p {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        text-align: center;
        padding: 10px;
    }

    .gallery-sec h4, .gallery-sec .h4 {
        font-size: 30px;
        margin: 0px 0px 16px;
    }

    .gallery-sec h5, .gallery-sec .h5 {
        font-size: 20px;
        margin: 0px 0px 15px;
    }

    .gallery-sec .swiper-button-next, .gallery-sec .swiper-button-prev {
        height: 30px;
        width: 30px;
        background: #6c6c6c;
        border-radius: 50px;
        color: #fff;
    }

.gallery-img {
    width: 100%;
    height: 138px;
}

#galleryimg-slider {
    padding-top: 43px;
    margin-top: -42px;
}

    #galleryimg-slider .card {
        height: 180px;
        transition: all ease-in-out 0.25s;
    }

        #galleryimg-slider .card p {
            font-weight: 400;
            overflow: hidden;
            max-width: 100%;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        #galleryimg-slider .card:hover {
            transition: all ease-in-out 0.25s;
        }

            #galleryimg-slider .card:hover p {
                transition: all ease-in-out 0.25s;
                color: #6c6c6c;
                font-weight: 400;
            }

    #galleryimg-slider .swiper-button-next, #galleryimg-slider .swiper-button-prev {
        top: 6%;
        margin-right: 85px;
    }

    #galleryimg-slider .swiper-button-prev, #galleryimg-slider .swiper-container-rtl .swiper-button-next {
        right: 46px;
        left: auto;
    }

    #galleryimg-slider #galleryimg-slider .swiper-button-prev, #galleryimg-slider #galleryimg-slider .swiper-container-rtl .swiper-button-next {
        right: 118px;
    }

    #galleryimg-slider .content {
        padding: 0px 0px;
    }

        #galleryimg-slider .content .content-overlay {
            height: 97%;
        }

/*---------Gallery section start--------------*/
.nav-tabs {
    --bs-nav-tabs-border-color: transparent;
}

    .nav-tabs .nav-link:focus,
    .nav-tabs .nav-link:hover {
        isolation: isolate;
        border-bottom: 1px solid transparent;
    }

    .nav-tabs .nav-link.active {
        color: var(--bs-primary);
    }

.tab-content .tab-pane .card-body {
    border-radius: 0 0 5px 5px !important;
}

.cust_icon_name {
    font-weight: 500;
    color: #000000;
    font-size: 18px;
}

    .cust_icon_name:hover {
        color: #fec007;
    }

.cust_gall_icon {
    height: 30px;
}

.gallery_box,
.video_box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px;
}

    .gallery_box a {
        /*        text-decoration: none;*/
    }

        .gallery_box a img,
        video {
            width: 210px;
            border-radius: 2px;
            padding: 0.25rem;
            background-color: #fff;
            border: 1px solid #dddfeb;
            height: 150px;
        }

.folder {
    cursor: pointer;
    margin-bottom: 10px;
}



.inner_folder {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #f6f6f6;
    border-radius: 4px;
}


.modal_cus_box {
    background-color: rgba(0, 0, 0, 0.664);
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transition: .3s linear;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.folder .inner_folder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 4px;
    border: 1px solid #e3e6f0;
}
/*------------Gallery section End-------------*/

#VideoGalleryViewAll {
    position: relative;
    z-index: 10;
}

.video-all-btn {
    display: block;
    text-align: center;
    border-top: 1px solid #e3e3e3;
    padding-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #6c6c6c;
}

#videoimg-slider {
    padding-top: 72px;
    margin-top: -55px;
}

    #videoimg-slider img {
        width: 100%;
        height: 271px;
    }

    #videoimg-slider .swiper-button-next, #videoimg-slider .swiper-button-prev {
        top: 11%;
    }

    #videoimg-slider .swiper-button-prev, #videoimg-slider .swiper-container-rtl .swiper-button-next {
        right: 46px;
        left: auto;
    }

.videogallery {
    height: 250px;
    width: 100%;
}

.first {
    display: none;
}


.footerbg {
    background: #444443;
    padding: 20px 0px;
}

    .footerbg a {
        color: #fff;
    }

        .footerbg a:hover {
            color: var(--bs-yellow);
        }

    .footerbg p {
        text-align: end;
        color: #fff;
    }

    .footerbg li {
        position: relative;
    }

        .footerbg li:not(:last-child):after {
            content: "";
            position: absolute;
            z-index: 1;
            border-right: 1px solid #cdcaca;
            display: block;
            top: 5px;
            right: 0;
            height: 68%;
        }

    .footerbg .visitors {
        background: #A8B504;
        padding: 3px 10px;
        margin-left: 10px;
        letter-spacing: 3px;
        font-weight: 500;
    }

.bottom-footer {
    background: #A8B504;
    padding: 10px 0px;
}

    .bottom-footer p {
        color: #fff;
        font-size: 12px;
        text-align: center;
    }

#static-slider {
    background: #f5f2f2;
    padding: 15px 20px;
    margin: 0px;
    border: 1px solid #e3e3e3;
}

    #static-slider .card {
        transition: all ease-in-out 0.5s;
    }

        #static-slider .card:hover {
            transition: all ease-in-out 0.5s;
            box-shadow: 0 2px 8px #91d6a7, 0 2px 8px #ffe3a2;
        }

    #static-slider .swiper-button-next, #static-slider .swiper-button-prev {
        height: 30px;
        width: 30px;
        background: #6c6c6c;
        border-radius: 50px;
        color: #fff;
    }

.min-hght-2 {
    min-height: 228px;
}

.customSliderHead {
    background: #f0f0f0;
    padding: 20px 20px 20px 0;
    margin-top: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: inherit;
    flex-wrap: wrap;
}

    .customSliderHead:before {
        height: 100%;
        width: 50%;
        content: "";
        position: absolute;
        left: -10%;
        transform: skewX(160deg);
        top: 0;
        background: #6c6c6c;
    }

.smartBoardTitle {
    z-index: 1;
    min-height: 165px;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6c6c6c;
}

.latest-news-strip {
    position: relative;
    z-index: 0;
}

    .latest-news-strip .latest-news-ticker {
        position: absolute;
        padding: 7px 10px 5px 14px;
        background: #A8B504;
        display: flex;
    }

        .latest-news-strip .latest-news-ticker p {
            height: 100%;
            color: #fff;
            font-style: italic;
            font-weight: 700;
        }

.perfSmartBoardCont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#DivMarquee {
    background-color: #fffae0;
    overflow: hidden;
    border-bottom: 1px solid var(--bs-primary);
}

    #DivMarquee:hover .marquee {
        animation-play-state: paused !important;
    }

.marquee {
    color: #000;
    padding-top: 10px;
    background-color: #fffae0;
    position: relative;
    /*    overflow: hidden;*/
    height: 40px;
    font-size: 17px;
    color: #333 !important;
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee_ani 30s linear infinite;
    animation-play-state: running;
}

.marquee_list_main {
    z-index: 1;
    background-color: var(--bs-primary);
}

.marquee_bor {
    height: 20px;
}

.marquee p {
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 10px;
}

.marquee a {
    max-width: 100%;
    display: inline-block;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    white-space: nowrap;
}

.marquee p a {
    display: flex;
    align-items: center;
    height: 100%;
    pointer-events: auto;
}


.marquee:hover {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .marquee {
        animation: none;
    }
}

@keyframes marquee_ani {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.bell_icon_marq {
    color: #ffc107;
    margin-right: 6px;
}

#toggleButton {
    position: relative;
    z-index: 10;
    /*    outline: auto;*/
    border: none;
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 50%;
    margin-left: 10px;
    color: #006c51;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hide pause icon initially */
#playIcon {
    display: none;
}
/*--------------G 20 Logo Section style------------*/
.g20-logo-sec {
    background: #e9edf0;
    display: flex;
    align-items: center;
    padding: 20px 11px;
}

.azadi-amrit-logosec {
    background: rgba(209, 253, 114, 0.368627451);
    height: 100%;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .azadi-amrit-logosec .amritMahotsavContent {
        width: calc(100% - 250px);
        padding-left: 50px;
    }

        .azadi-amrit-logosec .amritMahotsavContent h2, .azadi-amrit-logosec .amritMahotsavContent .h2 {
            font-size: 24px;
            margin-bottom: 0px;
            color: #A8B504;
            font-weight: bold;
        }

            .azadi-amrit-logosec .amritMahotsavContent h2 .orangeColor, .azadi-amrit-logosec .amritMahotsavContent .h2 .orangeColor {
                color: #ff1609;
                display: inline-block;
            }

        .azadi-amrit-logosec .amritMahotsavContent p {
            font-size: 16px;
            line-height: 1.2;
            color: #676565;
        }

.pausemarquee, .playmarquee {
    color: #fff;
    padding-left: 10px;
}

.owl-carouselWrapper {
    background-image: url("../images/wheat-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
}

    .owl-carouselWrapper .owl-carousel .item {
        transition: all ease-in-out 0.5s;
        text-align: center;
        min-height: 250px;
        padding: 20px;
        border: 0;
        background-color: var(--bs-white);
        height: 100%;
        box-shadow: none;
    }

        .owl-carouselWrapper .owl-carousel .item .arrow {
            background-color: #ffc107;
            color: var(--bs-dark);
        }

        .owl-carouselWrapper .owl-carousel .item .iconWrap {
            width: 100px;
            height: 100px;
        }

        .owl-carouselWrapper .owl-carousel .item:hover {
            background-color: #ffe69b;
        }

            .owl-carouselWrapper .owl-carousel .item:hover h4, .owl-carouselWrapper .owl-carousel .item:hover .h4 {
                color: var(--bs-primary);
            }

        .owl-carouselWrapper .owl-carousel .item h4, .owl-carouselWrapper .owl-carousel .item .h4 {
            transition: all ease-in-out 0.5s;
            font-size: 0.9rem;
            color: var(--bs-dark);
        }

        .owl-carouselWrapper .owl-carousel .item p {
            font-size: 0.7rem;
            line-height: 1;
            color: var(--bs-dark);
        }

.sectionDesign {
    background-color: var(--bs-primary);
    /*  background-image: url("../images/videoGallery-bg.png");
        background-position: center center;
        background-attachment: fixed;
        background-size: cover;*/
}

#owl-1 .owl-carousel.owl-drag .owl-item {
    margin-right: 0 !important;
}

#owl-1 {
    max-width: 100%;
}

#owl-2 {
    margin-top: 10px;
}

.btns {
    position: absolute;
    bottom: 13px;
    z-index: 11;
    right: 50px;
    background: #A8B504;
    padding: 2px 9px;
    border-radius: 5px;
    display: inline-block;
    float: right;
}

.customNextBtn, .customPreviousBtn, .customPause, .customPlay {
    display: inline-block;
    color: #fff;
    padding: 0px 0px;
    margin-left: 5px;
    cursor: pointer;
    font-size: 20px;
    border: none;
    background-color: transparent;
}

.position-relative, .linksBtnSide li, .owl-carouselWrapper .owl-carousel .item {
    position: relative;
}

.perSmartBoheadRgt {
    font-size: 25px;
}

/*--------------G 20 Logo Section style------------*/
.state-mistry {
    background: #f5f2f2;
}

.card {
    border-radius: 5px;
}

#DivBannerSlider .owl-loaded .item video {
    width: 100%;
    height: 100%;
    position: relative
}

.video_slider_btn {
    position: absolute;
    background: var(--bs-primary);
    z-index: 1000;
    bottom: 4%;
    left: 30px;
    width: 157px;
    height: 34px;
    border: none;
    outline: auto;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.video_slider_btn_Hindi {
    position: absolute;
    background: var(--bs-primary);
    z-index: 1000;
    bottom: 4%;
    left: 30px;
    width: 201px;
    height: 34px;
    border: none;
    outline: auto;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.usefullinks #owl-3 {
    background: #f5f2f2;
    padding: 15px 20px;
}

    .usefullinks #owl-3 .card-body {
        min-height: 220px;
    }

    .usefullinks #owl-3 h4, .usefullinks #owl-3 .h4 {
        font-size: 18px;
        font-weight: 600;
        text-align: center;
    }

    .usefullinks #owl-3 p {
        font-size: 12px;
        text-align: center;
        margin-bottom: 0px;
        color: #000;
    }

.usefullinks .btns {
    top: 63%;
    z-index: 11;
    background: #fff;
    padding: 2px 9px;
    display: inline-block;
    position: absolute;
    left: 61px;
    right: auto;
    bottom: auto;
}


.dir_of_sug {
    min-height: 260px;
}

.dir_of_sug_sec {
    min-height: 252px;
}

.dir_of_sug_third {
    min-height: 450px;
}

.dir_of_sug_forth {
    min-height: 291px;
}

.acts_table td p {
    text-align: left !important;
}

.acts_table th p {
    text-align: left !important;
}

.acts_table .act_and_rules_table tbody tr td {
    padding: 0px !important;
}

.acts_table .act_and_rules_table td {
    padding: 0px !important;
}

.act_and_rules,
.act_and_rules_table,
.act_and_rules_table p {
    margin-bottom: 0;
}


    .act_and_rules tr > td {
        border: none;
        border-bottom: 1px solid #dee2e6;
    }

    .act_and_rules:nth-child(6) tr > td {
        border-bottom: 0;
    }

.act_sec:nth-child(3) tr > td {
    border-bottom: 0;
}

.act_third:nth-child(2) tr > td {
    border-bottom: 0;
}

.custom_btn_help {
    color: #fff !important;
    text-decoration: none;
}

.usefullinks .customNextBtn, .usefullinks .customPreviousBtn, .usefullinks .customPause, .usefullinks .customPlay {
    color: #A8B504;
}

/*#newsTicker p, #newsTicker a {
    font-size: 15px;
    min-width: 100px;
}*/
#whatsNewSection p, #whatsNewSection a {
    font-size: 15px;
    min-width: 100px;
}

.read_less_allocation {
    display: none;
}

.read_less_sdf {
    display: none;
}

.import-exports .head1 {
    background-color: #E4B8B7 !important;
}

.import-exports .head2 {
    background-color: #CCC0D9 !important;
}

.import-exports .head3 {
    background-color: #C1D49B !important;
}

.import-exports .head4 {
    background-color: #D8D8D8 !important;
}

.import-exports .head5 {
    background-color: #DAEEF3 !important;
}

.import-exports .effect td {
    background-color: #FABE8E;
}

.import-exports .import td {
    background-color: #92CCDC !important;
}

.screen_reader_icon {
    height: 20px;
    filter: invert(1);
}

.h-300 {
    height: 300px;
}

/* #newsTicker a:hover {
            color: #6c6c6c;
        }*/

#newsbtn {
    background: #6c6c6c;
    padding: 5px 10px 5px 9px;
    float: right;
}

.btn:hover .fa-angle-right:before {
    color: #6c6c6c;
}

.btn:hover .fa-angle-left:before {
    color: #6c6c6c;
}

.btn:hover .fa-pause-circle-o:before {
    color: #6c6c6c;
}


.block-segment-third {
    /*background-image: url("../images/videoGallery-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;*/
    padding-top: .5rem;
    padding-bottom: .5rem;
}

#rtiCycle .card {
    color: #444443;
    border-radius: 0 100px 100px 0 !important;
    height: 100%;
    transition: .3s linear;
}

    #rtiCycle .card:hover {
        color: #498514;
    }

    #rtiCycle .card span {
        width: 100px;
        text-align: center;
        height: 100%;
    }


.customefirst li:nth-child(n+9) {
    display: none !important;
}

.customesecond li:nth-child(-n+8) {
    display: none !important;
}

.section_design_second {
    margin-top: .5rem;
    padding: 1px 0;
}
/***************************************Footer Styling Start************************************/
.imp-links-bg {
    /*background-image: url(/public/images/footer_inner_banner.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    position: relative;
    background-color: var(--bs-primary);
}

    .imp-links-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0.9;
        background: #135D49;
    }

.footer-social-icons {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 3px;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    background-color: #fff;
    color: #333;
}

    .footer-social-icons i {
        color: #fff;
        font-size: 18px !important;
    }

    .footer-social-icons:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

.social-media-links-sidebar {
    margin: 0;
    padding: 3px;
}

.footer-social-icons.whatsapp-icon {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

    .footer-social-icons.whatsapp-icon:hover {
        background-color: #128C7E;
        border-color: #128C7E;
        color: white;
    }

.footer-social-icons.youtube-icon {
    background-color: #FF0000;
    color: white;
    border-color: #FF0000;
}

    .footer-social-icons.youtube-icon:hover {
        background-color: #CC0000;
        border-color: #CC0000;
        color: white;
    }

.footer-social-icons.twitter-icon {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

    .footer-social-icons.twitter-icon:hover {
        background-color: #333333;
        border-color: #333333;
        color: white;
    }

.footer-social-icons.facebook-icon {
    background-color: #1877F2;
    color: white;
    border-color: #1877F2;
}

    .footer-social-icons.facebook-icon:hover {
        background-color: #166FE5;
        border-color: #166FE5;
        color: white;
    }

.footer-social-icons.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    border-color: transparent;
}

    .footer-social-icons.instagram-icon:hover {
        background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        filter: brightness(1.1);
        color: white;
    }

.footer-social-icons,
.footer-social-icons:hover,
.footer-social-icons:focus,
.footer-social-icons:active {
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-social-icons {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

.footer_headings,
.footer_link_headings {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    margin: 11px 0;
    position: relative;
    background-color: #135D49
}

    .footer_headings::before {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 10%;
        height: 2px;
        background-color: #ffffff;
        border-radius: 10px;
    }

    .footer_link_headings::before {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 3%;
        height: 2px;
        background-color: #ffffff;
        border-radius: 10px;
    }

.top_social {
    display: none;
    justify-content: center;
    align-items: center;
}

.footer_qr img {
    border-radius: 5px;
    pointer-events: none;
    width: 51px;
}

.footer-address h6 {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.footer-address p {
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 0;
    line-height: 20px;
}

.footer_polices ul {
    padding: 0;
    line-height: 10px;
}

    .footer_polices ul li {
        list-style: none;
        margin-bottom: 4px;
    }

        .footer_polices ul li a {
            font-size: 11px;
            color: #ffffff;
            /*            text-decoration: none;*/
            background-color: #135D49;
            font-weight: 500;
            position: relative;
            transition: .2s linear;
        }

            .footer_polices ul li a::before {
                content: '';
                position: absolute;
                bottom: -4px;
                height: 2px;
                width: 0;
                background: #fff;
                border-radius: 15px;
                transition: .3s linear;
            }

            .footer_polices ul li a:hover::before {
                width: 100%;
            }

.sidebar_sidebar {
    position: fixed;
    top: 35%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 2px 0 0 2px;
    gap: 5px;
    box-shadow: rgba(0, 16, 36, 0.08) 0px 2px 15px 0px;
    background: #ffffff;
    padding: 5px;
    z-index: 1000;
}



.quick_links_btn {
    font-size: 14px;
    color: #ffffff;
    /*    text-decoration: none;*/
    font-weight: 500;
}

.footer_updated {
    margin-top: 10px;
}

    .footer_updated p {
        color: #ffffff;
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 0px;
    }

        .footer_updated p span, .footer_updated p time {
            background-color: #135D49;
        }

.footer_d_flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.copy_right {
    border-top: 1px solid #f5f5f5;
    font-size: 15px;
}

.top_navigation_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper .logo-image {
    margin-right: 10px;
    position: relative;
    transition: all .3s linear;
}

    .logo-wrapper .logo-image::after {
        content: '';
        position: absolute;
        border-right: 1px solid #e0e0e0;
        height: 60px;
        top: 7px;
        right: -8px;
        transition: all .3s linear;
    }

    /*.nav_top_nav.fixed .footer-social-icons {
    width: 28px;
    height: 28px;
    font-size: 17px;
}
*/
    .logo-wrapper .logo-image img {
        max-height: 78px;
        transition: all .3s linear;
    }

.logo-wrapper .logo-text {
    padding-left: 5px;
    margin-top: 12px;
}

    .logo-wrapper .logo-text p {
        transition: all .3s linear;
    }


        .logo-wrapper .logo-text p:first-child {
            font-weight: 600;
            font-stretch: normal;
            font-style: normal;
            letter-spacing: normal;
            color: #060606;
            margin-bottom: 0;
            font-size: 18px;
        }

        .logo-wrapper .logo-text p:nth-child(2) {
            font-weight: 700;
            color: var(--bs-primary);
            line-height: 25px;
            font-size: 20px;
            margin-bottom: 0;
        }

        .logo-wrapper .logo-text p:nth-child(3) {
            line-height: 1.4rem;
            color: #000;
            font-size: 14px;
            margin-bottom: 0;
            font-weight: 400;
        }

.nav_top_nav .border-btm {
    border-bottom: 2px solid var(--bs-primary);
}

.top_nevigation_bar {
    position: relative;
    width: 100%;
    background: #fffae0 !important;
}


.header_logo img {
    max-height: 80px;
    transition: all .3s linear;
}

.header_logo .g20_logo {
    height: 55px !important;
    transition: all .3s linear;
}

.nav_top_nav {
    width: 100%;
    display: block;
    position: relative;
    transition: all .3s linear;
    background: #fff;
}

    .nav_top_nav .header_logo .right_header_logo {
        gap: 10px;
    }

    .nav_top_nav.fixed {
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

/*  .nav_top_nav.fixed .logo-image::after {
            top: 0px;
            height: 50px;
        }

        .nav_top_nav.fixed .header_logo img {
            max-height: 65px;
        }

        .nav_top_nav.fixed .logo-image img {
            max-height: 44px;
        }

        .nav_top_nav.fixed .logo-text h1 {
            font-size: 12px;
        }

        .nav_top_nav.fixed .logo-text h2 {
            font-size: 18px;
            line-height: 19px;
        }

        .nav_top_nav.fixed .logo-text h3 {
            font-size: 13px;
        }*/



.top_header_facebook {
    width: 20px;
    height: 20px;
    background: #3b5998;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 4px;
    font-size: 10px;
}

.top_header_twitter {
    width: 20px;
    height: 20px;
    background: #14171A;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 10px;
}

.breadcrumb_page {
    background: url(/public/images/breadcrumb_new.png);
    border-bottom: 1px solid #ffffff;
    height: 61px;
}

    .breadcrumb_page .breadcrumb_img {
        /*background: url('/public/images/about.png') right 0 no-repeat;*/
        height: 60px;
        margin-right: 0;
    }

    .breadcrumb_page .bread_crumb_top {
        padding-top: 12px;
    }

        .breadcrumb_page .bread_crumb_top .bread_heading {
            font-size: 25px !important;
            color: #fff;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            background-color: #006A4E;
        }


.right_side_minister .custom_profile_row .state_minister {
    background: #ffff;
    height: 145px;
    padding: 12px !important;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.175);
}

    .right_side_minister .custom_profile_row .state_minister .piyush_img {
        border-radius: 3px;
        margin-bottom: 0 !important;
    }

    .right_side_minister .custom_profile_row .state_minister .sec_img {
        height: auto;
        border-radius: 3px;
    }

    .right_side_minister .custom_profile_row .state_minister:nth-child(2),
    .right_side_minister .custom_profile_row .state_minister:nth-child(3) {
        margin-top: 8px;
        background: #ffff;
        height: 115px;
        padding: 12px !important;
        border-radius: 3px;
        border: 1px solid rgba(0, 0, 0, 0.175);
    }

    .right_side_minister .custom_profile_row .state_minister .minister_name {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 0;
        color: #498514;
    }

    .right_side_minister .custom_profile_row .state_minister .homble_minister {
        font-size: 13px;
    }

    .right_side_minister .custom_profile_row .state_minister .homble_state {
        font-size: 11px;
    }

    .right_side_minister .custom_profile_row .state_minister .state_name,
    .right_side_minister .custom_profile_row .state_minister .state_name {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 0;
        color: #000000;
    }

/*Youtube Styling Start*/
.video-card-top {
    border-radius: 5px;
    border-top: 10px solid #f20e0e;
    box-shadow: 16px 13px 42px -17px rgba(0, 0, 0, 0.4);
    min-height: 310px;
    width: 100%;
}
/*Youtube Styling End*/

/*Facebook Styling Start*/

.facebook_box {
    height: 315px;
}
/*Facebook Styling End*/

.home_gallery_section {
    min-height: 309px;
}

    .home_gallery_section .gallery img {
        object-fit: cover;
        border-radius: 3px;
        height: 221px;
    }

    .home_gallery_section .gallery_thumbs_img {
        gap: 10px;
    }

.inner_preview_img .thumbnail_prv_img {
    width: 100%;
    height: 120px !important;
}

.inner_preview_img:nth-child(2) .thumbnail_prv_img {
    padding: 0px !important;
}

.cus_in_row {
    padding: 0px !important;
    margin: 5px 0 0 0 !important;
}


.home_gallery_section .gallery_thumbs_img .preview img {
    width: 140px;
    height: 60px;
    object-fit: cover;
}

#videoimg-slider {
    min-height: 424px;
}

.videogallery {
    height: 250px;
    width: 100%;
    border-radius: 5px
}

.video_swiper_container .video_swiper_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

    .video_swiper_container .video_swiper_wrapper .video_swiper_slide_active {
        width: 100%;
    }

.video_swiper_wrapper .video_gallery_title {
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    margin-left: 10px;
}

.video-playbox i {
    font-size: 30px;
    color: #ffc107;
}

#myVideo {
    width: 100%;
    height: 250px;
}

.video-playbox {
    margin-top: 5px;
}

.video-all-btn {
    display: block;
    text-align: center;
    border-top: 1px solid #e3e3e3;
    padding-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #498514;
}

.header_logo ul {
    gap: 10px;
}


.first_video_btn {
    display: none;
}

.about_minister_title {
    display: inline-block;
    background: var(--bs-primary);
    padding: 5px 5px;
    color: #ffffff;
    border-radius: 2px;
    font-size: 18px;
}

.about_minister_title,
.about_tiles_title {
    font-weight: 600;
}

/*------------------Search Section styling start--------------------------*/

.search-wrapper {
    font-weight: 500;
    background: var(--bs-primary);
    font-size: 14px;
    text-align: left;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    cursor: pointer;
}


.search-wrapper2 {
    height: 100%;
    display: flex;
    align-items: end;
}

.search_div {
    position: relative;
}

    .search_div input {
        width: 130px;
        padding: 3px;
        padding-right: 2.7rem;
        border: 1px solid var(--bs-primary);
        border-radius: 8px;
    }

    .search_div .search-button {
        position: absolute;
        right: 4px;
    }

.search-clear-button {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

#DivBannerSlider, #divPageContent {
    transition: .3s linear;
}

    #DivBannerSlider.active,
    #divPageContent.active {
        margin-top: 50px;
        transition: .3s linear;
    }

.main_search {
    background: var(--bs-primary);
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 99;
}



.right_menu ul li {
    list-style: none;
}

.side_double_arrow {
    margin-right: 10px;
}

.right_menu ul {
    padding: 0;
}

    .right_menu ul li a {
        display: block;
        background: #f0f0f0;
        border-bottom: 1px solid rgba(0, 0, 0, .125);
        padding: 5px 20px;
        /*        text-decoration: none;*/
        color: #000;
        font-weight: 500;
        font-size: 13px;
    }

    .right_menu ul li:hover a {
        color: #498514;
    }

.right_menu p {
    margin-bottom: 0px;
    background: #498514;
    font-weight: 500;
    padding: 5px 20px;
    color: #fff;
    border-radius: 5px 5px 0 0;
    font-size: 17px;
}

.right_menu ul li .right_caret {
    float: right;
    font-size: 16px;
    transform: rotate(180deg);
    margin-top: 5px;
    transition: 0.3s linear;
}


.sub_menu {
    display: none;
}

span.inner_down_arrow.active i {
    transform: rotate(0deg);
}

/*.right_menu ul li:nth-child(2):hover .sub_menu,
.right_menu ul li:nth-child(2):hover .fa-caret-down,
.right_menu ul li:nth-child(4):hover .sub_menu,
.right_menu ul li:nth-child(4):hover .caret_down_arrow {
    display: block;
    transform: rotate(0deg);
}*/

.right_menu ul li .sub_menu li a {
    padding: 8px 35px;
    color: #000;
    border-bottom: none;
}

    .right_menu ul li .sub_menu li a:hover {
        color: #498514;
    }

.table-bordered thead tr {
    background-color: var(--bs-primary);
    color: #ffffff;
}

.table-bordered thead th {
    border-bottom: none;
    padding: 5px 4px;
    vertical-align: middle;
    font-size: 14px;
}

.table-bordered tbody tr td {
    padding: 5px 4px;
    vertical-align: top;
    font-size: 14px;
    color: #000;
}

    .table-bordered tbody tr td a {
        color: #0a66c2;
        /*        text-decoration: none;*/
        font-size: 13px;
    }

/* .table-bordered tbody tr td a img {
            height: 15px;
            margin-top: -4px;
        }*/

.filter_btn {
    margin-top: 32px;
}

    .filter_btn button {
        display: inline-block;
        padding: 5px 10px;
        background: var(--bs-primary);
        color: #fff;
        border: none;
        outline: auto;
        font-size: 14px;
        border-radius: 3px;
    }

.form-control:focus {
    box-shadow: none !important;
    border-color: var(--bs-primary);
}

::placeholder {
    font-size: 14px;
}

.profile_title {
    font-size: 18px;
    text-align: center;
}

.minister_img {
    position: relative;
    margin: 0 auto;
}

    .minister_img img {
        height: 200px;
        border-radius: 5px;
        border: 2px solid #f5f5f5;
    }

.minister_name {
    text-align: center;
}

    .minister_name h5 {
        font-size: 20px;
        margin-top: 5px;
        margin-bottom: 0;
        font-weight: 600;
        color: #000000;
    }

    .minister_name span {
        font-size: 15px;
        color: #000000;
        font-weight: 400;
    }

.table-bordered tbody tr td a {
    color: #000;
    text-decoration: underline;
    font-size: 12px;
    transition: 0.3s linear;
}

    .table-bordered tbody tr td a:hover {
        color: var(--bs-primary);
    }

img[src="/public/images/ext-link-icon.gif"],
img[src="/public/images//ext-link-icon.gif"] {
    filter: brightness(0.5);
}


.table.table-bordered {
    text-align: left;
}

.screen_reader .screen_reader_title {
    font-size: 17px;
    font-weight: 600;
}

.screen_reader .screen_reader_para {
    font-size: 13px;
    font-weight: 400;
}

.screen_reader .screen_vision_title {
    font-size: 17px;
    font-weight: 600;
}

.contact_map {
    width: 100%;
    height: 430px;
    border: none;
}

.contact-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    justify-content: space-between;
}

    .contact-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }


.contact-item {
    position: relative;
    column-gap: 16px;
    align-items: center;
}

    .contact-item .icon {
        height: 40px;
        width: 40px;
        background: #eeeff0;
        border-radius: 50%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
    }

.con_env {
    margin-right: 0px;
}

.contact_email {
    padding-top: 3px;
    margin-bottom: 0px;
}

.contact_title {
    font-size: 16px;
    font-weight: 500;
    padding-top: 10px;
}

.contact_add {
    font-weight: 500;
    font-size: 13px;
}

.img_box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    object-fit: cover;
}

.footer_card_box {
    background: #e9edf0;
    padding: 5px 0px;
}

.terms_inner_page .terms_title,
.accessibility_inner_page .accessibility_title,
.disclaimer_inner_page .disclaimer_title,
.copyright_inner_page .copyright_title,
.hyperlink_inner_page .hyperlink_title,
.help_inner_page .help_title {
    font-size: 17px;
    font-weight: 500;
}

.hyperlink_inner_page .hyperlink_list {
    margin-bottom: 5px;
}

    .terms_inner_page .terms_list li,
    .accessibility_inner_page .accessibility_list li,
    .disclaimer_inner_page .disclaimer_list li,
    .copyright_inner_page .copyright_list li,
    .hyperlink_inner_page .hyperlink_list li,
    .help_inner_page .help_list li {
        list-style: none;
        position: relative;
        padding: 5px 0 5px 20px;
        font-size: 13px;
        font-weight: 400;
    }

        .terms_inner_page .terms_list li::before,
        .accessibility_inner_page .accessibility_list li::before,
        .disclaimer_inner_page .disclaimer_list li::before,
        .copyright_inner_page .copyright_list li::before,
        .hyperlink_inner_page .hyperlink_list li::before,
        .help_inner_page .help_list li::before {
            content: "\f101";
            position: absolute;
            top: 4px;
            left: 0;
            font-family: FontAwesome;
            font-size: 14px;
        }

/*#divHeaderMenu {
        position: sticky;
        top: 0px;
        z-index: 999;
        width: 100%;
    }*/



.has-sub > ul .has-sub:nth-child(9) .firstlevel-menu {
    position: absolute;
    bottom: 0px;
    top: auto;
}

.has-sub > ul .has-sub:last-child .firstlevel-menu {
    position: absolute;
    bottom: -10px;
    top: auto;
}

.text-dark-900 {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    transition: .3s linear;
}

    .text-dark-900:hover {
        color: var(--bs-primary);
    }

.text-xs {
    font-size: 12px;
    font-weight: 700;
}

.text-gray-800 {
    font-size: 20px;
    font-weight: 500;
}

.text-muted {
    font-size: 14px;
    color: #000 !important;
}

.card_shadow {
    box-shadow: none !important;
}

.tilesPrevBtns,
.tilesNextBtns {
    float: right;
    background-color: transparent;
    color: #fff;
    display: inline-block;
    padding: 2px 7px;
    margin-left: 2px;
    font-size: 18px;
    cursor: pointer;
    border: none
}

.tilesPauseBtn,
.tilesPlayBtn {
    font-size: 18px;
    color: #fff;
    margin-left: 2px;
    cursor: pointer;
    background-color: transparent;
    border: none
}


.ethanol_blending_hei {
    min-height: 121px !important;
}

.diversion_tile_hei {
    min-height: 141px !important;
}

.sugar_tiles_hei,
.export_sugar_hig {
    min-height: 119px !important;
}

.food_subsidy_hei {
    min-height: 144px !important;
}

.tiles_box_heading {
    color: var(--bs-primary);
    background: var(--bs-primary);
    display: inline-block;
    padding: 5px 5px;
    color: #ffffff;
    border-radius: 2px;
    font-size: 18px;
    margin-bottom: 10%;
}

.custom_border-left-primary {
    border-color: #fec007;
}

#DivHomeDecription {
    position: relative;
    background: #fffae0;
    height: 100%;
}


/*.tiles_section {
    margin-top: 0px;
}*/

.tiles_section item {
    padding: 9px;
}


.cus-tile-btn {
    position: absolute;
    top: 0;
    right: 0;
}
/*minsiter section styling start*/
.newProfilesInfo {
    border: 1px solid #fcbf09;
    padding: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 100%;
    min-height: 350px;
    background: #fff;
}

.newProfInfoTwo.second_state_minister {
    margin-bottom: 0;
}

.custom_col_padding {
    padding-left: 0px;
}

.minister_tiles_section {
    background: #fffae0;
    margin-top: 35px;
}

.right_side {
    /*background: #fffae0;*/
    padding: 10px 0 10px;
}

.newProfilesInfoPhoto {
    max-width: 212px;
    margin-bottom: 10px;
}

    .newProfilesInfoPhoto .piyush_goyal_img {
        width: 190px;
        border: 1px solid #e5e5e5;
        border-radius: 5px;
    }

.newProfilesInfo .minster_name {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 15px;
    margin: 0;
}

.newProfilesInfo .heading {
    text-align: center;
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.newProfInfoTwo .state_minister_img {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    max-width: 103px !important;
}

.newProfInfoTwo .heading {
    text-align: left;
    font-size: 14px;
    margin: 0;
    font-weight: 700;
}

.newProfilesInfo .greyFont {
    margin-bottom: 0;
    font-size: 15px !important;
    font-weight: 400;
    line-height: 16px;
}

.newProfilesInfoLinks {
    text-align: center;
    margin-top: 5px;
    display: block;
    width: 100%;
}

.profileLink:before,
.speechLink:before {
    background: url('https://mea.gov.in/images/profile-icons.png') no-repeat;
    content: " ";
    position: absolute;
    left: 0;
    top: 0px;
    width: 15px;
    height: 15px;
    transition: all 0.5s ease;
    filter: sepia(1);
}

.profileLink:hover:before {
    background-position: -19px -20px;
}

.profileLink::before {
    background-position: -19px -1px;
}

.speechLink:hover:before {
    background-position: 0 -20px;
}

.redLink:hover,
.marqueeView a:hover {
    color: #742907;
    text-decoration: none;
}

.profileLink,
.speechLink {
    padding-left: 15px;
    position: relative;
    color: #0B5632;
    /*contrast issue sachin maurya*/
    font-size: 13px !important;
}

.newProfInfoTwo {
    background: #fff;
    padding: 12px;
    border: 1px solid #fcbf09;
}

.newProfInfoTwo {
    display: flex;
    align-items: start;
    margin-bottom: 10px;
}

.second_state_minsiter {
    margin-bottom: 0;
}

.newProfInfoTwoPhoto {
    margin-right: 50px;
    width: 80px;
    flex-shrink: 0;
    /* margin-top: 15px; */
}

/*.newProfInfoTwoInfo {
    margin-top: 17px;
}*/

.social-links-icon li,
.state-minister-social-icons {
    border: 1px solid #e5e5e5;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    font-size: 16px !important;
    align-items: center;
    margin: 0 3px;
    text-decoration: none;
    color: #0a0a0a;
    border-radius: 2px;
    transition: .3s linear;
}

.state-minister-social-icons {
    border: none;
}

.social-links-icon li:nth-child(1) a {
    /*background-color: #3b5998;*/
    text-decoration: none;
    color: #3b5998;
}

.social-links-icon li:nth-child(2) a {
    /*background-color: #14171A;*/
    text-decoration: none;
    color: #14171A;
}

.social-links-icon li:nth-child(3) a {
    /*background: #c32aa3;*/
    text-decoration: none;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newProfInfoTwoInfo p.greyFont {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 18px;
}

.custom-format p {
    margin-bottom: 0px;
}

.card_bg_clr {
    background: #fffae0;
}

.card .flex_box a {
    margin-left: 10px;
    margin-top: -5px;
    font-size: 15px !important;
    color: var(--bs-primary);
    font-weight: 500;
    transition: .3s linear;
}



.right_menu {
    margin-top: 17px;
}

    .right_menu ul li {
        list-style: none;
    }

    .right_menu ul {
        padding: 0;
    }

        .right_menu ul li a {
            display: block;
            background: #f0f0f0;
            border-bottom: 1px solid rgba(0, 0, 0, .125);
            padding: 8px 20px;
            /*            text-decoration: none;*/
            color: #000;
            font-weight: 500;
            font-size: 14px;
        }

        .right_menu ul li:hover a {
            color: #6b3d1b;
        }

    .right_menu p {
        margin-bottom: 0px;
        background: var(--bs-primary);
        font-weight: 500;
        padding: 8px 20px;
        color: #fff;
        border-radius: 5px 5px 0 0;
        font-size: 20px;
    }

    .right_menu .right_caret_down {
        float: right;
        font-size: 20px;
    }

.double_arrow_icon {
    font-size: 12px !important;
    color: #6b3d1b;
}

.updated_date {
    margin-left: 22px;
}

.date_icons .icons {
    margin-left: 24px;
}

    .date_icons .icons a:nth-child(1) {
        text-decoration: none;
        color: #6b3d1b;
        font-weight: 500;
        font-size: 14px;
    }

    .date_icons .icons a:nth-child(2) {
        text-decoration: none;
        color: #cba01b;
        font-weight: 500;
        font-size: 13px;
    }

    .date_icons .icons i:nth-child(1) {
        color: #6b3d1b;
        font-size: 13px;
        margin-right: 5px;
        cursor: pointer;
    }



    .date_icons .icons i.fa- {
        color: #cba01b;
        font-size: 14px;
        cursor: pointer;
    }

.main_heading {
    font-size: 21px;
    color: var(--bs-primary) !important;
}

.heading {
    font-size: 18px;
    color: var(--bs-primary) !important;
}

.sub_heading {
    font-size: 16px;
    color: var(--bs-primary) !important;
}

.table.table-bordered td p {
    /* text-align: center;*/
    text-align: left;
}

.heading_title2 {
    color: var(--bs-primary) !important;
    font-size: 21px;
}

.headings_design {
    color: var(--bs-primary) !important;
}

/*.table_who_section td,
.table_who_section th {
    border: 1px solid transparent !important;
    border-bottom: 1px solid #dee2e6 !important;
}*/

.table_who_section .bold_who {
    font-weight: 500;
    color: var(--bs-primary);
}

.table_who_section .bold_who_name {
    font-weight: 600;
    font-size: 16px;
}


/****************ORG CAHRT STYLING START******************/
/*sachin CSS Changes Start*/
    .minister_box,
    .secretary_box {
        margin: 0 auto;
        text-align: center;
        border: 1px solid #212529;
        padding: 10px;
        border-radius: 5px;
        position: relative;
    }

    .org-chart .minister_box p, .org-chart .secretary_box p, .org-chart .state_minster_box p, .org-chart .inner_sec_box p, .org-chart .minister_box h2 {
        margin-bottom: 0;
        line-height: 1.15rem;
    }

        .org-chart .minister_box p:last-child, .org-chart .secretary_box p:last-child, .org-chart .state_minster_box p:last-child, .org-chart .inner_sec_box p:last-child {
            font-weight: 600;
        }

        .org-chart .minister_box p:first-child, .org-chart .secretary_box p:first-child, .org-chart .state_minster_box p:first-child, .org-chart .inner_sec_box p:first-child {
            font-weight: 500;
        }

    .minister_box::before {
        content: '';
        position: absolute;
        top: 75px;
        height: 158px;
        width: 2px;
        background-color: #212529;
    }

    .secretary_box::before {
        content: '';
        position: absolute;
        top: 75px;
        height: 49px;
        width: 2px;
        background-color: #212529;
    }



    .secretary_box {
        margin-top: 30px;
    }

    .state_minster_box {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

        .state_minster_box .right,
        .state_minster_box .left {
            border: 1px solid #212529;
            /* border-radius: 5px; */
            padding: 10px;
            position: relative;
        }

        .state_minster_box .left {
            border-left: none;
            height: 96px;
        }

    .right {
        border-right: none !important;
    }



    .state_minster_box {
        position: relative;
    }



    .container_box {
        display: flex;
        gap: 10px;
        margin-top: 50px;
    }

        .container_box .inner_sec_box {
            flex: 1 1 100px;
            border: 1px solid #212529;
            border-radius: 5px;
            padding: 5px;
            padding-top: 10px;
        }



            .container_box .inner_sec_box .minster_bullet {
                margin-bottom: 0;
            }

                .container_box .inner_sec_box .minster_bullet li {
                    line-height: 22px;
                    margin-bottom: 0;
                    list-style: none;
                    padding-left: 20px;
                    position: relative;
                }

                    .container_box .inner_sec_box .minster_bullet li::before {
                        content: '\f111';
                        position: absolute;
                        font-family: fontAwesome;
                        left: 5px;
                        font-size: 4px;
                    }

    .org_border {
        height: 2px;
        background-color: #212529;
        width: 90%;
        margin: 0 auto;
        position: relative;
    }

        .org_border::after,
        .org_border::before {
            content: '';
            position: absolute;
            top: 2px;
            background-color: #212529;
            width: 2px;
            height: 52px;
        }

        .org_border::after {
            right: 0;
        }

        .org_border::before {
            left: 0;
        }

.position-title {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 0.25rem;
}

.department-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.person-name {
    font-weight: 700;
    margin-bottom: 0;
}

    /*.border_one {
        position: absolute;
        top: 0;
        left: 19%;
        background: #212529;
        width: 2px;
        height: 50px;
    }*/

    .border_two {
        position: absolute;
        top: 2px;
        left: 10%;
        background: #212529;
        width: 2px;
        height: 50px;
    }


    .border_third {
        position: absolute;
        top: 2px;
        left: 21%;
        background: #212529;
        width: 2px;
        height: 50px;
    }


    .border_four {
        content: '';
        position: absolute;
        top: 2px;
        left: 32.4%;
        background: #212529;
        width: 2px;
        height: 50px;
    }

    .border_five {
        position: absolute;
        top: 2px;
        left: 44%;
        background: #212529;
        width: 2px;
        height: 50px;
    }

    .border_six {
        position: absolute;
        top: 2px;
        left: 55%;
        background: #212529;
        width: 2px;
        height: 50px;
    }

    .border_seven {
        position: absolute;
        top: 2px;
        left: 67%;
        background: #212529;
        width: 2px;
        height: 50px;
    }

    /*.border_eight {
        position: absolute;
        top: 2px;
        left: 71%;
        background: #212529;
        width: 2px;
        height: 50px;
    }*/

    .border_nine {
        position: absolute;
        top: 2px;
        left: 78%;
        background: #212529;
        width: 2px;
        height: 50px;
    }

/*.border_ten {
    position: absolute;
    top: 2px;
    left: 10%;
    background: #212529;
    width: 2px;
    height: 50px;
}*/

.border_eleven {
    position: absolute;
    top: 2px;
    left: 89%;
    background: #212529;
    width: 2px;
    height: 50px;
}

.breadcrumb_cust ol li a {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background-color: #005742;
    padding: 0 3px;
}

.mobile_view_vid .card {
    min-height: 100%;
}

.mobile_view_pic .card {
    min-height: 100%;
}

.mobie_view_twi .card {
    min-height: 100%;
}

.popup {
    display: none;
    position: absolute;
    padding: 8px;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 10px;
    width: 278px;
    height: 169px;
    line-height: 22px;
}

table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {
    border: 1px solid #dee2e6 !important;
}

.pdf_format {
    margin-bottom: 0px;
    font-size: 13px;
    /*display: block;*/
}

    .pdf_format > span {
        display: unset !important;
    }

.custom_carousel_cont_next {
    left: 40px !important;
}

.custom_carousel_cont_next,
.custom_carousel_cont_prev {
    top: unset !important;
    bottom: -55px;
    opacity: 1;
    width: 32px;
    height: 32px;
    background: var(--bs-primary) !important;
    border-radius: 50%;
}

.carousel_con_prev_icon,
.carousel_con_prev_next {
    width: 1rem !important;
}

.main_layout_video {
    width: 100%;
    height: 340px;
}
/* Global Fuction of List Items */
.main_content_section ul li {
    position: relative;
}

.main_content_section > ul > li::before {
    content: "\f101";
    position: absolute;
    top: 3px;
    font-size: 13px;
    font-family: fontAwesome;
    color: #8f3900;
    font-weight: 500;
}

.main_content_section ul li p {
    margin-left: 26px;
}
/* Global Fuction of List Items */
.btnClickWebSite {
    cursor: pointer;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.btn-green-custom {
    background-color: #126331 !important;
}

.DivFooterCopyRight {
    background-color: #135D49;
}

.text-danger {
    color: #c0392b !important;
}



.blink {
    animation-name: fadeInOut;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blink {
        animation: none;
    }
}
/*SACHIN MAURYA CSS END*/
.pdf-file-details p {
    font-size: 12px;
    line-height: 12px;
}

.w3validator {
    height: 31px;
}

.gallery_box,
.video_box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px;
}

/*  .gallery_box a {
            text-decoration: none;
        } */

.gallery_inner_box a img {
    width: 304px;
    border-radius: 2px;
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dddfeb;
    height: 185px;
    display: inline;
}

video {
    width: 210px;
    border-radius: 2px;
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dddfeb;
    height: 130px;
}

.bdr_btm {
    border-bottom: 1px solid #979797;
}

.search_wrapper_detail h6 a {
    color: #6b3d1b;
    font-size: 18px;
}

    .search_wrapper_detail h6 a:hover {
        text-decoration: none;
    }

.search_wrapper_detail p {
    margin-bottom: 8px;
    color: #6b3d1b;
    font-size: 15px;
    text-align: justify;
}

.search_wrapper_detail {
    margin-bottom: 30px;
}


.sitemap_innerpage .sitemap {
    margin: 0;
    padding: 0;
}

    .sitemap_innerpage .sitemap > li > ul {
        margin-top: 1.5rem;
    }

.sitemap_innerpage ul {
    list-style: none;
}

    .sitemap_innerpage ul li {
        line-height: 1.5rem;
        vertical-align: top;
        position: relative;
    }

        .sitemap_innerpage ul li a {
            /*            text-decoration: none;*/
            color: #000000;
            display: inline-block;
            font-size: 14px;
            font-weight: 500;
        }

.sitemap_innerpage .sitemap_circle_arrow,
.sitemap_innerpage .sitemap_inner_arrow {
    font-size: 13px;
}

.sitemap_scroll {
    height: 600px;
    overflow-y: scroll;
}

.card .flex_box a {
    margin-left: 10px;
    margin-top: -2px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    transition: .3s linear;
}

    .card .flex_box a:hover {
        text-decoration: none;
        color: #195c9f;
    }

.right_menu {
    margin-top: 17px;
}

    .right_menu ul li {
        list-style: none;
    }

    .right_menu ul {
        padding: 0;
    }

        .right_menu ul li a {
            display: block;
            background: #f0f0f0;
            border-bottom: 1px solid rgba(0, 0, 0, .125);
            padding: 8px 20px;
            /*            text-decoration: none;*/
            color: #000;
            font-weight: 500;
            font-size: 14px;
        }

        .right_menu ul li:hover a {
            color: #498514;
        }

    .right_menu p {
        margin-bottom: 0px;
        background: #498514;
        font-weight: 500;
        padding: 8px 20px;
        color: #fff;
        border-radius: 5px 5px 0 0;
        font-size: 20px;
    }

    .right_menu .right_caret_down {
        float: right;
        font-size: 20px;
    }

.double_arrow_icon {
    font-size: 15px;
}

.updated_date {
    margin-left: 22px;
}

.date_icons small {
    font-weight: 500;
    color: #898484;
}

.date_icons .icons a:nth-child(1) {
    text-decoration: none;
    color: #498514;
    font-weight: 500;
    font-size: 14px;
}

.date_icons .icons a:nth-child(2) {
    text-decoration: none;
    color: #cba01b;
    font-weight: 500;
    font-size: 13px;
}

.date_icons .icons i:nth-child(1) {
    color: #498514;
    font-size: 13px;
    margin-right: 5px;
    cursor: pointer;
}

.date_icons .icons i.fa-download {
    color: #cba01b;
    font-size: 14px;
    cursor: pointer;
}

.help-default-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    font-size: .9rem;
    margin-right: .5rem;
    font-weight: 500;
    background-color: #fff;
}

.help-black-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    border: 1px solid #ff0;
    font-size: .9rem;
    margin-right: .5rem;
    font-weight: 500;
    background-color: #000;
    color: #ff0;
}

.help-grey-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    font-size: .9rem;
    margin-right: .5rem;
    font-weight: 500;
    background-color: #545454;
    color: #ff0;
}

.help-font {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    font-size: .9rem;
    margin-right: .5rem;
    font-weight: 500;
}

.custom-format {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    justify-content: center;
}

.fullscreen-modal .modal-header {
    padding: 10px 10px 0px 0px;
    border: none;
}

.fullscreen-modal .modal-body p {
    text-align: left;
    margin-bottom: 6px;
    font-weight: 600
}

.fullscreen-modal .modal-dialog {
    height: 80vh;
    z-index: 1055;
}

.modal-backdrop {
    z-index: 1050;
}



.custom-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.custom-dialog-content {
    background: var(--bs-primary);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
}

    .custom-dialog-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

.custom-dialog-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

    .custom-dialog-actions .btn {
        padding: 10px 25px;
        font-size: 14px;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .custom-dialog-actions .btn-primary {
        background-color: #0099cc !important;
        color: #000;
    }

        .custom-dialog-actions .btn-primary:hover {
            background-color: #0077aa !important;
        }

    .custom-dialog-actions .btn-secondary {
        background-color: #D5D942 !important; /* Yellow */
        color: #003366; /* Dark text for contrast */
    }

        .custom-dialog-actions .btn-secondary:hover {
            background-color: #e6b800 !important;
        }

.dark-mode
.custom-dialog-actions .btn-primary {
    background-color: #0099cc !important;
    color: #D5D942;
}

    .dark-mode .custom-dialog-actions .btn-primary:hover {
        background-color: #0077aa !important;
    }

.dark-mode .custom-dialog-actions .btn-secondary {
    background-color: #d5d942c9 !important;
    color: #003366;
}

    .dark-mode .custom-dialog-actions .btn-secondary:hover {
        background-color: #e6b800 !important;
    }
/*Youtube Modal- Ayush*/
.video-thumbnail {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    .video-thumbnail img {
        width: 100%;
        height: auto;
        display: block;
    }

.play-button {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 30px;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
}

#videoModal.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

#videoModal .modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

#videoModal.modal iframe {
    width: 100%;
    height: 400px;
}

#videoModal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: red;
}

.attachment-info {
    font-size: 0.8rem;
}

.read_less_budget {
    display: none;
}

.history_section {
    display: none;
}

.read_less_history2 {
    display: none;
}

.history_section_hin {
    display: none;
}

.read_less_history_hin2 {
    display: none;
}


.read_less_suagr_dir2 {
    display: none;
}

.read_less_ImportExport {
    display: none;
}

.read_less_ImportExport2 {
    display: none;
}

.read_less_ImportExport3 {
    display: none;
}

.readless_international_coop,
.readless_international_coop2,
.readless_international_coop3,
.readless_international_coop4 {
    display: none;
}

.read_less_account {
    display: none;
}

.read_less_nitiaayog {
    display: none;
}

.readless_edible {
    display: none;
}

.readless_edible {
    display: none;
}


.readless_edible {
    display: none;
}


.read_less_Edibleoil,
.read_less_suagr_dir2 {
    display: none;
}

.read_less_welfare {
    display: none;
}

.read_less {
    display: none;
}

.read_less2 {
    display: none;
}

.read_less3 {
    display: none;
}

.read_less4 {
    display: none;
}

.read_less6 {
    display: none;
}

.social_media_cardBody {
    height: 400px;
    border-radius: 0 0 5px 5px;
    overflow-y: scroll;
    padding: 7px !important;
}

    .social_media_cardBody iframe {
        height: 370px;
    }

.social_insta {
    background: #198754;
    margin-bottom: 0;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

    .social_insta:hover {
        color: #ffffff;
        text-decoration: none;
    }

.fa-whatsapp-custom {
    color: #25d366;
    font-size: 100px !important;
}

.acts_table td p {
    text-align: left !important;
}

.acts_table th p {
    text-align: left !important;
}

.acts_table .act_and_rules_table tbody tr td {
    padding: 0px !important;
}

.acts_table .act_and_rules_table td {
    padding: 0px !important;
}

.act_and_rules,
.act_and_rules_table,
.act_and_rules_table p {
    margin-bottom: 0;
}

    .act_and_rules tr > td {
        border: none;
        border-bottom: 1px solid #dee2e6;
    }

    .act_and_rules:nth-child(6) tr > td {
        border-bottom: 0;
    }

.act_sec:nth-child(3) tr > td {
    border-bottom: 0;
}

.act_third:nth-child(2) tr > td {
    border-bottom: 0;
}

.custom_btn_help {
    color: #fff !important;
    text-decoration: none;
}

/*.help_btn_left {
    margin-left: px;
}*/

.btnClickWebSite {
    cursor: pointer;
}

.fa-rotate-by {
    --fa-rotate-angle: 0deg;
}

.web_info_man .web_info_name {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.web_info_man .web_info_desi {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.con_info .web_con_info {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    position: relative;
    margin-bottom: 20px;
}

.con_env {
    margin-right: 0px;
}

.wim-icon {
    margin: 0;
}


.topbar-wrapper .col.col-lg-auto ul li:last-child {
    border-right: none !important;
}

.bulletText > li::before {
    content: "\f101";
    position: absolute;
    left: 0px !important;
    top: 3px;
    font-size: 13px;
    font-family: "Font Awesome 5 Free";
    color: #8f3900;
    font-weight: 900
}

.bulletText > li a {
    /*    margin-left: 20px;*/
}

.bulletText h4 {
    margin-left: 25px;
    padding-top: 0px !important;
}
/*
.bulletTextDownSection li {
    padding-left: 20px !important;
}*/

body:not(.dark-mode):not(.gray-mode) .login_page {
    background-image: url('/public/img/bg-login.jpg');
}



.login_page #eye-button span {
    min-height: 2.2rem;
    margin-left: -2px;
}

.login_page .form-control {
    border-radius: 5px;
}

.social_media_cardBody {
    height: 400px;
    border-radius: 0 0 5px 5px;
    overflow-y: scroll;
    padding: 7px !important;
}

    .social_media_cardBody iframe {
        pointer-events: none;
        height: 370px;
    }

a.card.social_media_cardBody {
    text-decoration: none;
}

.social_media_cardBody-facebook iframe {
    pointer-events: auto
}

.social_insta {
    background: #198754;
    margin-bottom: 0;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

    .social_insta:hover {
        color: #ffffff;
        text-decoration: none;
    }

.fa-whatsapp {
    color: #25d366;
    font-size: 100px;
}

.tdAlbum .gallery {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

.tdAlbum .InnerPhotoGallaryCol {
    padding: 0 1%;
    width: 25%;
    margin-bottom: 2%;
    display: flex;
}

.tdAlbum .nPhotoGallaryInfo {
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

    .tdAlbum .nPhotoGallaryInfo a {
        display: block;
    }


.tdAlbum .nPhotoGallaryPic {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 220px;
    max-height: 220px;
    margin-bottom: 10px;
    outline: none;
    border: 1px solid #ccc;
}

.tdAlbum .InnerPhotoGallaryCol img {
    width: 100%;
    height: 100%;
}

.tdAlbum .nPhotoGallaryPic img {
    min-height: 250px;
}

.tdAlbum .media_gallery_title {
    margin-bottom: 0px;
    font-size: 13px;
    line-height: 15px;
}

#video-wrapper {
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: transparent;
}

    .video-overlay iframe {
        pointer-events: none
    }

.gallery-custom-css .gallery {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

.nPhotoGallaryCol {
    padding: 0 1%;
    width: 33.33333%;
    margin-bottom: 2%;
    display: flex;
}

.gallery-custom-css .nPhotoGallaryInfo {
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

    .gallery-custom-css .nPhotoGallaryInfo > a {
        display: block;
        height: 100%;
    }

.gallery-custom-css .nPhotoGallaryPic {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 250px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    outline: none;
}

.gallery-custom-css .nPhotoGallaryCol img {
    width: 100%;
}

.gallery-custom-css .nPhotoGallaryPic img {
    min-height: 250px;
}

.gallery-custom-css .media_gallery_title {
    margin-bottom: 0px;
    font-size: 13px;
    line-height: 15px;
}

.gallery-custom-css .modal-open {
    overflow: visible !important;
}

.gallery-custom-css .circle_btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ccc;
    border-radius: 50%;
}

.gallery-custom-css .cus_modal_header {
    padding: 5px !important;
}

.gallery-custom-css .cus_modal_footer {
    padding: 0px;
}

.gallery-custom-css .cus_back_btn {
    border-radius: 5px;
}

.gallery-custom-css .custom_video {
    width: 100% !important;
    height: 230PX;
}

.card-big-shadow {
    min-height: 252px;
}

.dir_of_sug {
    min-height: 260px;
}

.dir_of_sug_sec {
    min-height: 252px;
}

.dir_of_sug_third {
    min-height: 450px;
}

.dir_of_sug_forth {
    min-height: 291px;
}

.search-toggle-btn {
    border: none;
    background: transparent;
    color: var(--bs-white);
}

.search-button {
    border: none;
    background: transparent;
    color: var(--bs-primary);
}

.video_slider_btn:focus,
.video_slider_btn_Hindi:focus {
    outline: 3px solid #000;
    outline-offset: 2px;
}

.sr-only-custom {
    background-color: var(--bs-primary);
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

#refreshCaptcha, #refreshCaptchaHindi {
    width: 32px;
    height: 32px;
    border-radius: 5px;
}

    #refreshCaptcha:hover, #refreshCaptchaHindi:hover,
    #refreshCaptcha:focus, #refreshCaptchaHindi:focus {
        color: #fff
    }

.playAudio {
    padding: 3px;
    width: 31px;
    height: 31px;
    border: none;
    border-radius: 5px;
    background-color: var(--bs-primary);
}

.captchcontainer {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.error-message {
    color: #b60000;
    font-size: 0.875rem;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}


/* Main container */
.footer_logobg {
    padding: 20px 0px;
}

/* Logo slider section */
#logo-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

    #logo-slider .swiper {
        width: 100%;
        height: auto;
        padding-bottom: 50px;
    }

    #logo-slider .swiper-slide {
        padding: 0 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #logo-slider .swiper-slide img {
            margin: 0 auto;
            height: 45px;
            max-width: 100%;
            display: block;
        }

        #logo-slider .swiper-slide:nth-child(4) img,
        #logo-slider .swiper-slide:last-child img {
            height: 67px;
        }


.swiper-pause-button {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    left: 49%
}

#logo-slider .swiper-button-next,
#logo-slider .swiper-button-prev,
.swiper-pause-button {
    background: var(--bs-primary) !important;
    border-radius: 2px !important;
    border: none;
    width: 30px !important;
    height: 30px !important;
    margin-top: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    color: #fff !important;
    opacity: 1 !important;
}

    #logo-slider .swiper-button-next::after,
    #logo-slider .swiper-button-prev::after {
        font-size: 12px !important;
        font-weight: bold;
    }

#logo-slider .swiper-button-prev {
    left: 46% !important;
}

#logo-slider .swiper-button-next {
    right: 45.5% !important;
}

/* Hide pagination dots */
#logo-slider .swiper-pagination {
    display: none !important;
}

/* Link inside slide */
#logo-slider .swiper-slide a {
    display: block;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    #logo-slider .swiper-slide a:hover {
        background: rgba(13, 110, 253, 0.1);
    }

#logo-slider .swiper-slide-active a {
    background: rgba(13, 110, 253, 0.15);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    #logo-slider .swiper-button-prev {
        left: 45.3% !important;
    }

    #logo-slider .swiper-button-next {
        right: 44% !important;
    }
}

@media (max-width: 992px) {
    #logo-slider .swiper-button-prev {
        left: 42% !important;
    }

    .swiper-pause-button {
        left: 47.9%;
    }

    #logo-slider .swiper-button-next {
        right: 42% !important;
    }
}

@media (max-width: 767px) {
    #logo-slider {
        padding: 0 40px;
    }

        #logo-slider .swiper-button-prev {
            left: 38% !important;
        }

    .swiper-pause-button {
        left: 46.7%;
    }

    #logo-slider .swiper-button-next {
        right: 38% !important;
    }
}

@media (max-width: 480px) {
    #logo-slider .swiper-button-prev {
        left: 30% !important;
    }

    .swiper-pause-button {
        left: 45%;
    }

    #logo-slider .swiper-button-next {
        right: 27% !important;
    }
}

@media (max-width: 320px) {
    #logo-slider .swiper-button-next {
        right: 25% !important;
    }
}

@media print {
    .footer_logobg {
        padding-top: 80px;
    }
}

.topbar {
    padding: 0px;
}

    .topbar ul li * {
        font-size: 11px !important
    }

.topbar {
    padding: 0px;
}

    .topbar ul li * {
        font-size: 11px !important
    }

/*nitika*/
#languageLabel, #whatsNewHeading {
    color: white !important;
}

#back-to-top {
    color: black !important;
}

#btnReset, #btnsave {
    padding: 5px 8px;
    border-radius: 5px;
    border: none;
}

#btnReset {
    background-color: #5C3ADE;
    color: #fff;
}

#btnsave {
    background-color: var(--bs-primary);
    color: #fff;
}


#customConfirmYes, #customConfirmNo{
    padding:8px 10px;
    border:none;
    border-radius:5px;
}