:root{
    --navy:#0d1b3e;
    --indigo:#1a3272;
    --gold:#f0a500;
    --teal:#1a7f7a;
    --light:#f4f6fb;
    --border:#dee2e6;
}

html,
body{
    height:100%;
    margin:0;
}

body{
    display:flex;
    flex-direction:column;
    min-height:100vh;
    font-family:Arial, sans-serif;
	background:#eeeeee;
}

.page-wrapper{
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

.content-area{
    flex:1;
}
.page-box{
    padding:30px 15px;
}

/* =========================
   HEADER
========================= */
/*
.topbar{
    background:#2e2b67;
    color:#fff;
    font-size:13px;
    padding:8px 0;
}

.topbar{
    background-color:#2e2b67;
    color:#fff;
    font-size:13px;
    padding:8px 0;
	
    background-image:url('../images/bc_corner_1.png');
    background-repeat:no-repeat;
    background-position:right top;

    
    background-size:auto 100%;
}
*/
.topbar{
    background:#2e2b67;
    color:#fff;
    font-size:13px;
    padding:8px 30px 8px 0;   /* top right bottom left */

    background-image:url('../images/bc_corner_1.png');
    background-repeat:no-repeat;
    background-position:right top;
    background-size:auto 100%;
}

.navbar{
    box-shadow:0 2px 8px rgba(0,0,0,.15);
	/*border-bottom:3px solid #f0a500;*/
}

.navbar-brand{
    font-weight:600;
}


/* =========================
   HERO
========================= */

.hero{
    height:420px;
    background:url('../images/bg1.jpg') center/cover;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(13,27,62,.65);
	border-bottom:3px solid #f0a500;
}

.hero-content{
    position:relative;
    z-index:2;
    /*padding-top:120px;*/
	padding-top:30px;
	padding-bottom:100px;
	
}
#bannerImage {
	width:50%;
}

/* =========================
   NAVBAR
========================= */

.main-navbar{
    background:var(--navy);
    padding:12px 0;
}


/* Navbar Logo */

.brand-logo{
    height:42px;
    width:auto;
    object-fit:contain;
}

.brand-logo{
    height:50px;
}
.navbar-brand{
    font-size:1.2rem;
    line-height:1.1;
}

.navbar-nav .nav-link.active{
    color:#f0a500 !important;
    font-weight:600;
}

.dropdown-item.active-menu{
    background:#f0a500 !important;
    color:#fff !important;
}

/* Mobile */

@media(max-width:991px){
    .brand-logo{
        height:36px;
    }
}

.navbar-nav .nav-link{
    color:#fff;
    padding:10px 14px;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:var(--gold);
}

.navbar-toggler{
    color:#fff;
    font-size:24px;
}

/* Mobile App Style Menu */

@media (max-width:991px){

    .navbar-collapse{
        background:var(--navy);
        margin-top:12px;
        padding:15px;
        border-radius:12px;
        box-shadow:0 8px 20px rgba(0,0,0,.25);
    }

    .navbar-nav{
        align-items:stretch !important;
    }

    .navbar-nav .nav-link{
        border-bottom:1px solid rgba(255,255,255,.08);
        padding:14px 10px;
    }

    .dropdown-menu{
        background:#142956;
        border:none;
        margin-left:10px;
    }

    .dropdown-item{
        color:#fff;
        padding:10px 15px;
    }

    .dropdown-item:hover{
        background:rgba(255,255,255,.08);
        color:var(--gold);
    }

    .topbar{
        text-align:center;
        font-size:12px;
    }
}
/* =========================
   COUNTER
========================= */

.counter-wrapper{
    margin-top:-45px;
    position:relative;
    z-index:5;
}

.counter-box{
    background:#fff;
    border-radius:10px;
    padding:15px;
    box-shadow:0 4px 12px rgba(0,0,0,.12);
}

#counter-box-title{
    text-align:center;
    color:var(--indigo);
    margin-bottom:25px;
    font-weight:600;
	border-bottom:3px solid #f0a500;
	padding-bottom:5px;
}

.stat{
    border-right:1px solid #eee;
}

.stat:last-child{
    border-right:none;
}

.stat i{
    color:#f0a500;
    font-size:28px;
    margin-bottom:8px;
}

/* =========================
   STATS + Gov. ORDER
========================= */

.stats-news {
	background:
	linear-gradient(
		to bottom,
		rgba(255,255,255,1) 0%,
		rgba(250,250,250,0.95) 50%,
		rgba(245,245,245,0.85) 100%
	);	
}
.dark-panel{
    background:#2e2b67;
    color:#fff;
    padding:20px;
    min-height:320px;
    border-radius:6px;
}
/*
.chart-area{
    height:230px;
    border:1px dashed rgba(255,255,255,.3);
    display:flex;
    justify-content:center;
    align-items:center;
}*/

.chart-area{
    height:320px;
    position:relative;
    margin-top:15px;
}

.news-panel{
    background:#fff;
    padding:20px;
    border:1px solid #ddd;
    min-height:260px;
    border-radius:6px;
}

.news-panel ul{
    list-style:none;
    padding:0;
    margin:0;
}

.news-panel li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.section-title{
    text-align:center;
    color:var(--indigo);
    margin-bottom:25px;
    font-weight:600;

}
.section-title span {
	color:var(--indigo);
	border-bottom:3px solid #f0a500;
}


#ordersandcirculas{
    height:260px;
    overflow-y:auto;
}
#ordersandcirculas::-webkit-scrollbar{
    width:8px;
}

#ordersandcirculas::-webkit-scrollbar-thumb{
    background:#999;
    border-radius:10px;
}

#ordersandcirculas::-webkit-scrollbar-track{
    background:#f1f1f1;
}

/*====Ordersandcirculas Page*/
#ordersandcirculasP{
    height:800px;
    overflow-y:auto;
}
#ordersandcirculasP::-webkit-scrollbar{
    width:8px;
}

#ordersandcirculasP::-webkit-scrollbar-thumb{
    background:#999;
    border-radius:10px;
}

#ordersandcirculasP::-webkit-scrollbar-track{
    background:#f1f1f1;
}

#ordersandcirculasP {
    background:#fff;
    padding:20px;
    border:1px solid #ddd;
    min-height:260px;
    border-radius:6px;
}

#ordersandcirculasP ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

#ordersandcirculasP li{
    position: relative;
    padding: 12px 0 12px 25px;
    border-bottom: 1px solid #eee;
}

#ordersandcirculasP li::before{
    content: "➤";
    position: absolute;
    left: 0;
    top: 12px;
    color: #0d6efd; /* Bootstrap primary blue */
    font-size: 14px;
    font-weight: bold;
}

/* =========================
   SERVICES SLIDER
========================= */

.services{
    background:#fff;
    position:relative;
	
	background-image:url('../images/transport2.png');
    background-repeat:no-repeat;
    background-position:center center;
    background-size:100% auto;   /* adjust size */
}

.services-wrapper{
    position:relative;
    overflow:hidden;
    padding:10px 70px;
}

.services-track{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
	padding:10px;
}

.services-track::-webkit-scrollbar{
    display:none;
}
/*
.service-card{
    min-width:320px;
    background:#fff;
    padding:20px;
    border:1px solid #ddd;
    border-radius:8px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    flex:0 0 auto;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(0,0,0,.12);
}*/

.service-card i{
    font-size:28px;
    color:var(--indigo);
    margin-bottom:12px;
}

/* Navigation Buttons */

.service-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    /*background:var(--indigo);*/
	background:#FFFFFF;
    color:var(--indigo);
    z-index:20;
    box-shadow:0 4px 12px rgba(0,0,0,.22);
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-prev{
    left:5px;
    top:calc(50% + 5px);
}

.service-next{
    right:5px;
    top:calc(50% + 5px);
}

.service-nav:hover{
    background:var(--gold);
    transform:translateY(-50%) scale(1.08);
}

.service-card {
	min-width:320px;
    padding: 20px;
    border-radius: 14px;
    background: #fff;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 28px;
    color: #f0a500;
    margin-bottom: 10px;
}

.service-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
	/*color:#1a7f7a;*/
}

/* Attractive CTA button */
.service-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    margin-top: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0a500, #ffbf33);
    color: #1a1a1a !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.service-link-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #d98f00, #f0a500);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.service-link-btn i {
    font-size: 12px;
    color: #1a1a1a;
}


/* =========================
   LATEST SECTION
========================= */
.latest-section{
    background:#2e2b67;
    color:#fff;
}

.latest-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:50px;
}

/* Main content area */
#latestContent{
    position:relative;
    padding:20px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    overflow:hidden;
}

/* Objectives container */
.dept-objectives{
    position:relative;
    overflow:hidden;
    min-height:430px;      /* adjust if section height changes */
    padding-bottom:140px;  /* reserve space for image */
}

/* Text stays above image */
#latestContent h3,
.subtitle,
.objective-list{
    position:relative;
    z-index:2;
}

/* Bullet list */
.objective-list{
    list-style:none !important;
    padding-left:0;
    margin:0;
}

.objective-list li{
    list-style:none !important;
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
}

/* Bottom transport illustration wrapper */
.transport-bg-wrap{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    z-index:1;
    text-align:center;
    pointer-events:none;
}

/* Transport image */
.transport-bg{
    width:100%;
    height:auto;
    display:block;
    opacity:0.5;      /* watermark effect */
}

/* About Read More Button */
.read-more-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    width:fit-content;
    padding:10px 18px;
    margin:10px 0 25px;
    border-radius:6px;
    background:linear-gradient(135deg,#f0a500,#ffbf33);
    color:#1a1a1a !important;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:all .3s ease;
    box-shadow:0 4px 10px rgba(0,0,0,.15);
}

.read-more-btn:hover{
    transform:translateY(-2px);
    background:linear-gradient(135deg,#d98f00,#f0a500);
    box-shadow:0 6px 14px rgba(0,0,0,.22);
    color:#000 !important;
}

.read-more-btn i{
    font-size:12px;
    transition:.3s;
}

.read-more-btn:hover i{
    transform:translateX(4px);
}


/* =========================
   ROAD SIGNS GALLERY
========================= */

.road-signs{
	/*
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,1) 0%,
            rgba(250,250,250,0.95) 50%,
            rgba(245,245,245,0.85) 100%
        );
	*/	
	

	background-image:url('../images/transport1.png');
    background-repeat:no-repeat;
    background-position:center center;
    background-size:100% auto;   		
}

.road-gallery{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
	
}

.road-img-box{
    position:relative;
    width:360px;
    overflow:hidden;
    text-decoration:none;
    border-radius:4px;

    /* transparent */
    background:transparent;

    /* smooth hover animation */
    transition:
        transform .35s ease,
        box-shadow .35s ease;

    /* remove any default shadow */
    box-shadow:none;
}

.road-img-box img{
    width:100%;
    height:450px;
    object-fit:cover;
    display:block;
    background:transparent;

    transition:transform .45s ease;
}

/* Raised Hover Effect */
.road-img-box:hover{
    transform:translateY(-10px) scale(1.03);

    /* soft floating shadow */
    box-shadow:
        0 12px 28px rgba(0,0,0,0.22),
        0 6px 12px rgba(0,0,0,0.15);

    z-index:10;
}

.road-img-box:hover img{
    transform:scale(1.05);
}

/* Mobile */
@media(max-width:768px){
    .road-img-box{
        width:100%;
    }

    .road-img-box img{
        height:auto;
    }
}

/* =========================
   MAP
========================= */

.map iframe{
    width:100%;
    height:420px;
    border:0;
}

/* =========================
   FOOTER
========================= */

.footer-main{
    /*background:#111827;*/
	background:linear-gradient(135deg,#111827,#0d1b3e);
    color:#fff;
    padding:50px 0 20px;
	margin-top:auto;
}

.footer-main h5{
    margin-bottom:15px;
}

.footer-main ul li{
    margin-bottom:8px;
}

.footer-bottom{
    background:#0b1220;
    color:#ccc;
    padding:10px 0;
    font-size:13px;
}

@media(max-width:768px){
    .footer-bottom .d-flex{
        flex-direction:column;
        text-align:center;
        gap:5px;
    }
}

@media(max-width:768px){

    .partners-track{
        gap:40px;
    }

    .partner-logo{
        height:45px;
    }

    .footer-main{
        text-align:center;
    }

    .footer-main .text-md-end{
        text-align:center !important;
    }
}
/* =========================
   FOOTER PARTNERS
========================= */

.footer-partners{
    background:#111827;
    padding:20px 0;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.partners-wrapper{
    overflow:hidden;
    position:relative;
    width:100%;
}

.partners-track{
    display:flex;
    align-items:center;
    gap:70px;
    width:max-content;
    animation:partnerScroll 25s linear infinite;
}

.partners-wrapper:hover .partners-track{
    animation-play-state:paused;
}

.partner-item{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.partner-logo{
    height:60px;
    width:auto;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.85;
    transition:all .3s ease;
}

.partner-logo:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}

@keyframes partnerScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* =========================
   GALLERY
========================= */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}
.gallery-nav.left { left: 0; }
.gallery-nav.right { right: 0; }
.modal-img-container {
    display: inline-block;
    position: relative;
    text-align: center;
    max-width: 100%;  
}
#modalImage {
    display: block;
    width: 100%;      
    height: auto;     
}
.gallery-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    color: #000;
    padding: 12px 20px;
    box-sizing: border-box;
    font-size: 1rem;
    text-align: center;
}
.gallery-thumb {
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}


/* =========================
   GENERAL UI ELEMENTS ROUNDED
========================= */
.card-header-extended {
  border-top-left-radius: 2px !important;
  border-top-right-radius: 2px !important;
}
.websphere-bg-custome {
  background-color: #f8f9fa;
  border-bottom: 3px solid #f0a500 !important;
  color: #000;
}

.nav-item,
.dropdown,
.form-control,
.form-select,
.btn,
.modal-content,
.dropdown-menu,
.nav-tabs .nav-link,
.input-group-text,
.alert,
.list-group-item,
.border-radius-extended,
.card,
.list-group,
.accordion-item {
  border-radius: 2px !important;
}

.scrollable-div {
     padding: 10px;
     margin: 0 auto;		              
     width:100%;
  	overflow-x:auto; 
  
     /* 
 	border: 1px solid #ccc;
    height: 800px; 	      
    overflow: auto; 	       
    */	       
 }	
.datatable {
  font-family: Arial;
  font-size: 10pt;
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
  margin: 10px 0 15px;
  text-align: left;
}
.datatable thead tr th,
.datatable tfoot tr td {
  border: 1px solid #ddd;
  padding: 10px;
}
.datatable thead tr:first-child {
  background-color: #eee;
}
.datatable thead tr{
    background-color: #eee;			
} 
.datatable tbody td {
  color: #3D3D3D;
  padding: 8px;
  background-color: #f9f9f9;
  vertical-align: top;
  border: 1px solid #ddd;
}
.datatable tbody tr.odd td {
  background-color: #FFF;
}
.datatable tbody tr:hover td {
  color: #9e0303;
  background-color: #eee;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; 
}	

#entryResultTable {
  table-layout: fixed;
  width: 100%;
  min-width: 600px;
}

#entryResultTable th {
  width: auto; 
}	

/*#entryResultTable th:nth-child(1) {*/
#entryResultTable th:first-child {
  width: 5%;
}

#entryResultTable th:last-child {
  width: 10%;
}

@media (max-width: 768px) {
  .table-responsive {
    overflow-x: auto;
  }

  #entryResultTable {
    min-width: 600px;
  }
}
.bar {
	color:#f0a500;
}
/*==========Accordion=========*/
/* Accordion wrapper */
.accordion {
  border: none;
}

/* Each accordion item */
.accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 2px;
  overflow: hidden;
}

/* Accordion header button */
.accordion-button {
  border-radius: 0px !important;
  background-color: #f8f9fa !important;
  color: #000 !important;
  border-bottom: 3px solid #f0a500 !important;
  font-weight: 500;
}

/* When the button is not collapsed (active/open) */
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa !important;
  box-shadow: none !important;
}

/* Remove default borders between accordion items */
.accordion-button:focus {
  box-shadow: none;
}

/* Accordion body (content area) */
.accordion-body {
  background-color: #ffffff;
  color: #000;
  border: 1px solid #eee;
  border-top: none;
}

/*==========Tab=========*/
.nav-tabs .nav-link {
  color: black !important;
  border-radius: 0px; 
  
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}
.tab-content-bordered{
  border-top: 3px solid  #f0a500 !important;
  margin-top: -1px !important;
 }

/* Active tab */
.nav-tabs .nav-link.active {
  background-color: #f0a500 !important; 
  color: white !important;
  font-weight: bold;
}
/* Non Active tab */
.nav-tabs-nonactive {
    color: #f0a500; 
}



/*==========Scroll Top=========*/
#scrollTopBtn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#1b3f73;
    color:#fff;
    cursor:pointer;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    box-shadow:0 4px 12px rgba(0,0,0,.3);
    transition:.3s;
}

#scrollTopBtn:hover{
    transform:translateY(-3px);
}

/*==========accessibility Tool=========*/

#accessibilityToggle{
    color:#fff;
    border:1px solid #fff;
    animation:accessBlink 1.2s infinite alternate;
    transition:.3s;
}

#accessibilityToggle:hover{
    animation:none;
    background:#f0a500;
    border-color:#f0a500;
    color:#fff;
}
/* Flowing glow */
@keyframes accessBlink{
    0%{
        color:#fff;
        border-color:#fff;
        box-shadow:0 0 4px rgba(255,255,255,.4);
    }
    100%{
        color:#f0a500;
        border-color:#f0a500;
        box-shadow:0 0 10px rgba(240,165,0,.8);
    }
}
/*

#accessibilityToggle{
    color:#fff;
    border:1px solid #fff;
    background:transparent;
    transition:all .35s ease;
    
    animation:accessGlow 1.8s infinite ease-in-out;
}


#accessibilityToggle:hover{
    animation:none;
    background:#f0a500;
    border-color:#f0a500;
    color:#fff;

    box-shadow:
        0 0 10px rgba(240,165,0,.6),
        0 0 20px rgba(240,165,0,.45),
        0 0 35px rgba(240,165,0,.3);
}


@keyframes accessGlow{

    0%{
        color:#fff;
        border-color:#fff;
        box-shadow:
            0 0 4px rgba(255,255,255,.3),
            0 0 8px rgba(255,255,255,.15);
        transform:scale(1);
    }

    50%{
        color:#f0a500;
        border-color:#f0a500;
        box-shadow:
            0 0 10px rgba(240,165,0,.7),
            0 0 22px rgba(240,165,0,.55),
            0 0 40px rgba(240,165,0,.35);
        transform:scale(1.04);
    }

    100%{
        color:#fff;
        border-color:#fff;
        box-shadow:
            0 0 4px rgba(255,255,255,.3),
            0 0 8px rgba(255,255,255,.15);
        transform:scale(1);
    }
}
*/

/* Accessibility Starts */
#accessibilityPanel{
	position:absolute;
	right:20px;
	top:60px;
	width:340px;
	display:none;
	z-index:9999;
}
.high-contrast{
	background:black !important;
	color:white !important;
}
.high-contrast a{
	color:yellow !important;
}
.highlight-links a{
	background:yellow;
	color:black !important;
}
.invert{
	filter:invert(1);
}
.saturation{
	filter:grayscale(100%);
}
.text-spacing{
	letter-spacing:2px;
	word-spacing:4px;
}
.line-height{
	line-height:2;
}
.big-cursor{
	cursor: url('../images/big-cursor.cur'), auto;
}
.hide-images img{
	display:none !important;
}

#readingGuide{
	position:fixed;
	left:0;
	width:100%;
	height:40px;
	background:rgba(255,255,0,0.25);
	pointer-events:none;
	display:none;
	z-index:9999;
}

#screenMagnifier{
	position:fixed;
	width:180px;
	height:180px;
	border:3px solid #333;
	border-radius:50%;
	pointer-events:none;
	display:none;
	z-index:9999;
	overflow:hidden;
}
#screenMagnifier.active{
	display:block;
}

/* Accessibility Ends */



/*==========Sitemap Starts=========*/

/* Sitemap List */
.custom-list{
    list-style:none;
    padding-left:0;
    margin:0;
}

.custom-list li{
    position:relative;
    padding:8px 0 8px 28px;
    border-bottom:1px solid #f1f1f1;
    transition:.3s;
}

/* Custom Bullet */
.custom-list li::before{
    content:"➜";
    position:absolute;
    left:0;
    top:8px;
    color:#f0a500;
    font-size:14px;
    font-weight:bold;
    transition:.3s;
}

/* Links */
.custom-list li a{
    color:#333;
    text-decoration:none;
    transition:.3s;
    display:inline-block;
}

/* Hover Effect */
.custom-list li:hover{
    padding-left:34px;
    background:#fafafa;
}

.custom-list li:hover::before{
    color:#1a3272;
    transform:translateX(4px);
}

.custom-list li:hover a{
    color:#1a3272;
}

/* Nested List */
.custom-list .custom-list{
    margin-top:6px;
    margin-left:12px;
    border-left:2px solid #f0a500;
    padding-left:12px;
}

.custom-list .custom-list li{
    border-bottom:none;
    padding:6px 0 6px 24px;
}

/* Nested Bullet */
.custom-list .custom-list li::before{
    content:"•";
    color:#1a7f7a;
    font-size:16px;
}

/*==========Sitemap Ends=========*/
