@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* Fonts */
:root {
    --default-font: "Noto Sans", sans-serif;
    --heading-font: "Noto Sans", sans-serif;
    --nav-font: "Noto Sans", sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #212529;
    --heading-color: #32353a;
    --accent-color: #5d57f4;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

:root {
    --nunito: "Nunito", sans-serif;
    --nunito-sans: "Nunito Sans", sans-serif;
    --caveat: "Caveat", cursive;
    --outfit: "Outfit", sans-serif;
    --recoleta: "Recoleta", sans-serif;
    --satoshi: "Satoshi", sans-serif;
    --kumbh: "Kumbh Sans", sans-serif;
    --template-font: var(--nunito);
    --template-bg: #ffffff;
    --template-color: #667471;
    --white: #ffffff;
    --black: #000000;
    --primary-color: #046a58;
    --secondary-color: #122f2a;
    --tertiary-color: #046a58;
    --quaternary-color: #00715d;
    --quinary-color: #061408;
    --septenary-color: #0c141f;
    --senary-color: #d9d9d9;
    --hover-color: #6b5103;
    --transition: all 0.5s ease;
    --shadow: 0px 10px 25px 0px rgba(37, 42, 52, 0.08);
    --shadow-secondary: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    --shadow-tertiary: 0px 4px 8px 0px rgba(0, 0, 0, 0.07);
    --primary-six: #479F10;
    --primary-six-title: #0B3D19;
    --primary-six-light: #0B3D19;
    --primary-seven-heading: #0E253A;
    --primary-seven-text: #4B5563;
    --primary-seven-body: #fcf8ed;
    --primary-eight: #ED5A2F;
}



.light-background {
    --background-color: #f4f4f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    display: flex;
    flex-direction: column;
    height: 100%;
}

html {
    height: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.banner-section {
    width: 100%;
    height: 700px;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0a274b;
    z-index: 0;
    opacity: 0.6;
}

.banner-section .info {
    position: relative;
    inset: 0;
    z-index: 3;
    padding: 140px 0 60px 0;
}

    .banner-section .info h2 {
        padding-bottom: 30px;
        font-size: 56px;
        font-weight: 700;
        color: #ffffff;
        position: relative;
    }

    .banner-section .info p {
        color: #fff;
        font-size: 18px;
    }

    .banner-section .info .btn-get-started {
        color: var(--contrast-color);
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid #feb900;
    }

.banner-section .hero-banner {
    inset: 0;
    position: absolute;
    overflow: hidden;
}


.logo img {
    width: 185px;
    transition: all 0.2s ease-in-out;
}

header#header {
    padding: 8px 0;
    border-bottom: 1px solid #ffffff2e;
    transition: all 0.3s ease-in-out;
    background: #0088b2;
    z-index: 999;
}

.translate-box {
    width: 36px;
    height: 36px;
    color: #ffffff;
    margin-left: auto;
    position: relative;
}

.navbar h1 {
    font-size: 20px;
    padding-right: 35px;
    margin-bottom: 0;
    color: #ffffff;
}

.navbar {
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeOut {
    animation-name: fadeOut;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.typeJsWrapper .typeJsText {
    text-align: center;
    font-size: 30px;
    display: inline-block;
    padding: 0;
    border-right: 1px solid #ffffff;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.typeJsWrapper {
    text-align: center;
}

.banner-img {
    position: relative;
}

.banner-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 999;
}

.read_more_1 {
    border: 1px solid #fff;
    border-radius: 50px;
    text-transform: capitalize;
    letter-spacing: .1em;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    background-color: transparent;
    color: #fff;
    font-size: 18px;
    padding: 12px 20px 12px 20px;
    transition: .8s ease;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.banner-text p {
    font-size: 20px;
    letter-spacing: 0.5px;
}

.read_more_1:hover {
    border: solid 1px #0088b2;
    color: #fff;
}

.read_more_1 span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: #0088b2;
    transform: translateY(150%);
    border-radius: 50%;
    transition: 1s;
    z-index: -1
}


.read_more_1:hover span {
    transform: translateY(0) scale(3.15)
}

.read_more_1 span:first-child {
    left: calc((1 - 1) * 25%);
    transition-delay: calc((1 - 1) * 0.1s)
}

.read_more_1 span:nth-child(2) {
    left: calc((2 - 1) * 25%);
    transition-delay: calc((2 - 1) * 0.1s)
}

.read_more_1 span:nth-child(3) {
    left: calc((3 - 1) * 25%);
    transition-delay: calc((3 - 1) * 0.1s)
}

.read_more_1 span:nth-child(4) {
    left: calc((4 - 1) * 25%);
    transition-delay: calc((4 - 1) * 0.1s)
}

.read_more_1 span:nth-child(5) {
    left: calc((5 - 1) * 25%);
    transition-delay: calc((5 - 1) * 0.1s)
}

.banner-text h1 {
    font-size: 45px;
    font-weight: bolder;
    color: #52b9df;
    margin-bottom: 15px;
}

.translate-box svg {
    cursor: pointer;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.waves-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.page_footer {
    background-color: #ffffff;
    width: 100%;
    padding: 10px 0;
}

.footer-left p {
    margin: 10px 0;
    color: #0088b5;
}

.footer-right a {
    margin: 10px 0;
    float: right;
}

.page-footer a {
    color: #018aad;
}

.search-section {
    background-color: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid #0088b2;
    margin-top: 20px;
}

.search-box {
    margin-bottom: 20px;
}

.search-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

.badge-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #00bcd4;
    color: #fff;
    text-align: center;
    line-height: 24px;
    display: inline-block;
    font-size: 12px;
    margin-right: 6px;
}

.traker-section {
    padding-top: 30px;
}

.input-group .form-control,
.input-group .form-select {
    font-size: 14px;
    border-radius: 0.375rem !important;
    margin: 0 8px;
}

.input-group button {
    background: #0188b2;
    border-color: #0588b3;
    border-radius: 5px !important;
    margin-left: 5px !important;
}

.captcha-input {
    border: 2px solid #000;
    border-radius: 6px;
    padding: 6px 10px;
}

#resultSection {
    display: none;
}

    #resultSection table {
        background-color: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    }

    #resultSection th {
        background-color: #f1f3f5;
        color: #333;
        font-weight: 600;
        font-size: 14px;
    }

    #resultSection td {
        vertical-align: middle;
        font-size: 14px;
        color: #444;
    }

    #resultSection tr:not(:last-child) {
        border-bottom: 1px solid #e6e6e6;
    }

    #resultSection .table thead th {
        border-bottom: 2px solid #dee2e6;
    }

    #resultSection .btn-sm {
        font-size: 13px;
        padding: 4px 8px;
    }

main {
    flex: 1;
}


.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 6px;
    padding: 6px 8px;
    background: #e7e7e7;
    border-radius: 8px;
    width: 48%;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.red {
    background: red;
}

.green {
    background: green;
}

.yellow {
    background: yellow;
}

.blue {
    background: dodgerblue;
}

.map-container {
    position: sticky;
    top: 160px;
}

button.btn.btn-outline-primary.btn-sm.feedback-btn:hover {
    background: #0385b5;
}

table.table.table-hover.table-light.thead_label td {
    font-size: 15px;
    color: #222222;
}


.chat-box {
    background-color: #8fcce3;
    color: #222222;
    padding: 0.8rem 1rem;
    border-radius: 15px 15px 0px 15px;
    margin-bottom: 1rem;
    max-width: max-content;
}

    .chat-box .user {
        font-weight: 600;
        margin-bottom: 0.2rem;
    }

    .chat-box .time {
        font-size: 12px;
        margin-top: 0.3rem;
        color: #000000;
    }

.feedback-box h3,
.conversation h3 {
    font-size: 21px;
    color: #0385b5;
    padding-bottom: 5px;
    border-bottom: 1px solid #0385b5;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
}

.feedback-box td {
    margin-bottom: 8px;
    font-size: 15px;
}

    .feedback-box td.label {
        font-weight: 600;
    }


.feedback-box,
.conversation {
    padding: 15px;
    box-shadow: 0px 0px 3px 1px #4a4a4a40;
    margin-bottom: 15px;
    border-radius: 15px;
    background: #e0f3ff;
}

table.section-table td {
    padding-bottom: 10px;
    padding-right: 15px;
    vertical-align: baseline;
}

    table.section-table td:first-child {
        width: 120px
    }

.conversation {
    height: 100%;
}

.feedbacks {
    position: sticky;
    top: 150px;
}


.form-card {
    margin: auto;
    max-width: 500px;
    background: #ffffff;
    box-shadow: 0px 0px 4px #6a6a6a99;
    border-radius: 10px;
}

.form-header {
    padding: 8px 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: #0385b5;
    border-radius: 10px 10px 0 0;
}

.form-card form {
    padding: 15px;
}

    .form-card form label {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 5px
    }

    .form-card form .form-control {
        font-size: 14px;
        border-color: #d5d5d5;
        border-radius: 5px;
        padding: 8px;
    }

.captcha-container {
    display: flex;
}

    .captcha-container button {
        border-radius: 0;
    }

    .captcha-container .form-control {
        border-radius: 0 !important;
    }

.form-card .btn-submit {
    background: #0385b5;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    outline: none;
    text-align: center;
    display: inline-block;
    margin-top: 15px;
}

    .form-card .btn-submit:hover {
        background: #026f9c;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }

.header-section.scrolled {
    background: #0088b2;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

    .header-section.scrolled .logo img {
        width: 140px !important;
    }


.enevntsection {
    background-color: #cceede;
    padding: 30px 0;
}

.announcmentnews {
    height: 100%;
}

.announcmentheading {
    padding: 15px 20px;
    background: linear-gradient(90deg, #0088b2, #90e9e5 100%);
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

    .announcmentheading h3 {
        color: #ffffff;
        margin: 0;
    }

.news-icon {
    position: relative;
    z-index: 1;
}

    .news-icon::before {
        position: absolute;
        content: '';
        width: 100px;
        height: 100px;
        background: #0088b2;
        top: -30px;
        left: -25px;
        z-index: -1;
        border-radius: 50%;
    }

.announcmencontent {
    padding: 15px 15px;
    background: #ffffff;
    border-radius: 10px;
    margin-top: -8px;
    position: relative;
    z-index: 9;
    padding-bottom: 25px;
}

.newscontentbox {
    padding: 5px 0;
    margin-top: 5px;
}

.eventdate {
    padding: 5px 10px;
    background: #0088b2;
    width: 20%;
    height: 60px;
    display: flex;
}

    .eventdate h4 {
        font-size: 14px;
        color: #ffffff;
        font-weight: 500;
        text-align: center;
        margin: auto;
        line-height: 1.5;
    }


.newseventtext {
    width: 80%;
    margin-left: 20px;
}

    .newseventtext p {
        font-size: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        margin: 0;
    }

    .newseventtext a {
        color: #3f4095;
    }

    .newseventtext h5 {
        font-size: 17px;
        font-weight: 700;
        color: #505050;
    }

.announcmentnews {
    height: 100%;
}

.newscontentbox {
    padding: 5px 0;
    margin-top: 5px;
}

    .newscontentbox + .newscontentbox {
        border-top: 1px solid #dddddd;
    }

    .newscontentbox.draftbox {
        padding-top: 19px;
    }

.news-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transform: translateY(-5px);
}

.gallerytext p {
    margin: 0;
    font-size: 15px;
    width: 75%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.gallerytext a {
    display: inline-block;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #0088b2;
    border-radius: 30px;
    font-size: 14px;
}

.gallerytext {
    padding-top: 15px;
}

.dreaftimg img {
    height: 249px;
    object-fit: cover;
}


.slick-next {
    right: 0px;
}

.slick-prev {
    right: 45px;
    left: auto;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: -60px;
    display: block;
    width: 35px;
    top: auto;
    height: 35px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #ffffff;
    border: none;
    outline: none;
    background: #0088b2;
    transform: rotate(-90deg);
    text-align: center;
    border-radius: 50%;
    padding-top: 4px;
    z-index: 99;
}

    .slick-prev:hover,
    .slick-prev:focus,
    .slick-next:hover,
    .slick-next:focus {
        color: #ffffff;
        outline: none;
        background: #3c4097;
    }

.announcmencontent button.owl-prev,
.announcmencontent button.owl-next,
.product-promo button.owl-prev,
.product-promo button.owl-next {
    position: absolute;
    top: 50%;
    width: 35px;
    height: 35px;
    background: #0088b2 !important;
    border: 1px solid #0088b2 !important;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    color: #ffffff !important;
}

.announcmencontent button.owl-prev,
.product-promo button.owl-prev {
    left: 0;
    border-radius: 0 10px 10px 0;
}

.announcmencontent button.owl-next,
.product-promo button.owl-next {
    right: 0;
    border-radius: 10px 0 0 10px;
}

.news-section button.owl-prev:hover,
.news-section button.owl-next:hover {
    background: #00a554 !important;
    color: #fff !important;
}

.news-section button.owl-next {
    right: -20px;
}

.videotext h3 {
    padding: 15px 20px;
}

.nav-tabs .nav-link .news-icon::before {
    left: 0;
    display: none;
}

.announcmentnews .nav-tabs .nav-link.active {
    background: #0088b2;
}

.announcmentnews .nav-tabs .nav-link {
    padding: 15px 25px;
    border-radius: 0;
    background: #00bcd4;
    border: navajowhite;
}

.siteFooter {
    padding: 30px 0;
    padding-bottom: 0;
    border-top: 2px solid #0088b2;
    margin-top: 25px;
    background: #0088b2;
    color: #fff;
}

.footer-row {
    border-right: 1px solid #ffffff;
}

.top-opt p {
    margin-bottom: 10px;
}

h3.common-hd {
    font-weight: 500;
    color: #ffffff;
    font-size: 18px;
    margin-top: 10px;
}

.top-opt + .top-opt {
    margin-top: 20px;
}

.top-opt {
    color: #000000;
}

.footerLink-single H4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

ul.footerlinks {
    columns: 3;
}

.footerLink-single ul li {
    font-weight: 400;
    color: #ffffff;
    margin: 4px 0;
}

    .footerLink-single ul li a {
        font-weight: 400;
        color: #ffffff;
        font-size: 15px;
    }

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p._toll {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

h3.common-hd i {
    margin-right: 8px;
}

.footer-bottom {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    font-size: 15px;
}

section.product-promo {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    padding-bottom: 0 !important;
}

/* section.product-promo::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 0;
  height: 60%;
  width: 100%;
  z-index: -1;
} */

.bottomimg {
    background-image: url(../img/ExploreBharatBGLeftVector.png);
    padding: 60px 0;
    background-size: contain;
    background-repeat: repeat-x;
}

.product-body .product-title {
    font-size: 20px;
    color: #0088b2;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-body .product-text {
    font-size: 16px;
    color: #0088b2;
    margin-bottom: 20px;
}

.product-body {
    padding: 12px;
}

.product.h-100 {
    background: #ffffff;
    border-radius: 10px;
}

.section-heading {
    font-size: 30px;
    font-weight: 700;
    color: #0088b2;
}

div#languagePopup {
    position: absolute;
    top: 60px;
    left: -280px;
    width: 320px;
    z-index: 9999;
    visibility: visible;
}

    div#languagePopup::before {
        content: "";
        position: absolute;
        right: 20px;
        top: -30px;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 20px solid #ffffff;
        transform: rotate(-90deg);
    }

.btn-outline-danger {
    border-color: #018cb0;
    color: #0088b2;
}

    .btn-outline-danger:hover {
        background: #0186b2;
        border-color: #0186b2;
    }

/* ==============overlay================== */

.overlaybox {
    display: none;
    position: fixed;
    inset: 0;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99;
}

/* ==============overlay================== */


#languagePopup {
    opacity: 0;
    transition: max-height 0.8s ease, opacity 0.8s ease;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
}

    #languagePopup.show {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
        overflow: visible;
    }


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: #0088b5 transparent #0088b5 transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hamburgerIcon {
    width: 40px;
    position: relative;
}

    .hamburgerIcon a {
        color: #004c8d;
        font-size: 30px;
        display: block;
    }

        .hamburgerIcon a .line_1 {
            padding-left: 10px;
            transition: 0.5s all;
        }

        .hamburgerIcon a .line span {
            width: 100%;
            height: 4px;
            background-color: #000;
            margin: 7px 0;
            border-radius: 10px;
            display: block;
        }

        .hamburgerIcon a .line span {
            width: 100%;
            height: 4px;
            background-color: #000;
            margin: 7px 0;
            border-radius: 10px;
            display: block;
        }

        .hamburgerIcon a .line_3 {
            padding-left: 20px;
            transition: 0.5s all;
        }

        .hamburgerIcon a .line span {
            width: 100%;
            height: 4px;
            background-color: #000;
            margin: 7px 0;
            border-radius: 10px;
            display: block;
        }

.hamburgerIcon {
    width: 40px;
    position: relative;
    margin-left: 30px;
}

    .hamburgerIcon a {
        color: #ffffff;
        font-size: 30px;
        display: block;
    }

        .hamburgerIcon a .line_1 {
            padding-left: 10px;
            transition: 0.5s all;
        }

        .hamburgerIcon a .line_3 {
            padding-left: 20px;
            transition: 0.5s all;
        }

        .hamburgerIcon a .line span {
            width: 100%;
            height: 4px;
            background-color: #ffffff;
            margin: 7px 0;
            border-radius: 10px;
            display: block;
        }

.header-right {
    display: flex;
}

.hamburgerIcon a:hover .line_1,
.hamburgerIcon a:hover .line_3 {
    padding-left: 0px;
}


.menu-wrapper {
    margin: 30px auto;
}

    .menu-wrapper a {
        letter-spacing: 1px;
        font-size: 20px;
        display: block;
        line-height: 36px;
        margin: 10px 0;
        color: #fff;
        padding: 12px 30px;
        border-bottom: 1px solid #ffffff;
        transition: 0.5s all;
    }

    .menu-wrapper .submenu {
        display: none;
    }

    .menu-wrapper a i {
        float: right;
        margin-top: 5px;
        margin-right: 5px;
    }

div#offcanvasRight {
    background: #0088b2;
}

.menu-wrapper .submenu li a {
    font-size: 17px;
    line-height: 25px;
    margin: 0px;
    border-bottom: none;
    padding: 10px 30px;
}

.menu_btn_area i {
    transition: transform 0.3s ease;
}

.menu_btn_area.active i {
    transform: rotate(180deg);
}

/* ======================gallery-page======================== */

.tableft {
    width: calc(20%);
    position: sticky;
    top: 120px;
}

.tabright {
    width: calc(70%);
    margin-left: 30px;
}

/* ======================gallery-page-End======================== */

.tableft .nav-pills .nav-link {
    padding: 10px 0;
    border-radius: 0px 30px 30px 0px;
    margin-bottom: 13px;
    background-color: #fff;
    padding-left: 40px;
    font-weight: 500;
    font-size: 20px;
    transition: 0.5s all;
    cursor: pointer;
    border: 1px solid #0088b2;
    border-left: 0;
    color: #0088b2;
    transition: all 0.3s ease-in-out;
}

    .tableft .nav-pills .nav-link.active {
        background-color: #0088b2;
        color: #fff;
    }

.inner_breadcrumb {
    background: linear-gradient(90deg, #5ad2f6, #85a1f6);
    margin: 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    padding: 12px 0;
    border-radius: 0 0 9999px 9999px;
}

section.heading_banner {
    padding: 25px 0;
}

    section.heading_banner h1 {
        font-size: 35px;
        color: #0088b2;
        font-weight: 400;
        letter-spacing: 1.5px;
        text-transform: none !important;
        margin-bottom: 0;
    }

.inner_breadcrumb .breadcrumb li {
    font-weight: 700;
    color: #666;
    float: left;
    display: inline-block;
    line-height: 40px;
}

    .dat_box h2,
    .dat_box p,
    .inner_breadcrumb .breadcrumb li a {
        color: #ffffff;
        font-weight: 400;
    }

.footer-about,
.site ol.organizational-chart h6,
ul.breadcrumb {
    margin: 0;
}

.inner_breadcrumb .breadcrumb li + li:before {
    content: "/";
    float: left;
    padding: 0 10px;
    color: #ffffff;
}

ul.breadcrumb {
    justify-content: center;
}

.gallerybox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

section.gallery-section {
    background: #dcf7ff;
    padding: 40px 0;
}

.gallery-section .newscontentbox {
    background: #ffffff;
    padding: 15px;
    box-shadow: 0px 0px 2px #999999;
    border-radius: 8px;
}

    .gallery-section .newscontentbox .gallerytext {
        padding-top: 5px;
    }

.tableft .nav-pills .nav-link:hover {
    background: #0088b2;
    color: #fff;
}

.gallery_heading {
    font-size: 24px;
    font-weight: 600;
    color: #0088b2;
}

.sidebar-wrapper {
    margin-bottom: 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    position: sticky;
    top: 120px;
}

h2.sidebar-title {
    background: linear-gradient(268.52deg, #69c1f6 -5.28%, #0088b2 119.92%);
    border-radius: 10px 10px 0px 0px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
    border-bottom: 5px solid #0088b2;
    padding: 12px 15px;
    text-align: left;
    margin: 0;
}

ul.sidebar-links {
    display: flex;
    flex-flow: column wrap;
    margin: 0;
    padding: 10px 0 0;
}

    ul.sidebar-links li {
        list-style: none;
        padding: 8px 20px;
        border-bottom: 0.1px dashed #E1E1E1;
        text-align: left;
    }

        ul.sidebar-links li a {
            font-style: normal;
            font-weight: 400;
            font-size: 15px;
            line-height: 24px;
            color: #000000;
            display: flex;
            align-items: center;
        }

            ul.sidebar-links li a i {
                margin-right: 7px;
                width: 25px;
                height: 25px;
                color: #fff;
                background: #0088b2;
                border-radius: 100px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
            }

        ul.sidebar-links li:last-child {
            border: none;
        }

section.footer-img {
    padding-top: 30px;
    display: none;
}

.pdf-container {
    width: 100%;
    height: 90vh;
    border: none;
}

.content-wrapper {
    padding: 15px;
    box-shadow: 0px 0px 2px rgb(0 0 0 / 40%);
    border-radius: 8px;
    background: #ffffff;
}

section.content-section {
    padding: 40px 0;
    background: #dcf7ff;
}

h2.content-title {
    font-size: 22px;
    color: #0088b2;
}

.content-wrapper p {
    font-size: 15px;
    line-height: 25px;
}

h5.card-title.text-primary.fw-bold {
    color: #0088b2 !important;
    font-weight: 500 !important;
}

.ContactUsSection .card {
    border-bottom: 3px solid #0088b2;
    border-radius: 10px;
}

.Visitorsbox {
    background: #0088b2;
    display: block;
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
    z-index: 999;
    border-radius: 10px;
    padding: 10px 27px;
    width: 220px;
    margin: auto;
    margin-top: 25px;
}

.breadcrumb_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1.cat_title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

section.ContactUsSection {
    padding: 30px 0;
}

/* =========================more-css========================== */

.form-card {
    margin: auto;
    max-width: 500px;
    background: #ffffff;
    box-shadow: 0px 0px 4px #6a6a6a99;
    border-radius: 10px;
}

.form-header {
    padding: 8px 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: #0385b5;
    border-radius: 10px 10px 0 0;
}

.form-card form {
    padding: 15px;
}

    .form-card form label {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 5px
    }

    .form-card form .form-control {
        font-size: 14px;
        border-color: #d5d5d5;
        border-radius: 5px;
        padding: 8px;
    }

.captcha-container {
    display: flex;
}

    .captcha-container button {
        border-radius: 0;
    }

    .captcha-container .form-control {
        border-radius: 0 !important;
    }

.form-card .btn-submit {
    background: #0385b5;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    outline: none;
    text-align: center;
    display: inline-block;
    margin-top: 15px;
}

    .form-card .btn-submit:hover {
        background: #026f9c;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }

.heading_title {
    font-size: 24px;
    margin-bottom: 0;
    color: #0385b5;
    text-align: center;
    display: inline-block;
}

.section-top {
    margin-bottom: 5px;
    text-align: center;
}

    .section-top a {
        width: 35px;
        height: 35px;
        border: 1px solid #0385b5;
        display: inline-block;
        line-height: 35px;
        text-align: center;
        border-radius: 50%;
        background: #0385b5;
        color: #ffffff !important;
        float: right;
        margin-top: 5px;
    }

.sno-column {
    width: 60px;
}

.custom-table-wrapper {
    background-color: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

table.dataTable {
    border-collapse: collapse !important;
    width: 100%;
}

    table.dataTable thead {
        background-color: #343a40;
        color: white;
    }

        table.dataTable thead th {
            padding: 10px;
            font-weight: 600;
            color: #222222;
            font-size: 15px;
        }

    table.dataTable tbody td {
        padding: 10px;
        font-size: 14px;
    }

.dataTables_filter input {
    border-radius: 20px;
    border: 1px solid #ced4da;
    padding: 6px 12px;
    width: 200px;
}

.dataTables_length select {
    border-radius: 20px;
    padding: 4px 10px;
}

div#tblDataTable_wrapper > .row {
    margin-bottom: 10px;
}

div#tblDataTable_wrapper .form-control {
    height: auto;
}

.active > .page-link,
.page-link.active {
    background: #0385b5 !important;
    border-color: #0385b5 !important;
}

.open-feedback-modal {
    color: #0385b5;
}

.modal-header .modal-title {
    color: #0385b5 !important;
}

.Visitorsbox p {
    margin: 0;
}

.dreaftimg iframe {
    height: 240px;
    width: 100%;
}

.pdfbox-wrapper td a {
    color: #222;
}

.prim-btn a {
    display: inline-block;
    padding: 15px 30px;
    background: #0088b2;
    color: #fff;
    border-radius: 30px;
    line-height: 1;
    margin-top: 20px;
}

img.counterimg {
    display: block;
    margin: auto;
}

h5.card-title {
    color: #0088b2;
}

p.card-text {
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* =========================more-css========================== */

.form-card {
    margin: auto;
    max-width: 500px;
    background: #ffffff;
    box-shadow: 0px 0px 4px #6a6a6a99;
    border-radius: 10px;
}

.form-header {
    padding: 8px 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: #0385b5;
    border-radius: 10px 10px 0 0;
}

.form-card form {
    padding: 15px;
}

    .form-card form label {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 5px
    }

    .form-card form .form-control {
        font-size: 14px;
        border-color: #d5d5d5;
        border-radius: 5px;
        padding: 8px;
    }

.captcha-container {
    display: flex;
}

    .captcha-container button {
        border-radius: 0;
    }

    .captcha-container .form-control {
        border-radius: 0 !important;
    }

.form-card .btn-submit {
    background: #0385b5;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    outline: none;
    text-align: center;
    display: inline-block;
    margin-top: 15px;
}

    .form-card .btn-submit:hover {
        background: #026f9c;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }

.heading_title {
    font-size: 24px;
    margin-bottom: 0;
    color: #0385b5;
    text-align: center;
    display: inline-block;
}

.section-top {
    margin-bottom: 5px;
    text-align: center;
}

    .section-top a {
        width: 35px;
        height: 35px;
        border: 1px solid #0385b5;
        display: inline-block;
        line-height: 35px;
        text-align: center;
        border-radius: 50%;
        background: #0385b5;
        color: #ffffff !important;
        float: right;
        margin-top: 5px;
    }

.sno-column {
    width: 60px;
}

.custom-table-wrapper {
    background-color: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

table.dataTable {
    border-collapse: collapse !important;
    width: 100%;
}

    table.dataTable thead {
        background-color: #343a40;
        color: white;
    }

        table.dataTable thead th {
            padding: 10px;
            font-weight: 600;
            color: #222222;
            font-size: 15px;
        }

    table.dataTable tbody td {
        padding: 10px;
        font-size: 14px;
    }

.dataTables_filter input {
    border-radius: 20px;
    border: 1px solid #ced4da;
    padding: 6px 12px;
    width: 200px;
}

.dataTables_length select {
    border-radius: 20px;
    padding: 4px 10px;
}

div#tblDataTable_wrapper > .row {
    margin-bottom: 10px;
}

div#tblDataTable_wrapper .form-control {
    height: auto;
}

.active > .page-link,
.page-link.active {
    background: #0385b5 !important;
    border-color: #0385b5 !important;
}

.open-feedback-modal {
    color: #0385b5;
}

.modal-header .modal-title {
    color: #0385b5 !important;
}

/* ===========================site-map======================== */

.site ol.organizational-chart {
    margin-bottom: 50px
}

#wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 80em
}

.shore {
    box-shadow: 0 0 10px #00000066;
    border-radius: 25px;
    padding: 15px 40px;
    margin: 30px;
    text-align: justify;
    border-left: 20px solid #192c64
}

#container {
    float: left;
    padding: 1em;
    width: 100%
}

.CalculatorOutput tr,
ol.organizational-chart {
    text-align: center
}

    ol.organizational-chart ol {
        padding-top: 1em
    }

        ol.organizational-chart li:after,
        ol.organizational-chart li:before,
        ol.organizational-chart ol:after,
        ol.organizational-chart ol:before,
        ol.organizational-chart > li > div:after,
        ol.organizational-chart > li > div:before {
            background-image: linear-gradient(90deg, #5ad2f6, #85a1f6);
            content: '';
            position: absolute
        }

        ol.organizational-chart ol > li {
            padding: 1em 0 0 1em
        }

    ol.organizational-chart > li ol:before {
        height: 1em;
        left: 50%;
        top: 0;
        width: 3px
    }

    ol.organizational-chart > li ol:after {
        height: 3px;
        left: 3px;
        top: 1em;
        width: 50%
    }

    ol.organizational-chart > li ol > li:last-of-type:before,
    ol.organizational-chart > li ol > li:not(:last-of-type):before {
        height: 3px;
        left: 0;
        top: 2em;
        width: 1em
    }

    ol.organizational-chart > li ol > li:not(:last-of-type):after {
        height: 100%;
        left: 0;
        top: 0;
        width: 3px
    }

    ol.organizational-chart > li ol > li:last-of-type:after {
        height: 2em;
        left: 0;
        top: 0;
        width: 3px
    }

    ol.organizational-chart li > div {
        background-color: #fff;
        border-radius: 7px;
        min-height: 2em;
        padding: 0.7em;
    }

    ol.organizational-chart > li > div {
        background: linear-gradient(90deg, #0088b2, #5bd1f6);
        margin-right: 1em
    }

        ol.organizational-chart > li > div:before {
            bottom: 2em;
            height: 3px;
            right: -1em;
            width: 1em
        }

        ol.organizational-chart > li > div:first-of-type:after {
            bottom: 0;
            height: 2em;
            right: -1em;
            width: 3px
        }

        ol.organizational-chart > li > div + div {
            margin-top: 1em
        }

            ol.organizational-chart > li > div + div:after {
                height: calc(100% + 1em);
                right: -1em;
                top: -1em;
                width: 3px
            }

    ol.organizational-chart > li > ol:before {
        left: inherit;
        right: 0
    }

    ol.organizational-chart > li > ol:after {
        left: 0;
        width: 100%
    }

    ol.organizational-chart > li > ol > li > div,
    ol.organizational-chart > li > ol > li > ol > li div {
        border: 1px solid #ddd
    }

.event-content span,
.team-links a {
    border-radius: 50%;
    text-align: center
}

@media only screen and (min-width: 64em) {
    ol.organizational-chart {
        margin-left: -1em;
        margin-right: -1em
    }

        ol.organizational-chart > li > div {
            display: inline-block;
            float: none;
            margin: 0 1em 1em;
            vertical-align: bottom
        }

            ol.organizational-chart > li > div:only-of-type {
                margin-bottom: 0;
                width: calc((100% / 1) - 2em - 4px)
            }

            ol.organizational-chart > li > div:first-of-type:nth-last-of-type(2),
            ol.organizational-chart > li > div:first-of-type:nth-last-of-type(2) ~ div {
                width: calc((100% / 2) - 2em - 4px)
            }

            ol.organizational-chart > li > div:first-of-type:nth-last-of-type(3),
            ol.organizational-chart > li > div:first-of-type:nth-last-of-type(3) ~ div {
                width: calc((100% / 3) - 2em - 4px)
            }

            ol.organizational-chart > li > div:first-of-type:nth-last-of-type(4),
            ol.organizational-chart > li > div:first-of-type:nth-last-of-type(4) ~ div {
                width: calc((100% / 4) - 2em - 4px)
            }

            ol.organizational-chart > li > div:first-of-type:nth-last-of-type(5),
            ol.organizational-chart > li > div:first-of-type:nth-last-of-type(5) ~ div {
                width: calc((100% / 5) - 2em - 4px)
            }

            ol.organizational-chart > li > div:after,
            ol.organizational-chart > li > div:before {
                bottom: -1em !important;
                top: inherit !important
            }

            ol.organizational-chart > li > div:before {
                height: 1em !important;
                left: 50% !important;
                width: 3px !important
            }

            ol.organizational-chart > li > div:only-of-type:after,
            ol.organizational-chart > li > ol:after,
            ol.organizational-chart > li > ol > li:only-of-type:after,
            ol.organizational-chart > li > ol > li:only-of-type:before {
                display: none
            }

            ol.organizational-chart > li > div:first-of-type:not(:only-of-type):after,
            ol.organizational-chart > li > div:last-of-type:not(:only-of-type):after {
                bottom: -1em;
                height: 3px;
                width: calc(50% + 1em + 3px)
            }

            ol.organizational-chart > li > div:first-of-type:not(:only-of-type):after {
                left: calc(50% + 3px)
            }

            ol.organizational-chart > li > div:last-of-type:not(:only-of-type):after {
                left: calc(-1em - 3px)
            }

            ol.organizational-chart > li > div + div:not(:last-of-type):after {
                height: 3px;
                left: -2em;
                width: calc(100% + 4em)
            }

        ol.organizational-chart > li > ol {
            display: flex;
            flex-wrap: nowrap
        }

            ol.organizational-chart > li > ol:before,
            ol.organizational-chart > li > ol > li:before {
                height: 1em !important;
                left: 50% !important;
                top: 0 !important;
                width: 3px !important
            }

            ol.organizational-chart > li > ol > li {
                flex-grow: 1;
                padding-left: .5em;
                padding-right: .5em;
                padding-top: 1em
            }

                ol.organizational-chart > li > ol > li:only-of-type {
                    padding-top: 0
                }

                ol.organizational-chart > li > ol > li:first-of-type:not(:only-of-type):after,
                ol.organizational-chart > li > ol > li:last-of-type:not(:only-of-type):after {
                    height: 3px;
                    top: 0;
                    width: 50%
                }

                ol.organizational-chart > li > ol > li:first-of-type:not(:only-of-type):after {
                    left: 50%
                }

                ol.organizational-chart > li > ol > li:last-of-type:not(:only-of-type):after {
                    left: 0
                }

                ol.organizational-chart > li > ol > li + li:not(:last-of-type):after {
                    height: 3px;
                    left: 0;
                    top: 0;
                    width: 100%
                }
}

.site ol.organizational-chart a {
    color: #245ba0;
    display: block;
    font-weight: 500;
}

ol {
    margin: 0;
    list-style: none;
    padding-left: 0;
}

    ol.organizational-chart,
    ol.organizational-chart li,
    ol.organizational-chart li > div,
    ol.organizational-chart ol {
        position: relative;
    }

.site ol.organizational-chart h4 {
    color: #ffffff;
    margin: 0;
}

/* ===========================site-map======================== */




.search-popup {
    position: fixed;
    inset-inline-start: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

    .search-popup form {
        position: absolute;
        max-width: 700px;
        top: 50%;
        inset-inline-start: 15px;
        inset-inline-end: 15px;
        margin: -35px auto 0;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        background-color: #111111;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .search-popup .search-popup__group {
        position: relative;
        margin: 0px;
        overflow: hidden;
    }

        .search-popup .search-popup__group input {
            position: relative;
            display: block;
            font-size: 18px;
            line-height: 50px;
            color: var(--black);
            height: 70px;
            width: 100%;
            padding: 10px 30px;
            background-color: var(--white);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            font-weight: 400;
            text-transform: capitalize;
            -webkit-padding-end: 80px;
            padding-inline-end: 80px;
            border-radius: 5px;
            outline: none;
            border: none;
        }

        .search-popup .search-popup__group button {
            color: #1498c1;
        }

            .search-popup .search-popup__group button:hover {
                color: var(--hover-color);
            }

    .search-popup button {
        position: absolute;
        inset-inline-end: 30px;
        top: 0px;
        height: 70px;
        line-height: 70px;
        background: transparent;
        text-align: center;
        font-size: 24px;
        color: var(--white);
        padding: 0;
        cursor: pointer;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        outline: navajowhite;
        outline: none;
        border: none;
    }

    .search-popup .close-search {
        position: absolute;
        inset-inline-start: 0;
        inset-inline-end: 0;
        top: 75%;
        margin: 0 auto;
        margin-top: -200px;
        border-radius: 50%;
        text-align: center;
        background: linear-gradient(90deg, #0088b2, #5bd1f6);
        width: 70px;
        cursor: pointer;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        border-bottom: 3px solid #ffffff;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        opacity: 0;
        visibility: hidden;
        color: #ffffff;
        outline: none;
    }

        .search-popup .close-search span {
            position: relative;
            display: block;
            height: 70px;
            width: 70px;
            font-size: 20px;
            line-height: 70px;
            color: var(--black);
        }

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-active .search-popup {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    margin-top: 0;
}

    .search-active .search-popup form {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transition-delay: 1200ms;
        transition-delay: 1200ms;
    }

    .search-active .search-popup .close-search {
        visibility: visible;
        opacity: 1;
        top: 50%;
        -webkit-transition-delay: 1500ms;
        transition-delay: 1500ms;
    }

.searchModule--popular {
    padding: 20px 0;
    margin: auto;
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    width: 80%;
    text-align: center;
}

    .searchModule--popular h4 {
        margin-bottom: 20px;
        color: #1498c1;
    }

.searchModule--popular-item:not(:last-child) {
    margin-right: 40px;
}

.searchModule--popular-item a {
    line-height: 2rem;
    font-size: 1.05rem;
    color: #e5e5e5;
    transition: all 0.4s ease-in-out;
    position: relative;
}

button.open-search {
    outline: none;
    border: 2px solid #fff;
    background: transparent;
    width: 45px;
    height: 45px;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
}

.content-wrapper h6 {
    color: #0088b2;
    margin-bottom: 10px;
}


.myslider .newscontentbox {
    height: 85px;
}

.error-page {
    text-align: center;
    margin: 30px;
}

    .error-page h2 {
        font-size: 80px;
        font-weight: bold;
    }

p.designby a {
    color: #fff;
}

.card-header.bg-primary {
    background: #0385b5 !important;
}

button.btn.btn-primary.w-100 {
    background: #0385b5;
    outline: none;
    box-shadow: none;
}

@media(max-width:1200px){
    .legend-item {
        width: 45%;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .legend-item {
        font-size: 12px
    }

}

@media(max-width:1040px){
    .banner-section{
        height:540px;
    }

    .typeJsWrapper .typeJsText{
        font-size:22px;
    }

    .banner-text{
        width:80%;
    }

    .bc-btns-wrapper {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .eventdate h4{
        font-size:12px;
    }

    .announcmencontent{
        padding:15px 10px;
    }

    p._toll{
        font-size:18px;
    }

    h3.common-hd{
        font-size:16px;
    }
}

@media(max-width:992px){
    .banner-section {
        height: 440px;
    }

    .typeJsWrapper .typeJsText {
        font-size: 16px;
    }

    .container {
        max-width: 90%;
    }

    .locatio-data {
        flex-direction: column-reverse;
    }


}

@media(max-width:768px){
    .translate-box {
        margin-left: 10px;
    }

    .header-right {
        justify-content: end;
        gap: 15px;
    }

    .hamburgerIcon a {
        font-size: 19px;
    }

    .container {
        max-width: 90%;
    }

    .videotext h3, .announcmentheading {
        padding: 10px 12px;
    }

    .announcmentheading h3 {
        color: #ffffff;
        margin: 0;
        font-size: 16px;
    }

    .announcmentnews .nav-tabs .nav-link{
        padding:10px;
    }

    .news-icon img{
        height:25px;
        width:25px;
    }

    .gallerytext p{
        width:100%;
    }

    .footer-row {
        border-right: none;
        border-bottom: 1px solid #fff;
        padding-bottom: 10px;
    }

    ul.footerlinks {
        columns: 2;
    }

    .banner-section {
        height: 350px;
    }

    .banner-text h1{
        font-size:24px;
    }

    .banner-text p {
        font-size: 14px;
        line-height: 24px;
    }

    .read_more_1{
        font-size:12px;
        padding:8px 15px;
    }

    section.content-section .col-md-3 {
        margin-top: 20px;
    }

    h1.cat_title {
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0;
    }

    .inner_breadcrumb .breadcrumb li{
        font-size:14px;
    }

    .tableft .nav-pills .nav-link{
        font-size:16px;
        padding-left:10px;
    }

}

@media(max-width:568px){
    .banner-section {
        height:320px;
    }

    .read_more_1 {
        font-size: 12px;
        padding: 8px 10px;
    }
}

@media(max-width:481px){
    .logo img{
        width:150px
    }

    .header-right{
        gap:5px;
    }

    button.open-search{
        width:32px;
        height:32px;
        font-size:14px;
    }

    .banner-img img {
        height: 250px;
        object-fit: cover;
    }

    .waves-wrapper{
        display:none;
    }

    .banner-section {
        height: 250px;
    }

    .banner-text{
        width:90%;
        top:50%;
    }

    .banner-text h1{
        margin-bottom:5px;
    }

    .banner-text p {
        font-size: 12px;
        line-height: 20px;
        margin-bottom:5px;
    }

button.btn.btn-primary.w-100 {
    background: #0385b5;
    outline: none;
    box-shadow: none;
}
}

button.bhashini-dropdown-btn {
    padding: 10px !important;
}