@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu Sans", sans-serif;
}

:root {
    --primary-font: "Ubuntu Sans", sans-serif;
    --secondry-font: "Ubuntu Sans", sans-serif;
    --primary-color: #833036;
    --secondary-color: #993c43;
    --third-color: #34295b;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 5px;
    background: #000;
}

body::-webkit-scrollbar-thumb {
    background: #eee;
}

a {
    text-decoration: none;
    color: #000;
    display: block;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.mainheading {
    margin: 20px 0 40px;
    text-align: center;
}

.mainheading h2 {
    font-size: 26px;
    color: #000;
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
}

.mainheading h2:before {
    content: "";
    display: inline-block;
    width: 10%;
    height: 2px;
    background-color: var(--secondary-color);
    position: relative;
    right: 10px;
    bottom: 5px;
}

.mainheading h2:after {
    content: "";
    display: inline-block;
    width: 10%;
    height: 2px;
    background-color: var(--secondary-color);
    position: relative;
    left: 10px;
    bottom: 5px;
}

.mainheading a {
    background: #055fb229;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 16px;
    text-decoration: underline;
}

/* topheader section style start */

.header .topheader .topheadbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .topheader .topheadbox .topheadleft {}

.header .topheader .topheadbox .topheadleft ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .topheader .topheadbox .topheadleft ul li {}

.header .topheader .topheadbox .topheadleft ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f4f4f4;
    font-family: var(--primary-font);
}

.header .topheader .topheadbox .topheadleft ul li a svg {
    width: 20px;
    fill: #fff;
}

.header .topheader .topheadbox .topheadleft ul li a svg path {
    fill: #fff;
}

.header .topheader .topheadbox .topheadmiddle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logobox .loginbtn {margin: 10px 0;}

.footer-logobox .loginbtn a {
    padding: 8px 10px;
    background: #fff;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    border-radius: 5px;
    transition: all .3s ease;
    text-transform: capitalize;
    /* animation: blinking 1s linear alternate infinite; */
    margin: 10px 0px;
    font-size: 18px;
}

.header .topheader .topheadbox .topheadmiddle .social-list {}

.header .topheader .topheadbox .topheadmiddle .social-list li {}

.header .topheader .topheadbox .topheadmiddle .social-list li a {}

.header .topheader .topheadbox .topheadright {}

.header .topheader .topheadbox .topheadright .registrationbtn {}

.header .topheader .topheadbox .topheadright .registrationbtn a {
    background: #000000;
    padding: 5px 20px;
    color: #fff;
    border-radius: 5px;
    font-family: var(--primary-font);
}

/* topheader section style start */

/* middleheader section style start */

.header {}

header.header {}

.header .topheader {}

.header .topheader {
    padding: 10px 0px;
    background: var(--secondary-color);
}

.middleheaderbox {
    padding: 10px 0px;
    box-shadow: 2px 1px 10px 0px rgb(0 0 0 / 23%);
}

.middleheaderbox .middleheaderboxx {
    
display: flex;
    
align-items: center;
    
justify-content: space-between;
}

.middleheaderbox .middleheaderboxx .headerlogo {
    width: 30%;
}

a.mobiletooglebtn {
    width: unset!important;
    display: none;
}

.middleheaderbox .middleheaderboxx .headerlogo a {
    width: 50%;
}

.middleheaderbox .middleheaderboxx .headerlogo a img {
    width: 100%;
}

.middleheaderbox .middleheaderboxx .logorightcontent {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.middleheaderbox .middleheaderboxx .logorightcontent h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 22px;
    font-family: var(--primary-font);
}

.middleheaderbox .middleheaderboxx .logorightcontent h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
    font-family: var(--primary-font);
}

.middleheaderbox .middleheaderboxx .logorightcontent h6 {
    color: var(--third-color);
    font-weight: 500;
    font-size: 18px;
    margin: 10px 0 0;
    font-family: var(--primary-font);
}

.middleheaderbox .middleheaderboxx .registrationbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.middleheaderbox .middleheaderboxx .registrationbox a {
    padding: 8px 25px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    transition: all .3s ease;
    animation: blinking 1s linear alternate infinite;
    width: max-content;
}

@keyframes blinking {
    0% {
        opacity: .6
    }

    50% {
        opacity: .9
    }

    100% {
        opacity: .6
    }
}

/* .middleheaderbox .registrationbox a:hover {background: var(--secondary-color);} */

.middleheaderbox .logorightcontent p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    font-family: var(--primary-font);
}

/* middleheader section style end */

/* mobile menu section style start */

.mobile-header {
    display: none;
}

.mobile-header .mobile-header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

.mobile-header .mobile-header-box .mobile-header-log {
    width: 40%;
}

.mobile-header .mobile-header-box .mobile-header-log img {
    width: 70%;
}

.mobile-header .mobile-header-box .mobile-sidenav {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.mobile-header .mobile-header-box .mobile-sidenav .emergencyno {/* background: var(--primary-color); */padding: 3px 0px;animation: blinking linear 0.3s;}

.mobile-header .mobile-header-box .mobile-sidenav .emergencyno a {border-right: 1px solid #cdcdcd;font-size: 14px;color: #043B6F;font-family: var(--primary-font);font-weight: 600;display: block;background: #f4f9fd;padding: 12px 15px;text-align: center;position: relative;}

.mobile-header .mobile-header-box .mobile-sidenav .emergencyno a svg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    stroke: #fff;
}

.mobile-header .mobile-header-box .mobile-sidenav .mob-menu-open.toggle-menu {
    position: relative;
    z-index: 999999;
    /* left: 3%; */
    top: 0;
    padding: 6px 5px 4px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mobile-header .mobile-header-box .mobile-sidenav .mob-menu-open.toggle-menu span.bar {
    background: #000000;
    height: 4px;
    width: 30px;
    display: block;
    margin-bottom: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    background: var(--primary-color);
    transition: all .3s ease;
}
.mobile-menu.show {
    opacity: 1;
    visibility: visible;
    right: 0;
}
.mobile-menu .nav-logo a img {
    width: 80%;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 1;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu.show .menu-backdrop {
    opacity: 0.3;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
    background: var(--secondary-color);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--primary-color);
    padding: 0px 0px;
    z-index: 5;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}


.mobile-menu .nav-logo {
    position: relative;
    text-align: left;
    padding: 5px;
    background: #fff;
}

.mobile-menu .megamenu-item {
    margin: 0px 0px;
}

.mobile-menu .megamenu-item ul {
    border-bottom: 1px solid rgb(255 255 255 / 31%);
}

.mobile-menu .megamenu-item ul li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(255 255 255 / 36%);
}

.mobile-menu .megamenu-item ul li a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    transition: all 500ms ease;
    font-family: var(--primary-font);
}

.mobile-menu .megamenu-item ul li.drop-item .dropdown-btn {
    position: absolute;
    right: 12px;
    top: 6px;
    width: 22px;
    height: 22px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    border-radius: 2px;
    transition: all 500ms ease;
    z-index: 5;
    align-items: center;
    display: flex;
    justify-content: center;
}

.megamenu-item ul li.drop-item .megadropmenu {
}

.mobile-menu .megamenu-item .registrationbox {
    margin: 15px auto;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 10px;
}

.mobile-menu .megamenu-item .registrationbox a {
    background: #fff;
    color: var(--primary-color);
    border-radius: 5px;
    margin: 0 0px 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-family: var(--primary-font);
    width: 100%;
}

.megamenu-item ul li.drop-item .megadropmenu ul {
    background: var(--secondary-color);
}

.megamenu-item ul li.drop-item .megadropmenu ul li {
    border: none!important;
}

.megamenu-item ul li.drop-item .megadropmenu ul li a {}


/* mobile menu section style end */

/* mobile btn style start */

.mobiletooglemenubox {
    background: var(--primary-color);
    padding: 5px 0px;
    display: none;
}

.mob-menu-open {
    position: relative;
    z-index: 999999;
    top: 0;
    padding: 6px 5px 4px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* float: right; */
    right: 20px;
    right: 0;
}

.mob-menu-open span.bar {
    background: var(--primary-color);
    height: 4px;
    width: 30px;
    display: block;
    margin-bottom: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.middleheaderbox {
}

.mobiletooglemenubox a.mobiletooglebtn {
    text-align: right;
    width: max-content;
    margin-left: auto;
    margin-right: 10px;
}

/* mobile btn style end */

/* mobilemenu style start */

.mobilemenu {
    background: #0457a4;
    transition: all .3s ease;
    height: 0;
    visibility: hidden;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.mobilemenu .mobilemenubox {
    padding: 0;
    margin: 0;
}

.mobilemenu .mobilemenubox ul {
    padding: 10px 0px;
}

.mobilemenu .mobilemenubox ul li {
    padding: 5px 0px 5px;
}

.mobilemenu .mobilemenubox ul li a {
    padding: 9px 5px;
    color: #fff;
    width: 100%;
    background: url();
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobilemenu .mobilemenubox ul li .dropdown-btn {}

.mobilemenu .mobilemenubox ul li .dropdown-btn span {
    color: #fff;
}

.mobilemenu.show {
    overflow: auto;
    opacity: 1;
    visibility: visible;
    height: auto;
}

.mobilemenu .mobilemenubox ul li:hover {
    background: var(--primary-color);
}

.mob-menu-open span.bar:last-child {
    margin: 0;
}
.mobilemenu .mobilemenubox ul li .drop-down {
    background: #05539b;
    padding: 0 10px;
}
/* mobilemenu style start */

/* social icons section style start */

.social-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-list li {}

.social-list li a {
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
    color: #fff;
}

.social-list li a.facebook {
    background: #0866ff;
}

.social-list li a.instagram {
    background: #fe0b84;
}

.social-list li a.twitter {
    background: #000000;
}

.social-list li a.linkedin {
    background: #0077b5;
}

.social-list li a.youtube {
    background: #ff0000;
}

.social-list li a i {}

.social-list li a:hover {
    transform: translateY(-5px);
}

/* social icons section style start */

/* headermenu section style start */

.header .headermenubox {
    background: var(--primary-color);
}

.header .headermenubox .headermenu {}

.header .headermenubox .headermenu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.header .headermenubox .headermenu ul li {
    border-right: 1px solid var(--secondary-color);
    position: relative;
}

.header .headermenubox .headermenu ul li .drop-down {
    position: absolute;
    background: #fff;
    min-width: 190px;
    top: 100%;
    left: 0;
    transition: all .5s ease-in-out;
    opacity: 0;
    transform: translateY(50%);
    visibility: hidden;
    z-index: 99;
}

.header .headermenubox .headermenu ul li .drop-down ul {
    display: block;
}

.header .headermenubox .headermenu ul li:hover .drop-down {
    opacity: 1;
    visibility: visible;
    transform: unset;
}

.header .headermenubox .headermenu ul li .drop-down ul li {
    border-right: unset;
    border-bottom: 1px solid var(--secondary-color);
}
.header .headermenubox .headermenu ul li .drop-down ul li a {
    color: var(--bs-black);
}
.header .headermenubox .headermenu ul li .drop-down ul li a:hover {
    background: var(--secondary-color);
    color: #fff;
}

.header .headermenubox .headermenu ul li:last-child {
    border: unset;
}

.header .headermenubox .headermenu ul li a {
    padding: 10px 10px;
    color: #fff;
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1;
    transition: all .3s ease;
}

.header .headermenubox .headermenu ul li a i {
    font-size: 13px;
}

/* headermenu section style end */

/* banner section style start */

.bannersection {}

.bannersection .bannerimg {}

.bannersection .bannerimg img {
    width: 100%;
}

/* banner section style end */

/* about section style start */

.widget-aboutus{
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
.aboutleft{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.aboutleft .welcome{
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #666;
    font-style: italic;
    line-height: 1;
}
.aboutleft .cap{
    margin: 0 0 20px;
    display: inline-block;
    position: relative;
}
.aboutleft .cap:after{
    content: "";
    width: 100px;
    height: 1px;
    background: var(--secondary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
    
}
.aboutleft .cap i{
    color: var(--secondary-color);
}
.aboutleft img{
}
.aboutleft h2{
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--secondry-font);
    font-size: 27px;
    margin: 0 0 20px;
    text-transform: capitalize;
}
.aboutleft p{
    font-size: 16px;
    text-align: justify;
    font-weight: 400;
    color: #444;
    margin: 0 0 10px;
}

.aboutleft ul {
    list-style: disc;
    margin: 0 0 0 30px;
}

.aboutleft ul li {
    font-size: 16px;
    text-align: justify;
    font-weight: 400;
    color: #444;
    margin: 0 0 10px;
}

.aboutleft-points{
    margin: 20px 0 40px;
}
.aboutleft-points .points{
    display: flex;
    align-items: center;
    gap: 15px;
}
.aboutleft-points .points figure{font-size: 28px;color: var(--primary-color);background: var(--secondary-color);flex: 0 0 60px;width: 60px;height: 60px;display: inline-block;text-align: center;border-radius: 50px;line-height: 60px;}
.aboutleft-points .points figure img{width: 36px;}
.aboutleft-points .points .inner{
    display: inline;
}
.aboutleft-points .points .inner span{
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    margin: 0 0 10px;
    color: var(--primary-color);
    display: block;
}
.aboutleft-points .points .inner p{
    line-height: 1.1;
}
.aboutleft .aboutus-btns{
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0 0;
}
.aboutleft .aboutus-btns a{
    border-radius: 50px;
    border-bottom-left-radius: 0;
    font-size: 18px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    font-weight: 500;
    padding: 12px 20px;
    line-height: 1;
    color: var(--primary-color);
    transition: .2s linear;
    background: #ffdddf;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
}
.aboutleft .aboutus-btns a:before{
    content: "";
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%) scale(0);
    transition: all .4s linear;
    border-radius: 50px;
    display: block;
}
.aboutleft .aboutus-btns a:hover:before{
    transform: translate(-50%, -50%) scale(10);
}
.aboutleft .aboutus-btns a:hover{
    color: #fff;
}
.aboutleft .aboutus-btns div{
    display: flex;
    align-items: center;
    gap: 10px;
}
.aboutleft .aboutus-btns div i{
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    font-size: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aboutleft .aboutus-btns div span{
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.3;
}
.aboutleft .aboutus-btns div span p{
    font-weight: 500;
    color: #666666;
}
.aboutright{text-align: center; position: relative; z-index: 1;}
.aboutright img{width: 100%;border-radius: 10px;border-bottom-left-radius: 0;}
.aboutright .kge-tag{
    position: absolute;
    bottom: 10px;
    right: -20px;
    width: 250px;
    background: var(--primary-color);
    border-radius: 50px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: 1px solid #3548b4;
    outline-offset: -6px;
    font-size: 24px;
    font-family: var(--secondry-font);
    font-weight: 800;
    letter-spacing: 2px;
    padding: 10px;
}
.aboutright + .aboutexp{
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    margin: 10px 0 0;
    padding: 15px 30px;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    gap: 15px;
    outline: 1px dashed #fff;
    outline-offset: -6px;
}
.aboutright + .aboutexp figure{
    margin: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.aboutright + .aboutexp figure img{width: 50px;}
.aboutright + .aboutexp p{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    width: 115px;
    line-height: 1.3;
}

/* about section style end */

/* widget notice section style start */

.widget-notice{
    padding: 50px 0;
    background: #fff0f1;
}
.widget-notice .widgethead{
    display: flex;
    margin: 0 0 18px;
    text-align: center;
}
.widget-notice .widgethead h3{margin: auto;}
.widget-notice .widgethead a{
    line-height: 1;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.widget-notice .widgethead a i{
    font-size: 22px;
}
.widget-notice .widgetcontent{
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    min-height: 80%;
}
.widget-notice .widgetcontent .list{
    /* text-align: end; */
    padding: 15px;
    box-shadow: 0 2px 10px 2px #e5e5e5;
    border-radius: 10px;
    margin: 0 0 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.widget-notice .widgetcontent .list h4{
    font-size: 16px;
    text-align: left;
}
.widget-notice .widgetcontent .list a{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    transition: .2s linear;
}
.widget-notice .widgetcontent .list a:hover{
    text-decoration: underline;
}
.widget-notice .widgetcontent a{}
.widget-notice .widgetcontent a img{
    width: 100%;
}

.widget-notice .widgetcontent .slick-dots{
    bottom: 10px;
}
.widget-notice .widgetcontent .slick-dots li{margin: 0 5px;width: 10px;height: 10px;background: #ddd;opacity: 0.8;border-radius: 50px;}
.widget-notice .widgetcontent .slick-dots li.slick-active{background: var(--primary-color);border: 1px solid var(--primary-color);}
.widget-notice .widgetcontent .slick-dots li button{
    display: none;
}

/* widget notice section style end */

/* widget association section style start */

.widget-association{
    padding: 50px 0;
}
.widget-association .widgethead{
    justify-content: center;
    margin: 0 0 4%;
}
.widget-association .widgethead h3{
    margin: 0;
}
.association-img{
}
.association-img .slick-list{padding: 40px 20px;}
.association-img a h2{
    font-size: 22px;
    text-align: center;
    margin: 15px 0;
    text-transform: capitalize;
    font-family: var(--secondry-font);
}
.association-img a figure{
    width: 90%;
    display: flex;
    margin: auto;
    box-shadow: 0 0px 10px 1px rgb(0 0 0 / 20%);
    border-radius: 5px;
    overflow: hidden;
    outline: 1px solid #eee;
    outline-offset: -5px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}
.association-img figure img{width: 100%;object-fit: cover;height: 100%;}
.widget-association .slick-arrow.slick-next,
.widget-association .slick-arrow.slick-prev{
    z-index: 9;
    width: 40px;
    height: 40px;
}
.widget-association .slick-arrow.slick-prev{
    left: -9%;
    background: url('../images/leftarrow.svg') no-repeat;
    background-size: contain;
}
.widget-association .slick-arrow.slick-next{
    left: 104%;
    background: url('../images/rightarrow.svg') no-repeat;
    background-size: contain;
}

.widget-association .slick-arrow.slick-prev:before,
.widget-association .slick-arrow.slick-next:before{
    display: none;
}

/* widget association section style end */

/* message section style start */

/* chairman message */ 
.widget-message-box{
    background: #fefbd6;
    padding: 5% 0;
	position:relative;
    /* padding-bottom: 5%; */
}
.widget-message-box:before{content:"";position:absolute;width: 100%;height: 100%;left: 0;background: var(--secondary-color);top: 0;}
.widget-message-box:after{content: ;position: absolute;width: 50%;height: 100%;right: 0;background: var(--primary-color);top: 0;z-index: 0;}

.widget-message-box .head{
    text-align: CENTER;
}
.widget-message-box .head h3{
    margin: 0;
    display: inline-block;
    margin: 0;
    position: relative;
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
}
.widget-message-box .head h3 span{
    border-right: 1px solid #ffffff47;
    font-weight: 600;
    padding-right: 7px;
}
.widget-message-box .leftbox{
    text-align: center;
}
.widget-message-box .leftbox figure{}
.widget-message-box .leftbox figure img{max-width: 100%;width: 300px;border-radius: 10px;display: inline-block;}
.widget-message-box .rightbox{
    text-align: center;
    padding: 20px 25px;
}
.widget-message-box .rightbox h3{
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
    font-family: var(--secondry-font);
}
.widget-message-box .rightbox span{
    font-weight: 500;
    font-size: 16px;
    color: #fff0f1;
    margin: 0 0 10px;
    display: block;
}
.widget-message-box .rightbox p{
    font-size: 16px;
    color: #f1f2f6;
    text-align: center;
    padding-bottom: 10px;
}
.widget-message-box .rightbox a{
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    background: var(--primary-color);
    width: max-content;
    padding: 5px 20px;
    margin: 0 auto;
    transition: all .3s ease;
}
.widget-message-box .rightbox a.btnlink {
}

.widget-message-box .rightbox a:hover {
    background: #fff;
    color: var(--primary-color);
}
.odmeterbox{
    text-align: CENTER;
    padding-top: 0;
    background: none;
}
.odmeterbox ul{
    padding: 0;
    list-style: none;
}
.odmeterbox ul li{
    float: left;
    width: 33.33%;
    padding: 15px;
}
.odmeterbox ul li .innerbox{
    display: flow-root;
    text-align: left;
    /* background: #eee; */
    padding: 15px;
    min-height: 133px;
    padding-left: 110px;
    position: relative;
}
.odmeterbox ul li .innerbox .iconbox{
    display: inline-block;
    width: 100px;
    border: 2px solid #003a70;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    left: 20px;
}
.odmeterbox ul li .innerbox .iconbox img{
    width: 100%;
}
.odmeterbox ul li .innerbox .numbercount{
    display: block;
    padding-top: 5px;
    padding-left: 20px;
    font-size: 3em;
    line-height: normal;
    font-weight: 800;
    color: #003a70;
}
.odmeterbox ul li .innerbox .titletext{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    display: block;
    color: #003a70;
}

/* message section style end */

/* blogs section style start */

.blogcontainer{
    padding: 50px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}
.blogcontainer .blogbox{
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    padding: 10px;
    margin: 0 0 20px;
}
.blogcontainer .blogbox figure{
    overflow: hidden;
    border-radius: 5px;
}
.blogcontainer .blogbox figure img{
    width: 100%;
    border-radius: 5px;
    transition: all .3s ease;
}
.blogcontainer .blogbox:hover figure img {
    transform: scale(1.05);
}
.blogcontainer .blogbox .content{}
.blogcontainer .blogbox .content h3{
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
}
.blogcontainer .blogbox .content p{
    font-size: 15px;
    color: #444;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    width: 100%;
    font-size: 16px;
    color: #383838;
    font-weight: 400;
}
.blogcontainer .blogbox .content span{
    margin: 10px 0;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: var(--secondary-color);
    transition: all .3s ease;
}
.blogcontainer .blogbox .content span:hover{
    font-style: normal;
}


.blogcontainer .onblogbox{}
.blogcontainer .onblogbox .content{}
.blogcontainer .onblogbox .content h1{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 36px;
    margin: 0 0 10px;
}
.blogcontainer .onblogbox .content h2{
    margin: 10px 0 10px;
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 600;
}
.blogcontainer .onblogbox .content h3{
    color: var(--primary-color);
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 600;
    margin: 30px 0 7px;
}
.blogcontainer .onblogbox .content h4{
    color: var(--primary-color);
    font-size: 20px;
    margin: 25px 0 5px;
}
.blogcontainer .onblogbox .content p{
    padding-bottom: 15px;
}

.blogcontainer .onblogbox .content table tbody tr, 
.blogcontainer .onblogbox .content table tbody td, 
.blogcontainer .onblogbox .content table tbody th {
    border: 1px solid #808080;
    padding: 5px;
}

.blogcontainer .onblogbox .content p a{
    display: inline-block;
    color: green;
    font-weight: 500;
}
.blogcontainer .onblogbox .content p span{}
.blogcontainer .onblogbox .content ul{
    padding-left: 20px;
}
.blogcontainer .onblogbox .content ul li{
    padding: 0 0 10px;
    position: relative;
    z-index: 1;    
}
.blogcontainer .onblogbox .content ul li:before{
    content: "\f135";
    color: var(--primary-color);
    font-family: "bootstrap-icons";
    font-size: 25px;
    line-height: 1;
    position: absolute;
    left: -25px;
    /* top: 50%; */
    /* transform: translateY(-50%); */
}
.blogcontainer .onblogbox .content .blogfaqs{}
.blogcontainer .onblogbox .content .blogfaqs h4{
    color: #000;
}
.blogcontainer .onblogbox .content .blogfaqs p{}
.blogcontainer .onblogbox .content figure{margin: 20px 0;}
.blogcontainer .onblogbox .content figure img{width: 50%;}

/* blogs section style end */

/* news section style start */

.newsection {
    background: var(--primary-color);
    padding: 50px 0;
}

.newsection .mainheading {}

.newsection .mainheading h2 {
    color: #fff;
}

.newsection .mainheading h2:before {
    background-color: #fff;
}

.newsection .mainheading h2:after {
    background-color: #fff;
}

.newsection .newsimage {
    background: var(--primary-color);
    padding: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.newsection .newsimage a {}

.newsection .newsimage a img {
    width: 100%;
    border-radius: 5px;
}

/* news section style end */

/* footer section style start */

.footersection {
    padding: 50px 0;
    background: var(--primary-color);
}

.footersection .footersectiobbox {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.footersection .footersectiobbox .footerlogo {
    width: 250px;
    background: #fff;
    padding: 5px;
}

.footersection .footersectiobbox .footerlogo a {}

.footersection .footersectiobbox .footerlogo a img {width: 100%;}

.footersection .footersectiobbox .footerlinks {
    margin: 20px 0 20px;
}

.footersection .footersectiobbox .footerlinks ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

.footersection .footersectiobbox .footerlinks ul li {}

.footersection .footersectiobbox .footerlinks ul li a {
    font-size: 16px;
    font-family: var(--primary-font);
    font-weight: 400;
    color: #ffffff;
    position: relative;
}
.footersection .footersectiobbox .footerlinks ul li a:before {
	content: '';
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 1.5px;
	background: var(--secondary-color);
	border-radius: 10px;
}
.content-copyright-container {
    background: var(--secondary-color);
    padding: 10px 0;
    width: 100%;
    margin: 10px 0;
}

.content-copyright-container p {
    color: #fff;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.content-copyright-container p a {
    text-decoration: underline;
    color: #fff;
}

/* footer section style start */

/* map section style start */

.map-section {}

.map-section.homepage {
    margin: 0 0 -10px;
}

.map-section .map-box {
    padding: 0;
    margin: 0;
}

.map-section .map-box iframe {
    width: 100%;
    height: 400px;
}

/* map section style end */

/* breadcrumb section style start */

.pagebreadcrumb{
    padding: 50px 40px;
    background: url('../images/pagebreadcrumbimg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-position: center;
}
.pagebreadcrumb:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.pagebreadcrumb .breadcrumb-col{padding: 5% 0;display: flex;align-items: center;justify-content: center;flex-direction: column;}
.pagebreadcrumb .breadcrumb-col h1{
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 5px;
    font-size: 2em;
    text-transform: uppercase;
}
.pagebreadcrumb .breadcrumb-col .breadtagline{
    color: #000000;
    font-size: 20px;
    letter-spacing: 0.5px;
}
.breadcrumb-bottom ul,
.pagebreadcrumb .breadcrumb-col ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumb-bottom ul li,
.pagebreadcrumb .breadcrumb-col ul li{
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px;
    display: flex;
}
.breadcrumb-bottom ul li a,
.pagebreadcrumb .breadcrumb-col ul li a{
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}
.breadcrumb-bottom ul li:not(:first-child):before,
.pagebreadcrumb .breadcrumb-col ul li:not(:first-child):before{
    content: "";
    margin: 0 5px;
    color: #000;
    width: 15px;
    background: url("../images/double-right.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: contrast(0) grayscale(0);
}

.breadcrumb-bottom ul li:not(:last-child) a,
.pagebreadcrumb .breadcrumb-col ul li:not(:last-child) a{
    color: #919191;
    font-weight: 600;
}
.breadcrumb-bottom{
    padding: 1% 0;
    background: #7f2a261f;
}
.breadcrumb-bottom ul{}
.breadcrumb-bottom ul li{}
.breadcrumb-bottom ul li span{
    display: inline-block;
    color: var(--primary-color);
    padding: 5px 5px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
}
.breadcrumb-bottom ul li a{}
.breadcrumb-bottom ul li:not(:first-child):before{}
.breadcrumb-bottom ul li:not(:last-child) a{}

/* breadcrumb section style end */

/* pagecontent style start */

.pagecontent{
    padding: 50px 0;    
}
.pagecontent{}
.messagebox .post{
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 30px;
    letter-spacing: 2px;
    position: relative;
}
.messagebox .post:before,
.messagebox .post:after{
    content: "";
    width: 8px;
    height: 8px;
    background: #005382;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 50px;
}
.messagebox .post:after{
    width: 100px;
    height: 2px;
    bottom: -7px;
    left: 15px;
}
.messagebox .type{
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 10px;
}
.messagebox p{
    font-size: 16px;
    text-align: justify;
    font-weight: 400;
    color: #444;
    margin: 0 0 10px;
}
.messagebox ul {
    list-style: disc;
    margin: 0 0 0 30px;
}
.messagebox ul li{font-size: 16px;text-align: justify;font-weight: 400;color: #444;margin: 0 0 10px;}
.messagebox ul li ul {margin: 10px 0 0 30px;}
.messagebox .messages{}
.messagebox .messages p{
}
.messagebox .messages p.admissiontext {
    text-align: center;
    background: #ffffbc;
    font-size: 18px;
    padding: 20px 10px;
    font-weight: 400;
    color: #000;
    border-radius: 20px;
}
.messagebox .messages p.admissiontext a {
    padding: 5px 20px;
    display: inline-block;
    margin: 10px 0;
    background: var(--primary-color);
    border-radius: 5px;
    color: #fff;
}
.messagebox p.lastbold{
    font-weight: 600;
    margin-top: 10px;
}
.messagebox p.firstbold{
    font-weight: 600;
    margin-bottom: 0;
}
.messageimg{
}
.messageimg img{width: 100%; border: 1px solid #eee;}
.messageimg .name{
    color: #005382;
    font-weight: 700;
    font-size: 20px;
    margin: 10px 0 5px;
    text-align: center;
}
.messageimg .degree{
    font-weight: 500;
    color: #606060;
    text-align: center;
    display: block;
}

.pagecontent .gallerybox {margin: 0 0 10px;}

.pagecontent .gallerybox a {}

.pagecontent .gallerybox a figure {
    overflow: hidden;
    height: 300px;
    position: relative;
}

.pagecontent .gallerybox a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
}

.pagecontent .gallerybox a figure span {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #d5888e;
    font-size: 16px;
    background: #372e56;
    position: absolute;
    color: #ffffff;
    right: 0;
    left: 0;
    bottom: 0;
    font-weight: 600;
}

/* pagecontent style end */

/* table style start */

.table-bordered {
    border: 1px solid #ddd;
}

table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5 !important;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd;
}
.table-hover>tbody>tr:hover>* {
    box-shadow: inset 0 0 0 9999px #f5f5f5;
}

.pagecontent table tbody tr td a {
    
color: #0d6efd;
}

/* table style end */

/* contact page style start */

/* CONTCT */ 

.cont-info{
    background: #ffffff;
    display: flow-root;
    padding: 20px 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px 0 rgb(185 185 185 / 14%);
    min-height: 155px;
}
.cont-info .icon{
    float: left;
    padding-right: 15px;
    width: 55px;
}
.cont-info .icon svg{
    width: 40px;
    fill: var(--primary-color);
}
.cont-info .txt{
    float: left;
    width: auto;
}
.cont-info .txt span{
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 0;
    display: inline-block;
    color: var(--primary-color);
}
.cont-info .txt p{
    color: #000;
    font-size: 14px;
    margin-top: 0;
    word-wrap: break-word;
}
.cont-left, .cont-right{
    padding-top: 40px;
}
.cont-left{}
.cont-left span{
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    display: block;
}
.cont-left h3{
    padding: 0px 0 29px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: inline-block;
    position: relative;
    white-space: nowrap;
    margin-top: 5px;
    color: var(--primary-color);
    margin-bottom: 0;
}
.cont-left h3:after,
.cont-left h3:before{
    content: "";
    width: 80%;
    display: inline-block;
    position: absolute;
    bottom: 25px;
    left: 0;
    height: 1px;
    background: #ededed;
    z-index: 1;
}
.cont-left h3:after{
    background: var(--primary-color);
    width: 35%;
    height: 2px;
}
.cont-left h3:before{}
.cont-left form{}
.cont-left form .fields{
    padding-bottom: 10px;
}
.cont-left form .fields :is(input, textarea){
    border-radius: 10px;
    padding: 10px 15px;
    border-width:2px;
    height: auto;
}
.cont-left form .fields :is(input, textarea)::placeholder{
    color: var(--third-color);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}
.cont-left form .fields:is(input, textarea):focus{
    box-shadow: none;
    border-color: var(--secondary-color);
}
.cont-left form .fields-btn{}
.cont-left form .fields-btn input[type='submit']{
    padding: 12px 25px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: .3s ease-in-out;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    white-space: nowrap;
    box-shadow: 0 5px 20px 0 rgb(131 48 54 / 34%);
    letter-spacing: 1px;
    border-radius: 5px;
}
.cont-left form .fields-btn input[type='submit']:hover{
    background: var(--secondary-color);
}
.cont-right{}
.cont-right .map{}
.cont-right .map iframe{
    display: block;
    width: 100%;
    height: 460px;
    border-radius: 15px;
}

/* contact page style end */

/* payment fee page style end */

.pagecontent .paymentbox {}

.pagecontent .paymentbox a {}

.pagecontent .paymentbox a figure {}

.pagecontent .paymentbox a figure img {
    width: 100%;
}

/* payment fee page style end */

/* popup image style start */

/* POPUP */
.coverpagepopup{
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /* background: #000; */
    background-color: #000000bf;
    background-image: -webkit-gradient(linear, left top, right top, from(#b10f57), color-stop(#D10946), color-stop(#FF286B), to(#AE005E));
    background-image: linear-gradient(to right, #0b1527b5, #191e2787, #0d1a389c, #151e3087);
    opacity: 1;
    z-index: 9999;
    display:none;
}
.coverpagepopup .innerbox{
    width: 450px;
    margin: 0 auto;
    margin-top: 4%;
    position: relative;
    padding: 10px;
    background: #ffffff40;
}
.coverpagepopup .innerbox a{}
.coverpagepopup .innerbox a img{
    width: 100%;
}
.coverpagepopup  button{
    position: absolute;
    right: 20px;
    background: #ffffff2b;
    border: none;
    color: #fff;
    font-size: 25px;
    width: 40px;
    height: 40px;
    top: 20px;
}

/* popup image style end */

