 /* Global override for all container classes */
 
 @media (max-width: 991px) {
  /* When mobile nav is shown, fix it in place */
  .mobile-nav.collapse.show {
    position: fixed;
    top: 185px; /* Adjust this value if needed to sit below your mobile headers */
    left: 0;
    width: 100%;
    background-color: #fff; /* Ensure the background covers underlying content */
    z-index: 1100; /* A high z-index so it sits above the page content */
    overflow-y: auto; /* Allow scrolling within the mobile menu if needed */
  }
}

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    width: 95% !important;
    max-width: 95% !important;
  }
/*Common*/
a {color: #023b30;
    text-decoration: none;
}

a:hover {
            transition: border-bottom-color .3s;
    border-bottom: 2px solid #ff9900;
        }

/* Base button styles */
.btn-no-outline {
    color: #0056b3; /* Initial text color */
    transition: background-color .3s; /* Smooth transition */
    padding: 10px; /* Button padding */
    display: inline-flex; /* To align icon and text */
    align-items: center; /* Center vertically */
    position: relative; /* For positioning the pseudo-element */
    text-decoration: none; /* Remove default underline from link */
}

.btn-no-outline:hover {
    border: none; color:#023b30
}

/* Pseudo-element for the FontAwesome icon */
.btn-no-outline::before {
    content: "\f105"; /* FontAwesome Unicode for the desired icon */
    font-family: "Font Awesome 6 Pro"; /* Specify the FontAwesome font family */
    font-weight: 900; /* Required for solid icons */
    background-color: #0073e6; /* Background color of the icon */
    color: #fbfbfb; /* Fill color for the icon */
    height: 40px; /* Icon height */
    width: 40px; /* Icon width */
    margin-right: 10px; /* Space between icon and text */
    border-radius: 2px; /* Optional: rounded corners for the icon */
    display: inline-flex; /* Make it behave like a block for size */
    justify-content: center; /* Center the icon horizontally */
    align-items: center; /* Center the icon vertically */
    transition: background-color .3s, color .3s; /* Smooth transition */
}

/* Hover effect for the icon */
.btn-no-outline:hover::before {
    background-color: transparent; /* Icon background color on hover */
    border: 2px solid #ff9900; /* Optional: border when hovering */
    color: #023b30; /* Change icon color when hovering */
}

/* Text effect on hover */
.btn-no-outline span {
    position: relative; /* Required for the pseudo-element */
    transition: color .3s; /* Smooth transition for text color */
}

.btn-no-outline:hover span {
    
}

/* Underline effect */
.btn-no-outline:hover span::after {
    content: ""; /* Add pseudo-element for underline */
    position: absolute; /* Position it relative to the span */
    left: 0; /* Align to the left */
    bottom: 0; /* Align to the bottom */
    height: 2px; /* Thickness of the underline */
    width: 100%; /* Full width of the text */
    background-color: #ff9900; /* Color of the underline */
    transition: width .3s ease; /* Smooth transition for width */
}

/* To avoid jumping effect */
.btn-no-outline span::after {
    content: ""; /* Add a pseudo-element */
    position: absolute; /* Position it relative to the span */
    left: 0; /* Align to the left */
    bottom: 0; /* Align to the bottom */
    height: 2px; /* Thickness of the underline */
    width: 0; /* Initially hidden */
    background-color: #ff9900; /* Color of the underline */
    transition: width .3s ease; /* Smooth transition for width */
}


.btn-outline {
    padding: 10px 20px;
    border: 2px solid transparent; /* Default border is transparent */
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.1s;
    background-color: transparent; /* Background is transparent for outline buttons */
}

/* Outline Primary button styles */
.btn-outline-primary {
    border-color: #023b30; /* Border color */
    color: #023b30; /* Text color */
}

.btn-outline-primary:hover {
    background-color: #023b30; /* Background color on hover */
    color: white; /* Text color on hover */
}

.btn-outline-primary:active {
    background-color: #0056b3; /* Background color when active */
    color: white; /* Text color when active */
    transform: scale(0.95); /* Slightly shrink on active */
}

/* Outline Secondary button styles */
.btn-outline-secondary {
    border-color: #6c757d; /* Border color */
    color: #6c757d; /* Text color */
}

.btn-outline-secondary:hover {
    background-color: #6c757d; /* Background color on hover */
    color: white; /* Text color on hover */
}

.btn-outline-secondary:active {
    background-color: #5a6268; /* Background color when active */
    color: white; /* Text color when active */
    transform: scale(0.95); /* Slightly shrink on active */
}

/* Outline Danger button styles */
.btn-outline-danger {
    border-color: #dc3545; /* Border color */
    color: #dc3545; /* Text color */
}

.btn-outline-danger:hover {
    background-color: #dc3545; /* Background color on hover */
    color: white; /* Text color on hover */
}

.btn-outline-danger:active {
    background-color: #c82333; /* Background color when active */
    color: white; /* Text color when active */
    transform: scale(0.95); /* Slightly shrink on active */
}

    /* Base button styles */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    
}

/* Primary button styles */
.btn-primary {
    background-color: #023b30; /* Normal state color */
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3; /* Hover state color */
    border:none;
}

.btn-primary:active {
    background-color: #004085; /* Active state color */
    border:0;
}

/* Secondary button styles */
.btn-secondary {
    background-color: #6c757d; /* Normal state color */
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268; /* Hover state color */
}

.btn-secondary:active {
    background-color: #343a40; /* Active state color */
    transform: scale(0.95); /* Slightly shrink on active */
}

/* Danger button styles */
.btn-danger {
    background-color: #dc3545; /* Normal state color */
    color: white;
}

.btn-danger:hover {
    background-color: #c82333; /* Hover state color */
}

.btn-danger:active {
    background-color: #bd2130; /* Active state color */
    transform: scale(0.95); /* Slightly shrink on active */
}



/* Top Bar */
        .top-bar {
            background-color: #333;
            color: #fff;
            padding: 5px 0;
            position: relative;
            z-index: 1001;
            /* border-bottom: 1px dashed #fff; */
        }

        .top-bar .nav {
            justify-content: flex-end;
        }

        .top-bar .nav-link {
            color: #fff;
            padding: 0 10px;
            font-size: 14px;
            text-decoration: none;
        }

        .top-bar .nav-link:hover {
            color: #fff698;
        }

.logo-overlay {
            position: absolute;
            top: 0px;
            /* left: 15px; */
            z-index: 1002;
        }

        .logo-overlay img {
            height: 164px;
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        /* Top Header */
        .header-top {
            background-color: #023b30;
            color: #fff;
            padding: 10px 0;
        }

        .header-top .logo {
            display: flex;
            align-items: center;
        }

        .header-top img {
            height: 113px;
            margin-right: 10px;
        }

        .header-top .title {
            font-size: 24px;
            font-weight: bold;
        }

        .header-top .subtitle {
            font-size: 14px;
        }

        .header-top .impact-details {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .header-top .impact-details div {
            margin-left: 35px;
            text-align: center;
        }

        .header-top .impact-details span {
            display: block;
            font-size: 18px;
            font-weight: bold;
        }



        /* Sticky Navbar */
        .header-sticky {
            position: sticky;
            top: 78px;
            z-index: 1000;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid #023b30;
        }

        .header-sticky .navbar {
            padding: 0;
        }

        .header-sticky .navbar-nav .nav-link {
            color: #333;
    /* font-weight: bold; */
    padding: 16px 15px;
    transition: color 0.3s;
    margin: 0 15px; font-size: 15px;
        }

        .header-sticky .navbar-nav .nav-link:hover {
            color: #023b30; border:0;
        }

        /* Mobile Header */
        .mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #023b30;
            color: white;
	position: sticky;
    top: 0;
    z-index: 1000;
            }
 .sub-mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #023b30;
background: linear-gradient(to right, #f45d0d 50%, white 0%);
position: sticky;
    top: 107px;
    z-index: 1000;

            
        }

.mobile-nav {
    box-shadow: 0px 8px 4px rgb(0 0 0 / 14%);
}
.mobile-nav a {
    padding: 10px 15px;
}
.mobile-nav a:hover {
    border:0;
}

        .mobile-header img {
            height: 90px;
        }

        .sub-mobile-header button {
            font-size: 21px;
    background: #f45d0d;
    border: none;
    color: white;
    display: flex;
padding: 4px;
        }

       /* Updated Search Bar */
        .search-bar {
            display: none;
            background-color: #fff;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }

        .search-bar input {
            width: 100%;
            padding: 10px 40px; /* Add padding for the icon */
            border: 1px solid #ddd;
            border-radius: 0px !important; /* Rounded corners */
            position: relative; /* Position relative for the icon */
            outline: none; /* Remove default outline */
            box-shadow: none; /* Remove default box-shadow */
        }
.form-control{border-radius: 0px !important; /* Rounded corners */
padding: .65rem .75rem;}

        .search-bar input::placeholder {
            color: #999; /* Placeholder color */
        }

        .search-bar .search-icon {
            position: absolute;
            left: 10px; /* Position the icon */
            top: 50%;
            transform: translateY(-50%);
            color: #aaa; /* Icon color */
        }

        /* Change border color on focus, but without shadow */
        .search-bar input:focus {
            border: 1px solid #023b30; /* Change border color on focus */
            box-shadow: none; /* Ensure no shadow on focus */
        }
	.search-article{
width: 100%;
min-width:200px;
    max-width: 400px;}

/*fancy search bar*/
.dash-search {
	/* border: 2px solid #607d8b73; */
	padding: 0;
	/* border-radius: 5px; */
	height: 100%;
	margin: 0;
	width: 100%;
	max-width: 100%;
	min-width: 200px;
}
.header-sticky .navbar-nav .nav-link {
    color: #333;
    /* font-weight: bold; */
    padding: 16px 15px;
    transition: color 0.3s;
    margin: 0 15px;
    font-size: 15px;
}

.dash-search .searchform {
	height: 100%;
	border-left: 0px solid #607d8b73;
	overflow: hidden;
	border-radius: 0px;
	border-right: 0px solid #607d8b73;
	border-top: 0;
	border-bottom: 0;
	padding: 0;
	margin: 0;
}
.searchform {
	height: 46px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	overflow: hidden;
	border-radius: 5px;
}

.searchform .form-control {
	width: calc(100% - 46px);
	border: none;
	background: #fff !important;
	color: rgba(0, 0, 0, 0.7) !important;
	font-size: 14px;
}

.searchform .form-control::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: rgba(0, 0, 0, 0.7) !important;
}

.searchform .form-control::-moz-placeholder {
	/* Firefox 19+ */
	color: rgba(0, 0, 0, 0.7) !important;
}

.searchform .form-control:-ms-input-placeholder {
	/* IE 0+ */
	color: rgba(0, 0, 0, 0.7) !important;
}

.searchform .form-control:-moz-placeholder {
	/* Firefox 18- */
	color: rgba(0, 0, 0, 0.7) !important;
}

.searchform .search {
	width: 46px;
	height: 46px;
}

.searchform .search span {
	font-size: 18px;
}

.form-control {
	height: 40px !important;
	background: #fff;
	color: #000 !important;
	font-size: 14px;
	border-radius: 0px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus,
.form-control:active {
	border-color: #000;
}

/*fancy search bar end*/


        

 

        .submenu-toggle {
            position: relative;
        }

        .submenu-toggle::after {
content: '\f107';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    /* right: 0px; */
    top: 50%;
    transform: translateY(-50%);
    border-top: 0 solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    margin-right: 13px;
                    }

        .submenu-toggle[aria-expanded="true"]::after {
            content: '\f106';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    /* right: 0px; */
    top: 50%;
    transform: translateY(-50%);
    border-top: 0 solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    margin-right: 13px;
        }



.nav a:hover {
    border: none;
}
/* Submenu Styles */
.navbar-expand-lg .navbar-nav .dropdown-menu{border-radius:0 !important; padding:0; min-width:200px; margin:1px; max-width:400px; width:auto;}
.dropdown-menu {
    border-radius:0 !important; padding:0; min-width:200px; margin:1px; max-width:400px; width:auto;
}

/* List Items in Submenu */
.dropdown-menu li {
    position: relative; /* To position the dotted line */
}

/* Dotted line after each li except the last */
.dropdown-menu li:not(:last-child)::after {
    content: '';
    display: block;
    width: 100%; /* Full width of the list item */
    height: 1px; /* Height of the dotted line */
    border-top: 1px dotted #ccc; /* Dotted line style */
    position: absolute; /* Positioning */
    left: 0;
    bottom: 0; /* Align at the bottom */
}

/* Submenu Item Styles */
.dropdown-item {
    padding: 10px 15px; /* Padding for the items */
    color: #333; /* Default text color */
    text-decoration: none; /* Remove underline */
}

/* Hover State */
.dropdown-item:hover {
    background-color: #f8f9fa; /* Background color on hover */
    color: #023b30; /* Change text color on hover */
    border:0;
}

/* Focus State */
.dropdown-item:focus {
    background-color: #e2e6ea; /* Background color on focus */
    outline: none; /* Remove default outline */
}

/* Active State */
.dropdown-item.active {
    background-color: #d1ecf1; /* Background color for active state */
    color: #0c5460; /* Text color for active state */
}


.header-top-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #023b30;
}
.header-top-sticky.sticky img {
      display:none;
    }
.header-top-sticky.sticky .logo-text {
      padding-left:0 !important;
    }

.top-bar.sticky img {
      display:none;
    }
.header-sticky .navbar-nav .submenu-toggle {
    margin-right: 30px !important;
}


.mob-sub-nav::before {
    content: "\f0da"; /* Unicode for a FontAwesome bullet icon */
    font-family: 'Font Awesome 6 Pro'; /* Ensure the FontAwesome font is loaded */
    font-weight: 600; /* Use solid style, adjust if needed */
    color: black; /* Set the color of the bullet */
    margin-right: 8px; /* Add space between the bullet and the link text */
    font-size: 14px;
}

@media (max-width: 1399px) {
    .dash-search {
    /* border: 2px solid #607d8b73; */
    padding: 0;
    /* border-radius: 5px; */
    height: 100%;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 200px;
}

.header-sticky .navbar-nav .nav-link {
    color: #333;
    /* font-weight: bold; */
    padding: 16px 0px !important;
    transition: color 0.3s;
    margin: 0 15px;
    font-size: 15px;
}

           
        }
@media (max-width: 991px) {
    
            .header-top {
                display: none;
            }
.sub-mobile-header {
        top: 75px;}

            .header-sticky {
                display: none;
            }

            .search-bar {
                display: block; width:100%;
        padding: 0px;border-bottom: 0;
            }
.search-bar input {
    width: 100%;
    padding: 8px 15px;
    border: 0px solid #ddd;
    border-radius: 0px !important;
    position: relative;
    outline: none;
    box-shadow: none;
}
        }

@media (max-width: 553px) {
   
    .sub-mobile-header {
        top: 107px !important;
    }
}


@media (max-width: 768px) { /* Mobile mode */
    .container {
        width: 95%;
    }
.sub-mobile-header {top: 74px ;}

}    


        @media (min-width: 991px) {
            .mobile-header, .sub-mobile-header {
                display: none;
            }
            

        }
@media (max-width: 991px) {
    
.logo-overlay{display:none;} 
.top-bar .nav{justify-content: left;}
.container, .container-sm{width:95% !important;}
.mobile-header .title {
            font-size: 22px;
            font-weight: bold;
            /* text-transform: uppercase; */
            padding-top: 10px;
        }

.mobile-header .subtitle {
            font-size: 14px;
            padding-bottom: 10px;
        }
span.mobile-menu-text {
    font-size: 16px;
    padding-left: 6px;
    padding-top: 4px;
padding-right: 6px;
}
.submenu-toggle::after {
content: '\f105';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    /* right: 0px; */
    top: 50%;
    transform: translateY(-50%);
    border-top: 0 solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    margin-right: 13px;
                    }

        .submenu-toggle[aria-expanded="true"]::after {
            content: '\f107';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    /* right: 0px; */
    top: 50%;
    transform: translateY(-50%);
    border-top: 0 solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    margin-right: 13px;
        }


}


.logo a:hover{border:0;}
.logo a{color:#fff;}
.mobile-header a {
    color: #fff;
}
.mobile-header a:hover {
    border:none;
}

  /* Prevent the right menu items from wrapping */
.navbar-nav.ms-auto {
  flex-wrap: nowrap;
}

/* Ensure nav-links do not break into multiple lines */
.navbar-nav.ms-auto .nav-link {
  white-space: nowrap;
}


/*About CSS*/       
        .about-container {
            display: flex;
            justify-content: space-between;
            padding: 40px 0 20px;
            flex-wrap: wrap;
        }
        .left-section {
            background: #f5f5f5;
            padding: 20px;
           
        }
        .right-section {
           
            padding: 20px;
        }
        .left-section h3, .right-section h3 {
            
            color: #000;
        }
        .left-section h5, .right-section h5 {
            margin-top:20px;
            color: #000;
        }
        .left-section p, .right-section p {
            font-size: 16px;
            color: #333;
        }
        .left-section a, .right-section a {
            color: #0073e6;
            
        }
        .left-section a:hover, .right-section a:hover {
            color: #023b30;
        }
        .stats-container {
            display: flex;
            justify-content: space-between;
            padding: 20px 0;
            flex-wrap: wrap;
        }
        .stats {
            display: flex;
            justify-content: space-between;
            padding: 30px;
            width:100%;
            
        }
        .stat-item {
            flex: 1;
            border-left: 2px solid #ff9900;
            padding: 0 20px;
    margin: 10px 0;
}

        /*.stat-item:first-child {
            border-left: none;
        }*/
       .stat-item a {
    text-decoration: none; /* Remove underline from anchor */
}

.stat-item a i {
    color: #0073e6; /* Icon color */
    font-size: 17px; /* Icon size */
    padding-top: 6px; /* Top padding */
    padding-left: 4px; /* Left padding */
    
}

/* Correct hover selector for the <i> element inside <a> */
.stat-item a:hover i {
    color: #ff9900; /* Change icon color on hover */
}
.info-link:hover{border:none;}

        .stat-item p {
            font-size: 14px;
            color: #666;
            margin-bottom:0;
        }
        .view-insights {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 20px;
        }
        .view-insights a {
            
            padding: 10px 15px;
            text-decoration: none;
            display: flex;
            align-items: center;

        }
        .view-insights i {
            margin-left: 5px;
        }
        
.tooltip-box {
     display: none;
    position: absolute;
    color: black;
    max-width: 300px;
    z-index: 100;
    top: 43px;
    left: 64%;
    transform: translateX(-50%);
    box-shadow: 7px -9px 0px -7px #eb6500;
    padding: 16px;
    border: 1px solid #8e8e8e;
    border-top: rgba(0, 0, 0, 0);
    background: rgba(235, 235, 235, .85);
    width: 245px;
    }

    .stat-item {
        position: relative;
        margin-right: 20px;
    }

    .info-link {
        cursor: pointer;
    }
    .tooltip-box::before {
    content: "";
    position: absolute;
    left: -1.49px;
    background-position: left top;
    border-left: 2px solid #c2c2c2;
    top: -15px;
    background-image: linear-gradient(225deg, transparent 11px, #eb6500 11px, #eb6500 13px, rgba(235, 235, 235, 0.85) 13px);
    width: 17px;
    height: 15px;
}

.tooltip-msg {
    background: #fff;
    padding: 10px;
    font-size: 14px;
}

.nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-item h3 {
    display: flex;
    align-items: center;
    gap: 5px;
}


/*Editor Section Home */
.editor-section {
    background-color: #023b30;
    color: #ffffff;
    padding: 40px 0;
}
        .editor-title {
            font-weight: bold;
            font-size: 1.5rem;
        }
        .editor-link {
            font-size: 0.9rem;
            color: black;
            
        }
        .editor-link:hover {
            text-decoration: none;
        }
        .editor-card {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .editor-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }
        .editor-details {
            font-size: 1rem;
        }
        .editor-section a{color:#fff; border-bottom:2px solid #fff;}
        .editor-section a:hover{color:#ff9900; transition: border-bottom-color .3s;
    border-bottom: 2px solid #ff9900;}
    .editor-link{margin-bottom: 10px; padding:5px;}
    @media (max-width: 420px) {
    .editor-sep {
        display: none !important;
    }
}

/*Article Section*/
 .articles-section {
            padding: 40px 0;
            font-family: Arial, sans-serif;
        }
        .articles-section h2 {
            font-weight: bold;
            margin-bottom: 20px;
        }
        .articles-section .nav-tabs {
            border-bottom: 2px solid #023b30;
        }
        .articles-section .nav-link {
            color: black;
            font-weight: bold;
            padding: 10px 15px;
        }
        .articles-section .nav-link.active {
            border-bottom: 3px solid #ff9900 !important;
    color: #023b30;
    border: 1px solid #ffffff;
        }
        .articles-section .nav-link:hover {
            border-bottom: 3px solid #ff9900 !important;
    color: #023b30;
    border: 1px solid #ffffff
        }
        .articles-section .article-item {
    margin: 20px 0;
}
        .articles-section .article-item h5 {
            font-size: 1rem;
            font-weight: bold;
        }
        .articles-section .article-item p {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        .articles-section .read-more {
            display: flex;
            align-items: center;
            color: black;
            font-weight: bold;
            text-decoration: none;
        }
        .articles-section .read-more i {
            margin-left: 5px;
        }
        .articles-section .divider {
            margin-top: 30px;
            border-top: 1px solid #ccc;
        }
        .no-padding{padding:0; padding-right: 15px;}
        .issue-box {margin-bottom: 10px;}
        .text-muted {
    margin: 0;
}
.issue-box .text-primary {
    color: #023b30 !important;
}


/*Breadcrumb Style*/
.page-breadcrumb .breadcrumb .breadcrumb-item.breadcrumb-dark {color:#fff !important;}
.page-breadcrumb .breadcrumb .breadcrumb-item.breadcrumb-dark + .breadcrumb-item::before {color:#fff !important;}
.page-breadcrumb .breadcrumb .breadcrumb-item.breadcrumb-dark a:hover {color:yellow !important;}
.page-breadcrumb .breadcrumb .breadcrumb-item.breadcrumb-dark a::before{background-color:yellow !important}
.page-breadcrumb .breadcrumb .breadcrumb-item.breadcrumb-dark.active {color:yellow !important}
.page-banner__main-title-02.breadcrumb-dark {color:#fff !important;}

.page-banner__caption-02 {
    padding-top: 0px;
    padding-bottom: 30px;
}

.page-banner__wrapper.breadcrumb-dark {
    background: #000000ad;
}

.page-banner.bg-color-03.breadcrumb-dark {margin-top: 0;background: url(../images/breadcrumb-bg.jpg);background-size: cover;background-position: left;}
.breadcrumb-dark.page-banner__shape-01 {
    border: 1px solid rgb(255 255 255 / 46%);
}.breadcrumb-dark.page-banner__shape-02 {
    border: 1px solid rgb(255 255 255 / 46%);
}.breadcrumb-dark.page-banner__shape-03 {
    border: 1px solid rgb(255 255 255 / 46%);
}
.page-breadcrumb .breadcrumb {
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
}
.page-breadcrumb .breadcrumb .breadcrumb-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.67;
  color: #333;
}
.page-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #252525;
}
.page-breadcrumb .breadcrumb .breadcrumb-item a {
    color:#fff;
  position: relative;
}
.page-breadcrumb .breadcrumb .breadcrumb-item a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: #252525;
  bottom: 0;
  right: 0;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-breadcrumb .breadcrumb .breadcrumb-item:hover a {
  color: #252525;
}
.page-breadcrumb .breadcrumb .breadcrumb-item:hover a::before {
  width: 100%;
  left: 0;
  right: auto;
}
.page-breadcrumb .breadcrumb .breadcrumb-item.active {
  color: #252525;
}
.page-breadcrumb .breadcrumb.breadcrumb-white .breadcrumb-item {
  color: rgba(255, 255, 255, 0.65);
}
.page-breadcrumb .breadcrumb.breadcrumb-white .breadcrumb-item + .breadcrumb-item::before {
  color: #333;
}
.page-breadcrumb .breadcrumb.breadcrumb-white .breadcrumb-item:last-child::before {
  color: #FFFFFF;
}
.page-breadcrumb .breadcrumb.breadcrumb-white .breadcrumb-item a::before {
  background-color: #FFFFFF;
}
.page-breadcrumb .breadcrumb.breadcrumb-white .breadcrumb-item:hover a {
  color: #FFFFFF;
}
.page-breadcrumb .breadcrumb.breadcrumb-white .breadcrumb-item.active {
  color: #FFFFFF;
}

 /* Custom Footer CSS */
        footer {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            border-top: 1px solid #dee2e6;
        }

        footer h5 {
            font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    text-transform: uppercase;
        }

        footer a {
            color: #023b30;
            text-decoration: none;
            font-size: 14px;
        }

        footer a:hover {
            transition: border-bottom-color .3s;
    border-bottom: 2px solid #ff9900;
        }

        footer .list-unstyled li {
            margin-bottom: 8px;
        }

        .footer-bottom {
            border-top: 2.5px solid #023b30;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 13px;
    background: #fff;
        }

        .footer-logo {
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            max-width: 68px;
            height: auto;
        }
.footer-content img {
    max-width: 157px;
}

        .footer-content a {
                margin-bottom: 5px;
    color: #023b30;
    font-size: 13px;
    margin-right: 20px;
    font-weight: 600;
        }

        .footer-content p {
            font-size: 13px;
            margin: 10px 0 0;
        }

        .footer-copyright {
            margin-top: 10px;
            font-size: 12px;
            color: #333;
        }
        .footer-logo a{border:none !important;}