@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Black.woff2') format('woff2'),
        url('../fonts/SourceSans3-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Light.woff2') format('woff2'),
        url('../fonts/SourceSans3-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Bold.woff2') format('woff2'),
        url('../fonts/SourceSans3-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Medium.woff2') format('woff2'),
        url('../fonts/SourceSans3-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Regular.woff2') format('woff2'),
        url('../fonts/SourceSans3-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-SemiBold.woff2') format('woff2'),
        url('../fonts/SourceSans3-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
:root{
    --primary-font: "Mulish";
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fs-26: 26px;
    --fs-30: 30px;
    --fw-light: 300;
    --fw-regular: normal;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: bold;
    --fw-extra-bold: 900;
    --primary-color: #162f6a;
    --dark-navy: #0b4070;
    --white-color: #ffffff;
    --white-tone: #F5F5F5;
    --grey-color: #adaeae;
    --bright-grey: #E7EBEF;
    --davy-grey: #595656;
    --button-blue: #1DA1F2;
    --facebook-color: #3b5998;
    --grey-light: #bfbfbf;
    --black-color: #000000;
    --orange-color: #FE7704;
    --sky-color: #E0F6FE;
    --light-yellow: #FFCCA1;
    --yellow-color: #ffc404;
}
/* reset css start */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
img{max-width: 100%; vertical-align: middle;}
/* HTML5 display-role reset for older browsers */
html{ 
    scroll-behavior: smooth; /* optional if only using CSS-based scroll */
    scroll-padding-top: 70px;
}
a{text-decoration: none; color: var(--black-color);}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body { line-height: 1.875; font-family: var(--primary-font); }
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table { border-collapse: collapse; border-spacing: 0; }
html body a:hover{ color: var(--orange-color); transition: ease .3s all; }
.form-control{ border-radius: 0px; }
.form-control:focus{ box-shadow: none; border-color: var(--grey-color); }
.primary-btn{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.primary-heading{
    font-family: var(--primary-font);
    font-size: var(--fs-24);
    color: var(--black-color);
    font-weight: var(--fw-bold);
}
.btn {
    padding: 6px 15px;
    display: inline-block;
    transition: ease .3s all;
    border-radius: 5px;
}
.primary-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.primary-btn:hover {
    background-color: var(--yellow-color);
    color: var(--black-color);
}
/* reset css end */
/* topbar css start */
.topHeader {
    background: var(--white-color);
    font-size: 12px;
    border-bottom: 1px solid var(--bright-grey)
}

.topHeader .topHeader a { color: var(--davy-grey); margin: 0 5px }
.topHeader i { vertical-align: middle; margin-top: -3px }
.topHeader .common-left ul,header.header .headerSocial ul li { list-style: none }
.topHeader .common-left ul li {
    float: left;
    text-align: left;
    line-height: 15px;
    position: relative;
    padding: 0 7px 0 8px
}
.topHeader .common-left ul li:not(:first-child):before {
    content: " ";
    position: absolute;
    left: 0;
    top: 50%;
    z-index: auto;
    height: 14px;
    width: 1px;
    background: var(--grey-color);
    overflow: hidden;
    margin-top: -7px
}
.topHeader .common-left ul li:first-child { padding-left: 0 }
.topHeader .common-left ul li a,.topHeader a { color: var(--davy-grey); font-size: var(--fs-14) }
.topRightHeader .dropdown { float: left }
.topHeader .common-middle a { margin: 0 10px; font-size: 13px }
.topRightHeader .dropdown>a,.topRightHeader .languageBox {
    border-left: 1px solid #eee;
    font-size: var(--fs-14);
    float: left;
    display: block;
    margin: 0;
    text-transform: uppercase
}
.topRightHeader{ color: var(--black-color) }
.topRightHeader .dropdown>a { padding: 5px 9px }
.topRightHeader .dropdown>a:hover { background: #02a9e3; color: var(--white-color) !important }
.topRightHeader .languageBox { padding: 6px 9px }
.topRightHeader .dropdown>img { cursor: pointer }
.topRightHeader .dropdown-menu {
    left: auto;
    right: 0;
    border: 0;
    box-shadow: none
}
.topRightHeader .dropdown .menuPanelDown {
    left: 1px;
    right: auto;
    top: 34px;
    padding: 0;
    min-width: 42px;
    border-radius: 0;
    text-align: center
}
.topRightHeader .dropdown .menuPanelDown li { padding: 0 }
.topRightHeader .dropdown .menuPanelDown li a {
    border-bottom: 1px solid #cecece;
    text-align: center;
    margin: 0;
    padding: 3px 0;
    display: block;
    font-size: 14px;
    background: #02a9e3;
    color: var(--white-color)
}
.topRightHeader .dropdown .menuPanelDown li a:hover { background: #333 }
.topRightHeader .dropdown:hover .menuPanelDown {
    display: block;
    width: 100%;
    z-index: 99999
}
.topRightHeader .dropdown .languageMenu li a { padding: 3px 23px; display: block }
.topRightHeader .dropdown>a img:hover { filter: brightness(.5) invert(1) }
/* topbar css end */
/* theme header css start */
.theme-header .navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    color: var(--primary-color);
}
.theme-header .navbar-brand .heading {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: var(--fs-22);
    font-weight: var(--fw-bold);
}
.theme-header .navbar-brand .heading > span { color: var(--black-color); font-weight: var(--fw-medium); }

.search .input-group input{border-right: none; border-radius: 1.25rem 0px 0px 1.25rem !important; padding: 6px;}
.search .input-group button {
    border-radius: 0 1.25rem 1.25rem 0px;
}
/* theme header css end */
/* navbar css start */
.navigation {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    width: 100%;
}
.navigation::before {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform-origin: 0;
    background: var(--white-color);
    position: absolute;
    width: 100%;
    content: '';
    top: 0;
    right: 0;
    height: 0;
}
.navigation .desk-menu { position: relative; width: 100%; }
.navigation .desk-menu .box-menu {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: block;
    margin: 0 auto;
}
.navigation .desk-menu .menu-container .menu-head, .navigation .desk-menu .menu-container .menu-foot { width: 100%; display: none; }
.navigation .desk-menu .menu-container .menu-head { background: var(--orange-color); padding: 16px 10px; }
.navigation .desk-menu .menu-container .menu {
    padding: 0;
    list-style: none;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.navigation .desk-menu .menu-container .menu li.back { display: none; }
.navigation .desk-menu .menu-container .menu > li {
    display: inline-block;
    -webkit-transition: all 0.33s ease;
    -moz-transition: all 0.33s ease;
    -ms-transition: all 0.33s ease;
    -o-transition: all 0.33s ease;
    transition: all 0.33s ease;
    margin: 0px;
    cursor: pointer;
    position: relative;
    overflow: inherit;
}
.navigation .desk-menu .menu-container .menu > li > a {
    padding: 10px;
    display: block;
    color: var(--white-color);
    font-size: var(--fs-15);
    font-weight: var(--fw-medium);
}
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children > a { position: relative;}
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children .sub-menu {
    box-shadow: 1px 2px 4px rgba(46, 61, 73, 0.2);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-overflow-scrolling: touch;
    min-width: 200px;
    position: absolute;
    list-style: none;
    background: #FFF;
    padding: 0;
    display: table;
    left: 0;
    width: 100%;
    display: none;
    z-index: 5;
}
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children .sub-menu li {
    width: 100%;
    border-bottom: 1px solid var(--black-color);
    -webkit-transition: all 0.33s ease;
    -moz-transition: all 0.33s ease;
    -ms-transition: all 0.33s ease;
    -o-transition: all 0.33s ease;
    transition: all 0.33s ease;
}
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children .sub-menu li > a {
    padding: 4px 12px;
    display: block;
    position: relative;
    color: var(--black-color);
    font-size: var(--fs-15);
}
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children .sub-menu li .sub-menu { display: none; } 
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children .sub-menu li.menu-item-has-children > a::after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    content: '\f0da';
    font-family: 'fontawesome';
    top: 5px;
    right: 15px;
}
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children .sub-menu li.menu-item-has-children:hover > a { display: block; }
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children .sub-menu li.menu-item-has-children:hover .sub-menu { display: block; }
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children .sub-menu li:hover > a { color: var(--white-color); background-color: var(--dark-navy); }
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children .sub-menu .sub-menu { left: 100%; margin-top: -43px; }
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children a { text-align: left; }
.navigation .desk-menu .menu-container .menu > li.menu-item-has-children a:hover { margin-top: 0; }
.navigation .desk-menu .menu-container .menu > li.line {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 0px;
    pointer-events: none;
    border: 1px solid var(--white-color);
    background: var(--orange-color);
    -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
    -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
    transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
    opacity: 0;
    display: block;
    z-index: 2;
}
.navigation .desk-menu .menu-container .menu > li:hover > a { color: var(--white-color); }
.navigation .desk-menu .menu-container .menu > li:hover.menu-item-has-children .sub-menu { display: block; }
.navigation .hamburger-menu { display: none; }
.navigation.small::before { box-shadow: 0px 5px 25px 0 rgba(46, 61, 73, 0.2); height: 100%; }
.navigation.small .desk-menu .menu-container .menu > li.menu-item-has-children > a::before, 
.navigation.small .desk-menu .menu-container .menu > li.menu-item-has-children > a::after { background-color: #4e4e4e; }
.navigation.small .desk-menu .logo-adn { margin-top: 14px; }
.navigation.small .desk-menu .logo-adn a { background-image: url('../img/empresa-1-logo.svg'); height: 30px; width: 140px; }
.navigation.small .desk-menu .box-menu { padding: 0; }
.navigation.small .desk-menu .box-menu ul li a { color: #4e4e4e; }
/* navbar css end */

/* banner css start */
.banner-section .carousel-inner {height: 100%;}
.banner-section .carousel .carousel-item img {
    position: absolute;
    top: 0;
    right: 0;
    margin-left: auto;
    margin-top: 0;
    margin-right: auto;
    object-fit: cover;
    height: 100%;
}
.banner-section .carousel .carousel-item .carousel-caption {
    background-color: rgba(0 0 0 / 0.8);
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    padding: 14px 30px;
}
.carousel-caption .lnkReadAllNews {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    background-color: var(--yellow-color);
    color: var(--black-color);
    padding: 2px 6px;
    font-size: var(--fs-14);
    font-weight: 600;
    border-radius: 6px;
    transition: ease .3s all;
}

.carousel-caption .lnkReadAllNews:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.banner-section .carousel .carousel-item .carousel-caption p { font-size: var(--fs-20); font-weight: var(--fw-normal); }
.banner-section .carousel-control-next, .carousel-control-prev { width: 7%; opacity: 1; }
.carousel-control-next-icon, .carousel-control-prev-icon{position:absolute;top: 40%;transform: translateY(-40%); width: 2.5rem;height: 2.5rem;border: 1px solid var(--white-color);border-radius: 50%; background-size: 50% 50%; opacity: 1;}
.carousel-control-next-icon{background-color: var(--primary-color);}
.carousel-control-prev-icon{background-color: var(--primary-color);}
/* banner css end */
/* latest-news-section css start */
.latest-news-section .newsAreaHd {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 6px 10px;
    font-weight: 700;
    width: 180px;
    font-size: var(--fs-16);
    line-height: 36px;
    text-align: center;
    position: relative;
}
.latest-news-section .news-box {
    padding: 0px 15px;
    border: 1px solid var(--bright-grey);
}
.latest-news-section .news-box marquee {
    padding-top: 8px;
}
.latest-news-section .news-box > marquee > a {
    padding: 0 15px;
    position: relative;
    font-size: var(--fs-16);
    color: var(--black-color);
    text-transform: initial;
}
.latest-news-section .news-box > marquee > a:hover { color: var(--orange-color); transition: ease .3s all; }
.latest-news-section .news-box > marquee > a:after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 24px;
    background-color: var(--light-yellow);
    position: absolute;
    right: 0px;
}
/* latest-news-section css end */
/* event-banner-section css start */
.event-banner-section { padding: 20px; background-color: #b4fcf957; }
/* event-banner-section css end */
/* tabs css start */
.theme-tabs .nav-tabs{gap: 2px;}
.theme-tabs .nav-tabs .nav-item {
    flex: 1;
    width: 100%;
    max-width: 100%;
}
.theme-tabs .nav-tabs .nav-item .nav-link,
.theme-tabs .accordion-header .accordion-button {
    padding: 0.475rem;
    width: 100%;
    background-color: var(--primary-color);
    font-size: var(--fs-16);
    line-height: 26px;
    color: var(--white-color);
    border: 0;
    border-bottom: 4px solid var(--primary-color);
    border-radius: 10px 10px 0px 0px;
}
.theme-tabs .nav-tabs .nav-item .nav-link:hover,
.theme-tabs .accordion-header .accordion-button:hover {
    transition: ease .3s all;
    background-color: var(--dark-navy);
    color: var(--white-color);
    border-bottom: 3px solid var(--primary-color);
}
.theme-tabs .nav-tabs .nav-item .nav-link.active,
.theme-tabs .accordion-header .accordion-button:not(.collapsed){ background-color: var(--dark-navy); border-bottom: 4px solid var(--primary-color); }
.theme-tabs .tab-content .tab-pane .accordion-collapse > .accordion-body {
    max-height: 405px;
    min-height: 405px;
    overflow-y: auto;
}
.view-all-btn {
    padding-bottom: 20px;
}
#socialTabContent.tab-content .tab-pane .accordion-collapse { max-height: 350px; min-height: 350px; }
.theme-tabs .accordion-body { border: 1px solid #efefef; }
/* .theme-tabs .data-listing ul{padding-left: 1rem; } */
/* .theme-tabs .data-listing ul li{ list-style: disc; margin-bottom: 10px; }
::marker { color: var(--orange-color); font-size: 24px; } */
.theme-tabs .data-listing ul li {
    list-style: none;
    background-image: url('../../assets/images/ac.svg');
    list-style-position: outside;
    background-repeat: no-repeat;
    background-position: left 10px top 10px;
    background-size: 24px;
    background-color: #f1fbff;
    padding: 10px 10px 10px 40px;
    border-bottom: 1px solid #344263;
    margin-bottom: 10px;
    border-radius: 8px;
}
.theme-tabs .data-listing ul li:hover{
    background-color: var(--dark-navy);
    transition: ease .3s all;
}
.theme-tabs .data-listing ul li:hover a{
    color: var(--white-color);
}
.theme-tabs .data-listing ul li a {
    font-size: 15px;
    color: var(--black-color);
    font-weight: var(--fw-normal);
    line-height: 26px;
    letter-spacing: 0.03em;
}
.theme-tabs .data-listing ul li a > p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.theme-tabs .data-listing ul li a > .published-date { color: var(--grey-color); }
.data-listing .img-list{ display: flex; }
.data-listing .img-list .img-box{ flex: 0 0 16%; width: 16%; flex-shrink: 0; } 
.data-listing .img-list .content {
    padding: 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#facebook-tab { background-color: var(--facebook-color); border-color: var(--facebook-color) }
#twiiter-tab { background-color: var(--button-blue); border-color: var(--button-blue); }
/* tabs css end */
/* gallery css start */
.gallery-row .img-box,
.gallery-row .gallery-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #EFEFEF;
    padding: 1rem;
    box-shadow: 6px 11px 41px -28px #796eb1;
    -webkit-boxshadow: 6px 11px 41px -28px #796eb1;
}
.gallery-row .img-box img{
    max-height: 232px;
    object-fit: cover;
}
.gallery-row .img-box .caption { padding: 8px 4px; }
.gallery-row .img-box .caption a {
    color: var(--black-color);
    font-size: var(--fs-16);
    line-height: 20px;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gallery-row .img-box .caption a:hover { text-decoration: underline; cursor: pointer; }
.owl-nav, .owl-nav button { position: absolute;}
#gallery-carousel .owl-nav {
    top: -56px;
    width: 100%;
    right: 10px;
}
#gallery-carousel .owl-nav button {
    top: -6px;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
#gallery-carousel .owl-nav button.owl-next { right: 90px; }
#gallery-carousel .owl-nav button.owl-prev { right: 132px; }
.gallery-row .gallery-box .imgs-box {
    height: 100%;
    position: relative;
    padding-top: 240px  ;
    width: 100%;
    overflow: hidden;
}
.gallery-row .gallery-box .imgs-box img {
    position: absolute;
    height: 240px;
    width: 100%;
    max-height: 240px;
    top: 0px;
    right: 0px;
    margin-left: auto;
    margin-top: 0px;
    margin-right: auto;
    object-fit: cover;
}
.gallery-row .gallery-box .imgs-box .gallery-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    background-color: rgba(3, 70, 131, 0.54);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: ease-out .3s all;
    text-align: center;
}
.gallery-row .gallery-box .imgs-box:hover .gallery-hover { opacity: 1; width: 100%; height: 100%; }
.gallery-row .gallery-box .imgs-box .gallery-hover a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: normal;
    background: #51aaf7;
    padding: 15px;
    border-radius: 50px;
    color: var(--white-color);
}
.gallery-row .gallery-box .gallery-caption { padding: 10px 0px; }
.gallery-row .gallery-box .gallery-caption h5{
    font-size: var(--fs-16);
    line-height: 24px;
    font-weight: 400;
}
/* gallery css end */
/* cgi general info box css start */
.cgi-row .item-box {
    background-color: var(--sky-color);
    border: 1px solid var(--bright-grey);
    border-radius: 10px;
    padding: 15px 24px;
    display: flex;
    align-items: start;
}
.cgi-row .item-box .info-box { margin-left: 16px; }
.cgi-row .item-box .info-box h3 {
    font-size: var(--fs-18);
    font-weight: var(--fw-semibold);
    color: var(--primary-color);
    margin-bottom: 4px;
}
.cgi-row .item-box .img-box {
    width: 126px;
    height: auto;
    padding: 0px;
    border: 1px solid var(--bright-grey);
    flex-shrink: 0;
    text-align: center;
    background-color: var(--white-color);
    border-radius: 6px;
}
.cgi-row .item-box .info-box .info-list li:not(:last-child){ margin-bottom: 10px; }
.cgi-row .item-box .info-box .info-list li img { vertical-align: middle; margin-right: 5px; }
.cgi-row .item-box .info-box .info-list li a{ color: var(--black-color); }
.cgi-row .item-box .info-box .info-list li a:hover{ color: var(--orange-color); transition: ease .3s all; }
/* cgi general info box css end */

/* important links css start */
.important-links-row .link-box { text-align: center; }
.important-links-row .link-box img { margin-bottom: 15px; }
.imp-info-box .accordion-item .accordion-body { padding: 0 0 15px 0; color: var(--white-color); }
.imp-info-box .accordion-item .accordion-body a{color: var(--white-color); margin-bottom: 10px;}
.imp-info-box .accordion-item .accordion-body p {
    font-size: var(--fs-15);
    line-height: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
    font-weight: var(--fw-normal);
}
.imp-info-box .accordion-item .accordion-body ul{margin-left: 10px;}
.imp-info-box .accordion-item .accordion-body ul li{padding: 8px 0;}
.imp-info-box .accordion-item .accordion-body ul li:not(:last-child){ margin-bottom: 6px; border-bottom: 1px solid var(--white-color); }
/* important links css end */
/* location map css start */
.location-map-row .map-img-box {
    height: auto;
    border: 2px solid var(--bright-grey);
    border-radius: 10px;
    overflow: hidden;
}
/* location map css end */

/* important info css start */
.imp-info-row{
    padding: 20px;
    background-color: var(--primary-color);
    border-radius: 10px;
}
.imp-info-row .accordion-item {
    background-color: transparent;
    border-bottom: 1px solid var(--white-color);
    border-right: 0;
    border-left: 0;
    border-top: 0;
}
.imp-info-row .accordion-button,.imp-info-row .accordion-button:not(.collapsed) {
    padding: 1rem 0px;
    background-color: transparent;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0);
    color: var(--white-color);
    font-size: var(--fs-16);
    font-weight: var(--fw-medium);
}
.imp-info-row .accordion-button::after,
.theme-tabs .accordion-header .accordion-button::after  { content: ''; filter: brightness(0) invert(1); }
/* important info css end */
.impt-links .owl-item a { display: inline-block; margin: 0px; }
/* important css end */
/****** Inner Pages Banner Css Start ******/
.page-header {
    position: relative;
    background: url('../images/inner-banner-blank.jpg') repeat-y right top var(--primary-color);
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 50px;
}
.pagepage-header img {
    position: absolute;
    top: 50%;
    right: 55px;
    transform: translateY(-50%);
}
.page-title {
    margin: 0;
    color: var(--dark-navy);
    font-size: clamp(24px, 3vw, 32px);
    text-align: left;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre-wrap;
}
/****** Inner Pages Banner Css End ******/

/******  Breadcrumbs css start ******/
.breadcrumbs-lists { background-color: #d9edfd; padding: 6px 0px; border-bottom: 1px solid var(--grey-color); }
.breadcrumb-items .breadcrumb-item { display: inline-block; }
.breadcrumb-item+.breadcrumb-item::before { content: '/'; margin-right: 5px; }
.breadcrumb-link.active { color: var(--primary-color); }
/******  Breadcrumbs css end ******/

/****** content-section css start ******/
.right-menu {
    padding: 15px;
    background-color: var(--bright-grey);
    border-radius: 15px;
    box-shadow: 1px -1px 8px rgb(24 40 54 / 25%);
    top: 0;
}
.sidebar > ul > li {
    padding: 10px 15px;
    background-color: #d6dbe7;
    border-radius: 10px;
    transition: ease .5s all;
}
.sidebar > ul > li:not(:last-child) { margin-bottom: 10px; }
.sidebar > ul > li.active,
.sidebar > ul > li:hover { background-color: var(--primary-color); }
.sidebar > ul > li.active > a{color: var(--white-color);}
.sidebar > ul > li a { display: block; }
.sidebar > ul > li:hover a { color: var(--white-color); }
table.table {
    width: 100%;
    border: 0;
    border-left: 1px solid #a3cadb;
    border-bottom: 1px solid #a3cadb;
    border-collapse: separate;
    margin-bottom: 0;
}
table.table thead tr th {
    border: 0;
    background: var(--primary-color);
    font-weight: 700;
    color: var(--white-color);
    border-right: 1px solid #a3cadb;
    border-top: 1px solid #a3cadb;
}
table.table tbody tr td{ border-right: 1px solid #a3cadb; border-top: 1px solid #a3cadb; }
table.table tbody tr td, table.table thead tr th { padding: 5px; font-size: 16px; line-height: 18px; }
table.table tbody tr:nth-child(2n) { background-color: #a3cadb; }
.inner-section .textAreaPanelContent table tr > td {
    border: 1px solid var(--dark-navy);
}
.different-consul{
    margin-bottom: 10px;
}
.different-consul tr > td {
    min-width: 360px;
}
.inner-section{padding: 40px 0;}
.inner-section .textAreaPanel{
    padding: 30px;
    margin-bottom: 24px;
    background-color: var(--sky-color);
    border-radius: 20px;
}
.inner-section .textAreaPanel p { line-height: 26px; }
.textAreaPanelContent p:first-child > img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.inner-section .textAreaPanel p,
.inner-section .textAreaPanel ul li { text-align: justify; }
.inner-section .textAreaPanel a,
.inner-section .textAreaPanel p a { color: var(--orange-color); font-weight: 600; }
html body .inner-section .textAreaPanel a:hover, 
html body .inner-section .textAreaPanel p a:hover { text-decoration: underline !important; }
.inner-section .textAreaPanel ol, .inner-section .textAreaPanel ul { padding-left: 20px; }
.inner-section .textAreaPanel ul li { list-style: none; color: var(--black-color); margin-bottom: 8px; }
.inner-section .textAreaPanel p:not(:last-child) { margin-bottom: 15px; }
.inner-section .textAreaPanel table { width: 100%; border: 1px solid var(--bright-grey); }
.inner-section .textAreaPanel table thead tr th:first-child,
.inner-section .textAreaPanel table tbody tr td:first-child{ text-align: left; }

.inner-section .textAreaPanel table thead tr th,
.inner-section .textAreaPanel table tbody tr td {
    padding: 5px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}
.inner-section .textAreaPanel ul li:before {
    content: "\2022";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}
.inner-section .textAreaPanel ol{ list-style: number; }
.inner-section .textAreaPanel ol li{margin-bottom: 8px; color: var(--black-color);}
.inner-section .textAreaPanel ol li::marker{ font-size: 16px; color: var(--primary-color);}
.inner-section .textAreaPanel h3, .inner-section .textAreaPanel h4{
    font-weight: 500;
    margin: 0;
    padding: 0 0 13px;
    color: #000d76;
}
.inner-section h3 { font-size: 22px; }
.inner-section h4 { font-size: 20px; }
.inner-section h5 { font-size: 18px; }
.inner-section .img_area{ margin-top: 15px; }
.inner-section .img_area .cgi_img {
    height: 100%;
    overflow: hidden;
    border: 1px solid #cecece;
    padding: 10px;
    border-radius: 10px;
}
.inner-section .img_area .cgi_img img{width: 100%;object-fit: cover;}
.inner-section .img_area h3{ font-size: 19px; text-align: center; font-weight: 600; padding: 20px 0px; }
.inner-section .areaPanelBox{ padding: 20px 30px 30px; border-radius: 0 0 20px 20px; }
.search-list {padding-top: 30px;}
.search-list-item {
    padding: 10px;
    border: 1px solid var(--bright-grey);
    background-color: var(--sky-color);
    margin-bottom: 10px;
    border-radius: 10px;
}
.search-list-item a {
    font-weight: bold;
    color: var(--dark-navy);
    font-size: var(--fs-18);
}
.sidebar-page-title {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
    font-size: 26px;
    color: var(--black-color);
    font-weight: 600;
}
.sidebar-menu { list-style: none; }
.sidebar-menu li.sidebar-menu-item { border-bottom: 1px solid var(--bright-grey); }
.sidebar-menu-item .sidebar-menu-link {
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0 8px 30px;
    background: url(../images/bullet-list-icon.png) 15px 1em no-repeat;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.consulMembersBox .headingText {
    text-align: left;
    font-weight: 600;
    padding: 1rem;
    background-color: #D6E6ED;
    font-size: 22px;
}
.areaPanelBox h6 { font-size: clamp(24px, 1.5vw, 30px); margin-bottom: 0px; font-weight: 600; }
.areaPanelBox h6 span { display: block; font-size: 18px; padding-top: 7px; font-weight: 400; }
.areaPanelBox .brd-right{ border-right: 2px dotted #a4c3d1 }
.areaPanelBox .brd-bottom{border-bottom: 2px dotted #a4c3d1;}
/****** content-section css end ******/

/*** Modular search css start ***/
.moduleSearch {
    display: flex;
    gap: 20px;
    background-color: #f3f3f3;
    border-bottom: 1px solid var(--bright-grey);
    padding: 20px;
    list-style: none;
    align-items: center;
}
.moduleSearch select {
    padding: 6px 5px;
    border: 1px solid #cacfe1;
    font-size: 14px;
    border-radius: 0;
    width: 100%;
}
.goButton {
    font-size: 13px;
    border: 0 !important;
    cursor: pointer;
    background-color: #dbdbdb;
    padding: 7px 10px;
    border-radius: 5px;
}
.moduleSearch input[type="submit"]{
    line-height: 20px;
    padding: 0 10px;
    display: inline-block;
    text-decoration: none;
    border: 0 none;
    margin: 0;
    background-color: var(--grey-light);
    outline: 0 none;
}
/* Modular search css end */

/*** Gallery lists css start ***/
.gallery-items { padding-top: 15px; padding-bottom: 15px; }
.gallery-item:first-child{ padding-top: 0px; }
.gallery-item { display: flex; border-bottom: 1px solid var(--bright-grey); padding: 15px 0; }
.gallery-item .feature_img { width: 160px; height: 100px; overflow: hidden; flex-shrink: 0; }
.gallery-item .feature_img img { width: 160px; height: 100px; object-fit: cover; }
.gallery_info { margin-left: 15px; }
.posted_date { color: #515151; font-size: 14px; }
.post-title { font-size: 24px; color: var(--primary-color); font-weight: 600; }
.gallery-section .gallery .g_box { margin-bottom: 0px; }
/*** Galllery css end ***/
/** posts common lists start **/
.pages-content .content-post-list{ padding: 5px 0; border-bottom: 1px solid var(--bright-grey); }
/** posts common lists start **/
/* press release start */
.pressReleases .newsBox{ border-bottom: 1px dotted #cecece; padding-bottom: 20px; margin-bottom: 10px; }
.pressReleases .newsBox a { font-size: var(--fs-18); color: #174e99; font-weight: 500; }
.pressReleases .newsBox span { display: block; font-size: var(--fs-16); color: #70708d; }
/* end press release */
/** registration forms css start **/
button, select, textarea{ color: var(--davy-grey); font-size: 75%; line-height: 1.5; }
label { font-size: 1rem; }
input{ font-size: 100%; }
input[type="text"], input[type="email"], 
input[type="tel"], input[type="number"], 
input[type="url"], input[type="password"],
input[type="date"], input[type="search"], select, textarea {
    border: 1px solid var(--bright-grey);
    width: 100%;
    padding: 5px 10px;
}
textarea{ height: auto; }
.registration-form { padding: 15px; border: 6px solid var(--bright-grey); }
.registration-form tr td { border: 0px !important; }
/** registration forms css end **/

/** pagination css start **/
.pagination {
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination a, 
.pagination .current { padding: 0.4rem 0.625rem; line-height: normal; }
.pagination .current { background-color: var(--primary-color); color: var(--white-color); }
/** pagination css end **/

/*** search page css start ***/
.advSearchNav { border-bottom: 1px solid var(--bright-grey); }
.advSearchNav li { list-style: outside none none; display: inline-block; }
.advSearchNav li.active { border-bottom: 3px solid var(--primary-color); }
.pages-content .advSearchNav li:before,
.pages-content  #searchResultListing li:before { display: none; }
.advSearchNav li a { padding: .375rem .75rem; display: inline-block; }
.advSearchNav li.active a { color: var(--primary-color); }
.pages-content  #searchResultListing{ padding: 20px 0; }
/*** search page css end ***/

/*** sitemap css start ***/
.sitemap li > a, 
.sitemap .menuSubUl > li > a {
    padding: 0.275rem 0.475rem;
    border: 1px solid var(--dark-navy);
    display: block;
    margin-bottom: 1rem;
    font-family: var(--primary-font);
    transition: ease .3s all;
}
.sitemap li > a:hover{
    background-color: var(--dark-navy);
    color: var(--white-color);
}
.menuSubUl > li > a,
.sitemap li a:has( + .menuSubUl) {
    position: relative;
}
.sitemap li a:has( + .menuSubUl):before,
.sitemap li a:has( + .menuSubUl):after,
.menuSubUl > li > a:before, 
.menuSubUl > li:not(:last-child) a:after,
.sitemap li a:has( + .menuSubUl)  a:has( + .menuSubUl) > a:before, 
.sitemap li a:has( + .menuSubUl) a:has( + .menuSubUl) > a:after{
    content: '';
    position: absolute;
    display: block;
    background-color: var(--yellow-color);
}
.sitemap li a:has( + .menuSubUl):before {
    width: 15px;
    height: 2px;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}
.sitemap li a:has( + .menuSubUl):after {
    width: 2px;
    height: 57px;
    left: -15px;
    top: 19px;
}
.menuSubUl > li > a:before{
    width: 30px;
    height: 2px;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.menuSubUl > li:not(:last-child) a:after {
    width: 2px;
    height: 57px;
    left: -30px;
    top: 17px;
}
/*** sitemap css end ***/
/* footer css start */
.footer { background-color: var(--primary-color); padding: 60px 0px 40px; }
.footer-logo .navbar-brand img { filter: brightness(0) invert(1); }
.footer-logo .navbar-brand { color: var(--white-color); font-size: var(--fs-20); }
.theme-footer .footer-title {font-size: var(--fs-20); color: var(--white-color);}
.social-items .social-item{display: inline-block;}
.social-items .social-item:not(:last-child){margin-right: 10px}
.social-items .social-item a {
    width: 30px;
    height: 30px;
    display: block;
    line-height: 27px;
    text-align: center;
    background-color: var(--white-color);
    border-radius: 50%;
}
.footer-links .footer-link{ padding: 2px 5px 2px 16px; position: relative; }
.footer-links .footer-link p{color: var(--white-color);}
.footer-links .footer-link:before{
    content: '\f054';
    position: absolute;
    font-size: 12px;
    top: 8px;
    left: 0px;
    margin-right: -2px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--orange-color);
    display: block;
}
.footer-links .footer-link a{ font-size: var(--fs-14); color: var(--white-color); line-height: 16px; }
.footer-links .footer-link a:hover{ color: var(--orange-color); transition: ease .3s all; }
.theme-footer p{ font-size: var(--fs-13); color: var(--white-color); }
.theme-footer p a{ color: var(--white-color); }
.theme-footer .copyright { background-color: #034683; }
.site_visitors {margin-bottom: 15px;}
.site_visitors .visitors {
    position: relative;
    margin: auto;
    max-width: 310px;
    background-color: var(--orange-color);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white-color);
    overflow: hidden;
}
.site_visitors .visitors .total-count {
    display: inline-block;
    text-align: center;
    width: 138px;
    padding: 12px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--white-color);
    border-radius: 50px;
    color: var(--black-color);
    font-weight: 700;
}
/* footer css end */