/********** Template CSS **********/
:root {
    --primary: #ec2024;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}
/* Prevent horizontal scrolling */
html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Make all elements respect their container width */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Ensure media doesn't overflow */

video,
iframe,
svg,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tables */
table {
    max-width: 100%;
    border-collapse: collapse;
}

/* Prevent long words/URLs from causing overflow */
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
li {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}
.pdf h4{
	 font-size:20px;
	  
}
.pdf{
	 padding:15px;
}
.dwn-btn{
	 padding:15px;
}
.download-box{
	border:1px solid#ddd;
	padding:15px;
	
}
.open-account ul li{
list-style:none;
padding:5px 0px;	
}
.open-account ul{
	 padding-left:0px;
}

.icon-box
{
	
    padding: 12px;
    width: 130px;
    height: 130px;
   margin:0px auto 20px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgb(0 0 0 / 9%);
   display: flex;
    justify-content: center;
    align-items: center;

}
.pt-15{
	 padding-top:1.5rem;
}
.useful-links p {
    color: #fff;
    padding: 0px 5px;
    font-weight: 500;
    font-size: 14px;
}
.useful-links p a {
    color: #fff;
    padding: 0px 5px;
    border-right: 1px solid#333;
    font-weight: 500;
    font-size: 14px;
}
.Other-links ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-right: 16px;
}
.Other-links ul li{
	display:inline-block
}
.red{
	color:#ec2024
}
.red-bg{background:#ec2024}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.msg p{color:#fff; margin-top:10px;margin-bottom: 0px}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 115px;
    display: flex;
    align-items: center;
  
}

/***.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}
***/

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 40px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #b03233;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background:linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgb(2 36 91 / 87%) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid #000;
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background:  #02245B;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, 1.0);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    background:#b03233;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #fff;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
@media(max-width:480px){
	.navbar-brand img{
		 width:100%;
	}
}

.asw-menu-btn {
    left: auto !important;
    right: 30px !important;
}
.asw-footer a{
    display: none !important;
}
.asw-footer{
    justify-content: center !important;
    gap: 5px !important;   
}

.jbm-carousel-wrapper{
    position:relative;
}

.jbm-carousel-controls{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    z-index:999;
    display:flex;
    gap:10px;
}

.jbm-carousel-controls button{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.7);
    color:#fff;
    cursor:pointer;
    font-size:16px;
}

.jbm-carousel-controls button:hover{
    background:#0d6efd;
}
.footbtm-txt{
    font-size: 24px;
    line-height: 34px;
}
.merun{
    color: #b03233 !important;
}
.text-drkr{
    color: #b03233 !important;
}
.merun-bg{
    background-color: #b03233;
}
.mainh-about{
    font-size: 48px;
    line-height: 58px;
}
.year-tot{
  font-size: 72px;
}
.yeardes{
    font-size: 28px;
}
.fonthf{
   font-size: 20px;
}


.service-item .btn {
    position: absolute;
    width: 330px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #b03233 ;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}


.jbm-news-scroller {
    height: 220px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.jbm-news-content {
    position: absolute;
    width: 100%;
    color: blue;
    animation: jbmScrollUp 20s linear infinite;
}

.jbm-news-scroller:hover .jbm-news-content {
    animation-play-state: paused;
}

@keyframes jbmScrollUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(-100%);
    }
}
.jbm-carousel-icon{
    background-color:#000;
    border-radius:50%;
    width:50px;
    height:50px;
    padding:12px;
}
.team-high{
    font-size: 24px;
}
.team-des{
    font-size: 20px;
}


.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:focus-visible {
    outline: 3px solid #000;
    outline-offset: 2px;
    border-radius: 4px;
    color: #000 !important;
}

.navbar-brand:focus,
.navbar-brand:focus-visible {
    outline: 1px solid #000;
    outline-offset: 4px;
    border-radius: 4px;
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible {
    outline: 1px solid #000;
    outline-offset: 2px;
    box-shadow: none;
}
.or-mintxt{
    font-size: 40px;
    color: #FF5E14 !important;
}
.name-team{
    font-size: 20px;
}
.skip-link {
    background: #000;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 99999;
}

.skip-link:focus {
    top: 10px;
}
.subcon{
    font-size: 24px;
}
.form-control,
.form-select {
    background-color: #fff;
    border: 2px solid #767676;
    border-radius: 4px;
    color: #000;
}

.form-control:focus,
.form-select:focus {
    border-color: #005fcc;
    outline: 2px solid #005fcc;
    outline-offset: 2px;
    box-shadow: none;
}

.form-floating label {
    color: #333;
    opacity: 1;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.download-content h3 {
    color: #222222;
}

.dwn-btn a {
    color: #0056b3;
    background: #ffffff;
}

.dwn-btn a:hover,
.dwn-btn a:focus {
    color: #003d82;
    outline: 2px solid #003d82;
    outline-offset: 2px;
}
.footh{
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

@media only screen and (min-width: 0px) and (max-width: 992px){
    .navbar{
        padding-right: 0 !important;
    }
    #popup3{
        top: 70% !important;
    }
    #popup2{
        top: 125% !important;
        width: 90% !important;
    }
    #popup{
        top: 120% !important;
        width: 90% !important;
    }
    #popup4{
        width: 80% !important;
    }
    .topbar-right {
        padding: 8px 4px !important;
    }
    .topbar-right span{
        font-size: 15px !important;
    }
    .navbar .navbar-brand {
    position: relative;
    padding-right: 0px !important;
    height: 70px;
    display: flex;
    align-items: center;
    padding-left: 0px !important;
}
}





/*===================================Dynamic Popup Css================================================ */


:root{

    --popup-width:1200px;   /* Change width here */
    --popup-top:70px;

}


.accPopupOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:flex-start;
    overflow:auto;
    z-index:99999;
    padding:var(--popup-top) 20px 40px;

}


.accPopupOverlay[hidden]{
    display:none;

}


.accPopupBox{
    width:100%;
    max-width:var(--popup-width);
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 35px rgba(0,0,0,.3);
    outline:none;

}


.accPopupHeader{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 25px;
    border-bottom:1px solid #ddd;

}


.accPopupClose{
    border:none;
    background:none;
    font-size:26px;
    cursor:pointer;
}
.accPopupTabs{
    display:flex;
    flex-wrap:wrap;
}


.accPopupTab{
    padding:15px ;
    cursor:pointer;
    border:none;
    background:#f5f5f5;
    font-size: 14px;
    border-right: 2px solid #fff;
}


.accPopupTab.active{
    background:#005fcc;
    color:#fff;
}
.accPopupContent{
    padding:25px;
}
.accTabPanel{
    display:none;
}
.accTabPanel.active{
    display:block;
}

@media(max-width:768px){
:root{
--popup-width:100%;
--popup-top:20px;
}
.accPopupHeader{
padding:15px;
}

.accPopupContent{
padding:20px;
}
}
.accPopupBox{
    position: relative;
}

/* Close Button */
.accPopupClose{
    position: absolute;
        top: -10px;
    right: -15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #000000;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color .2s ease, color .2s ease;
    z-index: 10;

}


/* Keyboard Focus */
.accPopupClose:focus{
    outline: none;
}

.accPopupClose:focus-visible{
    outline: 3px solid #ffbf47;
    outline-offset: 3px;

}
    
/* ===========================
   Accessible Popup Button
=========================== */

.accPopupOpenBtn{
        position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 63px;
    padding: 10px;
    background: #005fcc;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.accPopupOpenBtn:hover{
    background: #0047a3;
    border-color: #0047a3;
}

.accPopupOpenBtn:active{
    transform: scale(.98);
}
.accPopupOpenBtn:focus{
    outline: none;
}

.accPopupOpenBtn:focus-visible{
    outline: 3px solid #000 ;
    outline-offset: 4px;
    box-shadow: 0 0 0 6px rgba(255,191,71,.25);
}


@media (max-width:768px){

    .accPopupOpenBtn{
        right: 20px;
        bottom: 75px;
    }
    .accPopupTab{
        width: 100%;
    }
    .accPopupBox {
    top: 50px;
}
.accPopupClose {
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
}
}


/*==========Content css================*/



.invAppMainTitle{
   font-size: 22px;
    font-weight: 600;
    color: #0c4da2;
    margin-bottom: 10px;
    line-height: 32px;
}

.invAppSectionTitle{
    font-size:22px;
    font-weight:600;
    color:#222;
    margin:15px 0 10px;
}

.invAppText{
    font-size:16px;
    margin-bottom:5px;
        color: #000;
}

.invAppList{
    margin:10px 0;
    padding-left:22px;
}

.invAppListItem{
    margin-bottom:4px;
        color: #000;
}

.invAppCard{
    background: #f8f9fc;
    padding: 10px 20px;
    margin-top: 10px;
}

.invAppCardTitle{
    font-size:18px;
    font-weight:700;
    color:#0c4da2;
    margin-bottom:15px;
}

.invAppLink{
    display:block;
    width:fit-content;
    margin-bottom:12px;
    color:#005fcc;
    text-decoration:none;
    font-weight:600;
    word-break:break-word;
}

.invAppLink:hover{
    text-decoration:underline;
}

.invAppLink:focus-visible{
    outline:3px solid #ffbf47;
    outline-offset:3px;
    border-radius:4px;
    
}

@media (max-width:768px){
    

    .invAppMainTitle{
        font-size:24px;
    }
    .invAppSectionTitle{
        font-size:20px;
    }
    .invAppText {
    font-size: 16px;
    word-break: break-word;
}
}
    /*===================================Dynamic Popup Css End================================================ */


    .nifty-pup{
        width: 100%;
    }




/* ==========================================================
   TPACC Accessible Search - Base Styles
   Unique Prefix: tpacc-
   ========================================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
}

/* Screen Reader Only */
.tpacc-visually-hidden{
    position:absolute !important;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    clip-path:inset(50%);
    white-space:nowrap;
    border:0;
}

/* ==========================================================
   Search Wrapper
   ========================================================== */

.tpacc-search{
    position:relative;
    display:inline-flex;
    align-items:center;
    z-index:9999;
}

/* ==========================================================
   Search Toggle Button
   ========================================================== */

.tpacc-search-toggle{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #d5d5d5;
    background:#ffffff;
    color:#222;
    border-radius:6px;
    cursor:pointer;
    padding:0;
    transition:.25s ease;
}

.tpacc-search-toggle svg{
    width:20px;
    height:20px;
    pointer-events:none;
}

.tpacc-search-toggle:hover{
    background:#f5f5f5;
    border-color:#999;
}

.tpacc-search-toggle:focus-visible{
    outline:3px solid #005fcc;
    outline-offset:2px;
}

/* ==========================================================
   Popup
   ========================================================== */

.tpacc-search-popup{
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    width:360px;
    max-width:calc(100vw - 20px);
    background:#ffffff;
    border:1px solid #d8d8d8;
    border-radius:8px;
    padding:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* ==========================================================
   Search Form
   ========================================================== */

.tpacc-search-form{
    display:flex;
    align-items:center;
    gap:8px;
    width:100%;
}

/* ==========================================================
   Input Wrapper
   ========================================================== */

.tpacc-search-input-wrap{
    flex:1;
    min-width:0;
}

/* ==========================================================
   Search Input
   ========================================================== */

.tpacc-search-input{
    width:100%;
    height:42px;
    border:1px solid #9a9a9a;
    border-radius:5px;
    padding:0 12px;
    font-size:15px;
    color:#222;
    background:#fff;
    appearance:none;
}

.tpacc-search-input::placeholder{
    color:#666;
}

.tpacc-search-input:hover{
    border-color:#666;
}

.tpacc-search-input:focus{
    outline:3px solid #005fcc;
    outline-offset:2px;
    border-color:#005fcc;
}

/* Remove browser search icons */

.tpacc-search-input::-webkit-search-decoration,
.tpacc-search-input::-webkit-search-cancel-button,
.tpacc-search-input::-webkit-search-results-button,
.tpacc-search-input::-webkit-search-results-decoration{
    -webkit-appearance:none;
}

.tpacc-search-input::-ms-clear{
    display:none;
}

/* ==========================================================
   Buttons
   ========================================================== */

.tpacc-submit-btn,
.tpacc-close-btn{

    height:42px;

    border:none;

    border-radius:5px;

    cursor:pointer;

    font-size:14px;

    font-weight:600;

    transition:.25s;

    white-space:nowrap;

}

/* Search Button */

.tpacc-submit-btn{

    background:#005fcc;

    color:#fff;

    padding:0 14px;

}

.tpacc-submit-btn:hover{

    background:#0047b3;

}

/* Close Button */

.tpacc-close-btn{

    width:42px;

    padding:0;

    background:#666;

    color:#fff;

}

.tpacc-close-btn:hover{

    background:#444;

}

/* Keyboard Focus */

.tpacc-submit-btn:focus-visible,
.tpacc-close-btn:focus-visible{

    outline:3px solid #005fcc;

    outline-offset:2px;

}

/* Disabled */

.tpacc-submit-btn:disabled,
.tpacc-close-btn:disabled{

    opacity:.6;

    cursor:not-allowed;

}

/* ==========================================================
   TPACC Accessible Search
   Part 2B
   ========================================================== */


/* Search Suggestions */

.tpacc-suggestion-list{
    margin:10px 0 0;
    padding:0;
    list-style:none;
    border:1px solid #d8d8d8;
    border-radius:6px;
    background:#fff;
    max-height:220px;
    overflow-y:auto;
    overflow-x:hidden;
}

.tpacc-suggestion-list[hidden]{
    display:none !important;
}

/* Suggestion Item */

.tpacc-suggestion-list li{
    display:block;
    padding:10px 14px;
    font-size:14px;
    line-height:1.4;
    color:#222;
    cursor:pointer;
    border-bottom:1px solid #ececec;
    transition:background .2s,color .2s;
}

.tpacc-suggestion-list li:last-child{
    border-bottom:none;
}

/* Hover */

.tpacc-suggestion-list li:hover{
    background:#005fcc;
    color:#fff;
}

/* Keyboard Active */

.tpacc-suggestion-list li.tpacc-active{
    background:#005fcc;
    color:#fff;
}

/* Keyboard Focus */

.tpacc-suggestion-list li:focus{
    outline:3px solid #005fcc;
    outline-offset:-3px;
}

/* Scrollbar */

.tpacc-suggestion-list::-webkit-scrollbar{
    width:8px;
}

.tpacc-suggestion-list::-webkit-scrollbar-thumb{
    background:#bdbdbd;
    border-radius:20px;
}

.tpacc-suggestion-list::-webkit-scrollbar-track{
    background:#f5f5f5;
}

/* Popup Animation */

.tpacc-search-popup{
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s;
}

/* Popup Open */

.tpacc-search-popup.tpacc-open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ==========================================================
   Tablet
   ========================================================== */

@media (max-width:768px){

.tpacc-search-popup{
    width:320px;
}

.tpacc-search-input{
    font-size:14px;
}

.tpacc-submit-btn{
    padding:0 12px;
}

}

/* ==========================================================
   Mobile
   ========================================================== */

@media (max-width:480px){

.tpacc-search-popup{

    width:260px;

    right:0;

    left:auto;

    padding:10px;

}

.tpacc-search-form{

    display:grid;

    grid-template-columns:1fr auto auto;

    gap:6px;

}

.tpacc-search-input-wrap{

    width:100%;

}

.tpacc-search-input{

    height:40px;

    font-size:14px;

}

.tpacc-submit-btn{

    height:40px;

    padding:0 10px;

    font-size:13px;

}

.tpacc-close-btn{

    width:40px;

    height:40px;

}

.tpacc-suggestion-list li{

    padding:9px 10px;

    font-size:13px;

}

}

/* ==========================================================
   Very Small Devices
   320px
   ========================================================== */

@media (max-width:320px){

.tpacc-search-popup{

    position:fixed;

    top:10px;

    left:10px;

    right:10px;

    width:auto;

    max-width:none;

}

.tpacc-search-form{

    grid-template-columns:1fr;

}

.tpacc-submit-btn,
.tpacc-close-btn{

    width:100%;

}

.tpacc-search-toggle{

    width:38px;

    height:38px;

}

}

/* ==========================================================
   300px Support
   ========================================================== */

@media (max-width:300px){

.tpacc-search-popup{

    top:5px;

    left:5px;

    right:5px;

    padding:8px;

}

.tpacc-search-input{

    height:38px;

    font-size:13px;

}

.tpacc-submit-btn,
.tpacc-close-btn{

    height:38px;

    font-size:12px;

}

.tpacc-suggestion-list{

    max-height:170px;

}

.tpacc-suggestion-list li{

    font-size:12px;

    padding:8px;

}

}

/* ==========================================================
   Reduced Motion
   ========================================================== */

@media (prefers-reduced-motion:reduce){

.tpacc-search-popup,
.tpacc-search-toggle,
.tpacc-submit-btn,
.tpacc-close-btn,
.tpacc-suggestion-list li{

    transition:none;

}

}

/* ==========================================================
   High Contrast Mode
   ========================================================== */

@media (forced-colors:active){

.tpacc-search-toggle,
.tpacc-submit-btn,
.tpacc-close-btn,
.tpacc-search-input{

    border:1px solid ButtonText;

}

}

/* ==========================================================
   Print
   ========================================================== */

@media print{

.tpacc-search{
    display:none !important;
}

}
@media (min-width: 991px) and (max-width:3000px){
  .tpacc-search-toggle{
    margin-left: 10px;
  }
}








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

.kej-sitemap-title{
    font-size:36px;
    font-weight:700;
    color:#0d3b66;
    text-align:center;
    margin-bottom:15px;
}

.kej-sitemap-desc{
    max-width:850px;
    margin:0 auto 35px;
    text-align:center;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

.kej-tree{
    list-style:none;
    padding:0;
    margin:30px 0;
    border:1px solid #dfe6ee;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
}

.kej-head{
    background:#0d3b66;
    color:#fff;
    padding:16px 22px;
    font-size:20px;
    font-weight:600;
}

.kej-count{
    float:right;
    font-size:15px;
    font-weight:400;
}

.kej-pages{
    list-style:none;
    margin:0;
    padding:20px 25px;
}

.kej-page{
    margin-bottom:12px;
}

.kej-page:last-child{
    margin-bottom:0;
}

.kej-page a{
    display:inline-block;
    color:#0056b3;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.kej-page a:hover{
    color:#002f6c;
    text-decoration:underline;
}

.kej-page a:focus{
    outline:3px solid #000;
    outline-offset:3px;
    border-radius:4px;
    text-decoration:underline;
}

/* Responsive */

@media (max-width:768px){

    .kej-sitemap-title{
        font-size:30px;
    }

    .kej-head{
        font-size:18px;
    }

}

@media (max-width:576px){

    .kej-sitemap-title{
        font-size:26px;
    }

    .kej-sitemap-desc{
        font-size:15px;
    }

    .kej-page a{
        font-size:15px;
        line-height:1.7;
    }

    .kej-count{
        float:none;
        display:block;
        margin-top:6px;
    }

}
.bg-blur{
    background-color: #05285e;
}


/* Logo + Heading */

.kej-brand{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    padding-left:2rem;
}

.kej-brand img{
    width:80px;
    height:auto;
    flex-shrink:0;
}

.kej-site-title{
    margin:0;
    font-size:22px !important;
    line-height:1.2;
    font-weight:700;
    color:#003366;
}

.kej-brand-text{
    display:flex;
    flex-direction:column;
}

/* Tablet */

@media (max-width:991px){

    .kej-brand{
        padding-left:1rem;
        gap:12px;
    }

    .kej-brand img{
        width:65px;
    }

    .kej-site-title{
        font-size:20px;
    }
}

/* Mobile */

@media (max-width:576px){

    .kej-brand{
        padding-left:.5rem;
        gap:10px;
        max-width:calc(100% - 60px); /* leaves room for navbar toggle */
    }

    .kej-brand img{
        width:50px;
    }

    .kej-site-title{
        font-size:15px !important;
        line-height:1.3;
    }
}







@media screen and (max-width: 300px), screen and (max-height: 256px){
    .kej-site-title{
        font-size:10px !important;
        line-height:1.3;
    }
    #header-carousel .carousel-item {
        min-height:185px !important;
    }
    .fonthf {
    font-size: 16px !important;
}
.mainh-about {
    font-size: 30px !important;
    line-height: 40px !important;
}
.non-flx{
    display: grid !important;
}
.com-head{
    font-size: 22px;
}
.pad-fct{
    padding: 0 !important;
}
.download-content  img{
    width: 20%;
        max-width: 100%;
        height: 20%;
}
.subcon {
    font-size: 14px !important;
}
.box-name{
    height: 100% !important;
}
}

@media (min-width: 300px) and (max-width:991px){
    .kej-site-title{
        font-size:10px !important;
        line-height:1.3;
    }
  #header-carousel .carousel-item {
        min-height:170px !important;
    }
    .fonthf {
    font-size: 16px !important;
}
.mainh-about {
    font-size: 30px !important;
    line-height: 40px !important;
}
.non-flx{
    display: grid !important;
}
.com-head{
    font-size: 22px;
}
.pad-fct{
    padding: 0 !important;
}
.download-content  img{
    width: 20%;
        max-width: 100%;
        height: 20%;
}
.subcon {
    font-size: 14px !important;
}
}



.para-top p{
    font-size: 16px;
    line-height: 26px;
}
.jbm-news-wrapper{
    position:relative;
}

.jbm-news-controls{
    display:flex;
    gap:8px;
    justify-content:flex-end;
    margin-top:8px;
}

.jbm-news-btn{
    padding:6px 14px;
    border:1px solid #ccc;
    background:#fff;
    cursor:pointer;
    border-radius:4px;
    font-size:14px;
}

.jbm-news-btn:hover{
    background:#f5f5f5;
}

.jbm-news-btn:focus{
    outline:2px solid #005fcc;
    outline-offset:2px;
}
