.header-wrapper{
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 20px 0;
    position: fixed;
    transition: 0.6s;
}

.logo_wrap .logo{
    transition: 0.6s;
    max-width: 80px;
    display: inline-block;
}
.logo_wrap .logo img{
    width: 100%;
}
.menu-toggle{
    width: 50px;
    height: 50px;
    display: flex;
    transition: 0.6s;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
.hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    transition: 0.6s;
    margin-bottom: 6px;
    overflow: hidden;
    position: relative;
}
.hamburger span:before, .hamburger span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    transform: translateX(-200%);
    transition: transform ease 300ms;
}
.hamburger span:after {
    transform: translateX(0);
}
.hamburger span:nth-child(2):before, .hamburger span:nth-child(2):after {
    transition-delay: 75ms;
}
.hamburger span:last-child {
    margin: 0;
}
.hamburger span:last-child:before, .hamburger span:last-child:after {
    transition-delay: 150ms;
}
.menu-toggle:hover .hamburger span:before {
    transform: translateX(0);
}
.menu-toggle:hover .hamburger span:after {
    transform: translateX(200%);
}


.header-wrapper.fixHeader{
    padding: 5px 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.2);
}
.fixHeader .logo_wrap .logo{
    max-width: 50px;
}
.fixHeader .menu-toggle{
    width: 36px;
    height: 36px;
}
.fixHeader .hamburger span{
    width: 20px;
    height: 2px;
}


/* --------Breadcrumb bar------- */
.innerPageWrap{
    padding: 108px 0 0;
}
.breadcrumbSec{
    padding-top: 10px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    background-color: #004c8d;
}
.container-mid-fluid{
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.bc{
    display: flex;
    align-items: center;
}
.bc a{
    font-family: "Roboto Lt";
    font-weight: 300;
    margin-right: 40px;
    color: #ffffff;
}
.bc a:hover{
    color: #6bdbff;
}
.bc a.active{
    font-family: "Roboto";
    font-weight: 600;
    color: #ffffff !important;
    font-weight: normal;
    padding-left: 30px;
    position: relative;
    margin-right: 0;
}
.bc a.active:before{
    top: -2px;
    left: -10px;
    content: "\f0da";
    font-size: 20px;
    color: #ffffff;
    position: absolute;
    font-weight: var(--fa-style, 900);
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
}


/* -----Footer------------- */
.footer{
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
}
.pdfList{
    width: 70%;
}
.pdfList li a{
    width: 100%;
    display: flex;
    line-height: 1.2;
    align-items: center;
    justify-content: space-between;
}
.pdfList li img{
    width: 30px;
    margin-left: 20px;
}
.pdfList li span{
    display: block;
    width: calc(100% - 50px);
}

@media screen and (max-width: 1536px) and (max-height: 760px) {
    .innerPageWrap{
        padding: 70px 0 0;
    }
}
@media screen and (max-width: 1440px){
    .innerPageWrap{
        padding: 90px 0 0;
    }
    .header-wrapper{
        padding: 15px 0;
    }
    .logo_wrap .logo {
        max-width: 70px;
    }
    .menu-toggle {
        width: 42px;
        height: 42px;
    }
    .hamburger span {
        width: 20px;
        height: 3px;
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 1366px){
    .rightWidget.mt_100{
        margin-top: 90px !important;
    }
    .pdfList {
        width: 100%;
    }
}
@media screen and (max-width: 1280px) and (max-height: 636px) {
    .innerPageWrap{
        padding: 65px 0 0;
    }
}
@media screen and (max-width: 1024px){
    .innerPageWrap {
        padding: 0;
    }
    .header-wrapper {
        padding: 5px 0;
        position: static;
        box-shadow: 0 2px 5px #d8f0f7;
    }
    .logo_wrap .logo {
        max-width: 60px;
    }
    .footerInner.customBlock{
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .leftWidgetWrap.col-lg-5 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .rightWidgetWrap.col-lg-5 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .pdfList li a{
        font-size: 16px !important;
    }
    .pdfList li img {
        width: 24px;
    }
    
}
@media screen and (max-width: 991px){
    .rightWidget.mt_100{
        margin-top: 90px !important;
    }
}
@media screen and (max-width: 767px){
    .rightWidget.mt_100 {
        margin-top: 70px !important;
    }
    .rightWidget h4{
        font-size: 24px !important;
    }
}
@media screen and (max-width: 767px){
    .leftWidgetWrap.col-lg-5, .rightWidgetWrap.col-lg-5 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .rightWidget.mt_100{
        margin-top: 30px !important;
    }
    .footerLogo.mb_30{
        margin-bottom: 20px !important;
    }
    .footerLogo img{
        height: 40px;
    }
}
@media screen and (max-width: 475px){
    .bc a.active:before {
        top: 50%;
        transform: translateY(-50%);
    }
}