﻿
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&amp;display=swap');


a:hover {
    text-decoration: none
}

body {
    margin: 0;
    padding: 0;
   
    font-family: Helvetica;
    height: 100%;
    width: 100%;
    text-align: justify;
    background: #fff;
    overflow-x: hidden;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    outline: none;
}

a {
    text-decoration: none;
}

html {
    -webkit-text-size-adjust: 100%;
}

ul, p {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

*, :before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.color2 {
    color: #f47321 !important;
}

#navbar {
    float: left;
    width: 100%;
}

.haderbox {
    width: 100%;
    background: #164e9b;
    float: left;
}

.menubox {
    width: 100%;
    float: left; /*box-shadow: 0px 5px 8.5px 1.5px rgba(0, 0, 0, 0.21);*/
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 9;
    background: #173355;
    border-bottom: 0;
    padding: 0px 0;
}

.menuin {
    width: 1254px;
    margin: 0px auto;
    position: relative;
    max-width: 100%;
}

#menu {
    float: left;
    width: 100%;
    text-align: center;
}

.logoMenu {
    display: inline-block;
}

a.menuLogo {
    margin: 7px 0;
    float: left
}

.leftMenu {
    display: inline-block;
    float: right;
    margin-top: 0px;
    margin-right: 0;
}

.topHeader {
    background: #173355;
    padding-top: 29px;
}

.menuTop {
    float: right;
}

    .menuTop li {
        display: inline-block;
        position: relative;
    }

        .menuTop li a {
            color: #f9ab03;
            padding: 0 6px;
            font-size: 15px;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            transition: all 0.3s ease;
            display: inline-block;
            line-height: 62px;
            text-transform: uppercase;
        }

            .menuTop li a:hover {
                background: #407ab0;
            }

.topDtl {
    background: url(/images/location.png) no-repeat left center;
    padding-left: 37px;
    color: #fff;
    margin: 7px 0;
    display: inline-block;
    min-height: 30px;
    width: 49%;
}

    .topDtl a {
        color: #fff;
    }

.sliderBox {
    position: relative;
    width: 100%;
    float: left;
    z-index: 0;
}

#slider1 ul li .caption {
    position: absolute;
    z-index: 99;
    bottom: 0;
    color: #fff;
    max-width: 560px;
    font-size: 18px;
    padding: 59px;
    background: rgba(23, 51, 85, 0.8);
    top: 0;
    height: 400px;
    margin: auto;
    margin-left: 150px;
    box-sizing: border-box;
    border-radius: 15px;
}

    #slider1 ul li .caption h4 {
        font-size: 33px;
        font-weight: normal;
    }
    #slider1 ul li .caption a { color: #fff;}
#slider1 ul li.flex-active-slide .caption {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
}

#slider1 .flex-direction-nav a.flex-next:before, #slider1 .flex-direction-nav a:before {
    display: none
}

#slider1 .flex-direction-nav .flex-next {
    background: url(/images/next1.png) center center no-repeat #f9ab03;
    cursor: pointer;
    float: left;
    opacity: 1;
    visibility: hidden;
    right: 20px;
}

#slider1 .flex-direction-nav .flex-prev {
    background: url(/images/prev1.png) center center no-repeat #f9ab03;
    cursor: pointer;
    float: left;
    opacity: 1;
    visibility: hidden;
    left: 20px;
}

#slider1:hover > .flex-direction-nav .flex-next {
    visibility: visible;
    right: 10px;
}

#slider1:hover > .flex-direction-nav .flex-prev {
    visibility: visible;
    left: 10px;
}

#slider1 .flex-control-nav {
    bottom: 30px;
    z-index: 99;
    display: none
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 8deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 8deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -8deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -8deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 2deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 2deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -1deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -1deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 8deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 8deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -4deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -4deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 2deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 2deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -1deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -1deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

#slider1 {
    width: 100%;
    float: left;
    overflow: hidden;
    position: relative;
}

    #slider1:after {
        display: none;
        content: "";
        background: url(/images/sliderbg.png) top left no-repeat;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 9;
        top: 0;
        background-size: cover;
    }

    #slider1 ul li img {
        width: 100%;
    }

.DownloadBx {
    background: rgba(20, 102, 50, 0.95);
    padding: 70px 0;
    width: 100%;
    float: left;
}

.Download_hd {
    color: #fff;
    font-size: 30px;
    margin-top: 10px;
}

.footer .container {
    max-width: 1200px;
}

.footer {
    width: 100%;
    position: relative;
    float: left;
    background: #163355;
    background-size: 100%;
    padding: 50px 0;
    color: #fff;
}

.f14b {
    font-size: 21px;
    margin-top: 15px;
}

.PhoneFooter {
    font-size: 28px;
}

.t20 {
    margin-top: 6px;
    font-weight: 300;
    font-size: 16px;
}

.usefullink li {
    display: block;
    margin-bottom: 10px;
    text-align: left;
}

    .usefullink li a {
        font-size: 16px;
        color: #f47026;
        text-align: left;
        font-weight: 400;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
    }

        .usefullink li a:hover {
            color: #f9ab03;
        }

.footer .footerLeft {
    float: left;
    width: 100%;
    max-width: 555px;
    position: relative;
}

.footerBtm {
    position: relative;
    text-align: center;
    font-size: 15px;
    color: #fff;
    margin-top: 32px;
    font-weight: 300;
}

    .footerBtm a {
        font-size: 14px;
        color: #fff;
        display: inline-block;
    }

        .footerBtm a:hover {
            color: #ffeeae;
        }

.fmstr {
    padding-left: 24%;
}

#app_scroll {
    text-align: center;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.custom-controls {
    float: left;
    text-align: center;
    height: 40px;
    width: 100%;
    position: relative;
}

#app_scroll .slides li p {
    color: #fff;
    font-size: 26px;
    font-weight: 300;
}

.custom-controls .flex-control-paging li a {
    width: 25px;
    height: 25px;
    background: #fff;
    border: 3px solid #fff;
}

    .custom-controls .flex-control-paging li a:hover {
        background: #146632;
    }

.custom-controls .flex-control-nav li {
    margin: 0px 6px;
}

.custom-controls .flex-control-paging li a.flex-active {
    background: #206e3c !important;
}

.escode {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-top: 20px;
}

.scode {
    color: #fff;
    font-size: 26px;
}

.codeIn {
    display: inline-block;
    background: #fff;
    padding: 5px 20px;
    border: 1px dashed #f3281f;
    color: #1c1c1c;
    font-size: 18px;
    font-weight: bold
}

.footerRight {
    float: right;
}

    .footerRight ul li a {
        color: #fff;
        font-size: 14px;
    }

        .footerRight ul li a:hover {
            color: #ffe56c;
        }

    .footerRight ul li {
        margin: 5px 0;
        border-top: 1px solid #4677c4;
        background: url(/images/lig.png) left center no-repeat;
        padding: 3px 0px 4px 15px
    }

        .footerRight ul li:first-child {
            border: 0;
        }

.fbdr {
    margin-top: 20px;
    position: relative;
    width: 100%;
    bottom: 0;
    left: auto; /* right: auto; */
    max-width: 100% !important;
}

.fimg {
    float: right;
}

.fleft {
    float: left;
    max-width: 220px;
    text-align: left
}

.footer p.font18 {
    font-size: 18px;
    font-weight: 600;
}

.subsiibeBx {
    background: #fff;
    padding: 70px 24px;
}

.getCon {
    margin-top: 30px;
    color: #146632;
    font-size: 20px;
    font-weight: 500;
}

.getUpd {
    margin-top: 25px;
    color: #146632;
    font-size: 15px;
}

.formMain {
    margin-top: 114px;
}

    .formMain input {
        background: #146632;
        padding: 0 10px;
        line-height: 64px;
        border: none;
        width: 100%;
        margin-bottom: 12px;
        font-size: 15px;
        font-weight: 300;
        color: #d6b75c;
    }

        .formMain input.submitForm {
            font-size: 20px;
            color: #ffffff;
            font-weight: 400;
        }

.MsgBox {
    float: left;
    width: 100%;
    padding: 48px 0;
    background: #eeeeee;
}

.hd_msg {
    color: #fff;
    font-size: 30px;
    text-align: center;
}

.msg_cont {
    padding: 36px 20px;
    z-index: 1;
    position: relative;
    background: #173355;
    margin-top: 57px;
    height: 360px;
}

.msgCont {
    font-size: 20px;
    color: #fff;
    font-weight: 100;
    margin-top: 20px;
    margin-bottom: 20px;
}

.princImg {
    max-width: none;
 

}

.bdr5 {
    width: 100%;
    max-width: 200px;
    height: 3px;
    background: #c7cfd2;
    display: inline-block;
    margin-top: 23px;
}

.msg_anchor {
    color: #fff;
    font-size: 16px;
    margin-top: 13px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background: #407ab0;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 18px;
    position: relative;
}
    /*.msg_anchor:after{width:207px;height:4px;background:#cccccc;position:absolute;bottom: -24px;content:"";left: -45px; }*/
    .msg_anchor:hover {
        background: #f9ab03;
        color: #fff;
    }

.AboutBox {
   

    background: #f3f3f3;
    width: 100%;
    float: left;
    padding: 40px 0;
}

.about_hd {
    color: #173355;
    font-size: 30px;
    margin-bottom: 40px;
    position: relative;
}

    .about_hd:after {
        position: absolute;
        content: "";
        width: 67px;
        height: 4px;
        background: #f47321;
        left: 0;
        bottom: -9px;
    }

.AboutBox p {
    font-size: 14px;
    color: #173355;
    font-weight: 500;
    margin-bottom: 20px;
}

.about_anchor {
    color: #fff;
    font-size: 16px;
    margin-top: 13px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background: #407ab0;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 18px;
    position: relative;
}
.about_anchor1 {
    text-transform: uppercase;
    font-size: 15px;
    width: 100%;
    max-width: 200px;
    text-align: center;
    border-radius: 23px;
    padding: 12px 40px;
}

    .about_anchor:hover {
        background: #f9ab03;
        color: #fff;
    }

.aboutBx2 {
   
    max-width: 330px;
    display: inline-block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.aboutBx2_hd {
    position: absolute;
    width: 100%;
    text-align: center;
    background: rgba(23, 51, 85, 0.8);
    height: 88px;
    bottom: 0;
    color: #fff;
    align-items: center;
    display: flex;
    justify-content: center;
}

.FounderBox {
    float: left;
    width: 100%;
    padding: 50px 0;
}

    .FounderBox img {
        float: left;
        border-radius: 15px;
    }

    .FounderBox p {
        font-size: 16px;
        color: #173355;
    }

.AchBox {
    margin-top: 20px;
    background: #173355;
    width: 100%;
    float: left;
    padding: 40px 0;
    color: #fff;
}

    .AchBox p {
        margin-bottom: 10px;
    }

.ach_hd {
    color: #fff;
    font-size: 30px;
    margin-bottom: 40px;
    position: relative;
    margin-top: 80px;
}

    .ach_hd:after {
        position: absolute;
        content: "";
        width: 67px;
        height: 4px;
        background: #f47321;
        left: 0;
        bottom: -9px;
    }


.achImg img {
    width: 472px;
    height: 472px;
}

#AchievementHome_lblAchievement {
    text-align: center;
}

.AchLink {
    margin-top: 33px;
}

.infrs_up_img {
    width: 472px;
    height: 472px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-align: center;
}

p.dd {
    font-size: 14px;
    color: #146632;
    margin-top: 19px;
    float: left;
}

.slideTxt {
    float: left;
    width: 100%;
    margin-top: 10px;
    font-size: 20px;
    text-align: left;
}

.gallery {
    float: left;
    width: 100%;
    padding: 50px 0;
    margin: 0 !important
}

.headinggallery {
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 300;
    font-size: 34px;
    color: #173355;
}

.glryRpt {
    margin-bottom: 25px;
}
#newnotice_new_lblnoticedownloads .date_sec, #newnotice_new_lblnoticedownloads .news_iconimg {
    display: none
}
.slick-initialized .slick-slide .nWrap {
    display: block;
   
    padding: 0px 10px;
  
    
}
#newnotice2_lblnoticedownloads .date_sec, #newnotice2_lblnoticedownloads span.eventH1, .news_iconimg {
    display: none
}

.slick-initialized .slick-slide .nWrap1 {
    display: block;
    border: 1px solid #2e714b;
    padding: 5px 5px 5px 15px;
    height: 120px;
    border-radius: 10px;
}

.slick-initialized .slick-slide .nWrap1:hover {
    border: 1px solid #f00606;
}
.slick-initialized .slick-current .nWrap1 {
    border: 1px solid #f00606;
}
    .noticetext a {
        color: #000;
    }
.notice_span {
    color: ##2e714b;
}
.NewsNotice {
    float: left;
    width: 100%;
    padding: 50px 0;
    
}

.News_Hd {
    font-size: 30px;
    color: #18326e;
    position: relative;
    font-family: Helvetica;
}

     

.newsNotice_hd1 {
    display: inline-block;
    padding-right: 15px;
}

.notice_img {
    display: inline-block;
    float: left;
    width: 50%;
    height: 210px;
    overflow: hidden
}

    .notice_img img { /*width:110px; height:92px; object-fit:cover;*/
        width: 100%;
        max-width: 272px;
        float: left;
    }

.Noitce_des {
    display: inline-block; /*width: calc(100% - 292px);*/
    width: 50%;
    float: right;
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 20px;
}

.slick-current .Noitce_des {
    border: 1px solid #146632
}

.NoticeView {
    margin-left: 247px;
}

.mttop1 {
    margin-top: -37px;
}

.NoticeView span {
    position: relative;
    top: -1px
}

.noticeDate {
    color: #146632;
    margin-bottom: 0px;
    display: block;
    float: left;
    width: 100%;
}

.noitceCont {
    display: block;
    float: left;
    width: 100%;
}

.Noitce_des .noitceCont {
    padding-right: 60px;
}

.noitceCont a {
    color: #444444;
}

.slick-current .Noitce_des .noitceCont {
    background: url(/images/new.png) center right no-repeat
}

.NewsSlide {
    width: 100%;
    float: left;
}

.newsArrow {
    margin: 15px;
    padding-left: 17px;
    text-align: center
}

.imp_links {
    background: #173355;
    margin: 0;
    width: 100%;
    float: left;
   
}
.container {
    max-width: 1254px;
}

.SendBtn {
    color: #fff;
    font-size: 20px;
    margin-top: 13px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background: #146632;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 0;
    position: relative;
    border: 0;
    width: 100%;
    line-height: 56px;
    font-weight: 500;
}

.get {
    color: #146632;
    font-size: 20px;
    font-family: Helvetica;
}

.gupd {
    color: #146632;
    font-size: 15px;
    font-family: Helvetica;
    font-weight: 500;
}

.bg44 {
    background: #fff;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 52px;
    color: #d6b75c;
    background-color: #146632;
    background-clip: padding-box;
    border: 1px solid #146632;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-radius: 0;
}

:placeholder {
    color: #d6b75c;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Edge 12 -18 */
    color: #d6b75c;
}

::placeholder {
    color: #d6b75c;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: #d6b75c;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d6b75c;
    opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #d6b75c;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #d6b75c;
}

.form-control:focus {
    color: #495057;
    background-color: #173355;
    border-color: #173355;
    outline: 0;
    box-shadow: none;
}

.imp_links {
    background: #173355;
    margin: 0;
    width: 100%;
    float: left;
    margin-left: 15px;
}

.QuickLinks {
    background: #407ab0;
    text-align: center;
    color: #fff;
    font-size: 26px;
}

.arrowQuick {
    margin: 15px 0;
    text-align: center;
    min-height: 12px;
}

.QuickLinks_in {
    width: 100%;
    float: left;
    padding: 18px 20px;
}

    .QuickLinks_in ul li {
        display: inline-block;
        float: left;
    }

        .QuickLinks_in ul li a {
            border-left: 1px solid #485e79;
        }

        .QuickLinks_in ul li:first-child a {
            border: 0;
        }

.icons {
    text-align: center;
    float: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    height: 203px;
    width: 295px;
}

    .icons:hover {
        background: #407ab0;
        color: #fff;
    }

.icon_img {
    margin-bottom: 10px;
    margin-top: 44px;
}

    .icon_img img {
        display: inline-block;
    }

.icon_Name {
    text-align: center;
    font-size: 21px;
    color: #d6b75c;
}

.applyAddmission {
    background: #00491b;
    text-align: center;
    color: #fff;
    font-size: 26px;
    float: left;
    line-height: 31px;
    padding: 30px 0;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

    .applyAddmission:hover {
        background: #f7494b;
        color: #fff;
    }

.NoticeView {
    color: #146632;
    font-size: 25px;
    margin-top: 13px;
    float: left;
}

.borderNotice {
    border-bottom: 1px solid #146632;
    margin-top: -11px;
}

.master-img {
    float: right;
    margin-left: 15px;
}

.quickAccess_Bx {
    float: right;
    position: absolute;
    right: 0; z-index: 1;
    top: 60px;
}

.quickAccess {
    background: url(/images/quickAccess.png) no-repeat;
   
    display: inline-block;
    color: #fff;
    background: url(/images/new_flash.gif) 95% 0px no-repeat #173355;
    padding: 10px 15px;
    border-radius: 23px;
}
.quickAccess:hover{color:#f9ab03}
.quickAccessBx {
    background: rgba(23, 51, 85, 0.55);
    width: 250px;
    padding: 10px 10px;
    float: left;
    border-radius: 10px;
    position: absolute;
    right: 0;
    top: 62px;
}

    .quickAccessBx:after {
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid rgba(23, 51, 85, 0.55);
        content: "";
        position: absolute;
        right: 11px;
        top: -8px;
    }

    .quickAccessBx a {
        transition: all 0.5s ease-out;
        
        text-align: center;
        line-height: 36px;
        color: #173355;
        background: #fff;
        background: #fff;
        padding: 0 13px;
        margin: 6px 5px;
        border-radius: 20px;
        float: left;
        width: 100%;
        font-size: 15px;
    }
    

.ecareico {
    background: #50992b !important;
    color: #fff !important
}

.quickAccessBx a:hover {
    background: #f9ab03;
    background: #f9ab03;
    -webkit-box-shadow: 0px 3px 5px 0px #f9ab03;
    -moz-box-shadow: 0px 3px 5px 0px rgba(15,82,40,1);
    box-shadow: 0px 3px 5px 0px rgb(249 249 249);
}

.glryRpt a {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: inline-block;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

    .glryRpt a img {
        width: 100%; /*object-fit: cover;*/
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
    }

    .glryRpt a:hover img {
        transform: scale(1.2)
    }
/*Master Page*/
.ContentContainer {
    width: 100%;
    float: left;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hd_Master {
    font-size: 29px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 24px;
    margin-top: 10px;
    width: 100%;
    float: left;
    text-align: center;
    background: #173355;
    color: #fff;
    padding: 0 17px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.Content_Master {
    width: 100%;
    float: left;
    line-height: 23px;
    color: #3e3e3e;
    min-height: 200px;
}
.accordionHeader_Y {
    width: 100%;
    text-align: left;
    background: #173355 url(/images/ajax-arrow1.png) no-repeat 1% center;
    color: #ffffff;
    border: 1px solid #0060aa;
    margin: 8px 0px 0px 0px;
    font-size: 18px;
    padding: 10px 15px 10px 40px;
    box-sizing: border-box;
    cursor: pointer;
    text-transform: uppercase;
}

.accordionHeaderSelected,.accordionHeader_select {
    width: 100%;
    text-align: left;
    background: #f9ab03 url(/images/ajax-arrow.png) no-repeat 1% center;
    color: #ffffff;
    border: 1px solid #f9ab03;
    margin: 8px 0px 0px 0px;
    font-size: 18px;
    padding: 10px 15px 10px 40px;
    box-sizing: border-box;
    cursor: pointer;
    text-transform: uppercase;
}

.accordionContent_Y {
    background-color: #fff;
    padding: 25px;
    padding-top: 22px;
    border: 1px solid #f9ab03;
}

.innerH3 {
    color: #417ab1;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.Content_Master p {
    text-align: justify;
    margin-bottom: 15px;
}

.innerUl li {
    background: url(/images/bullet.png) 0px 6px no-repeat;
    padding-left: 20px;
    margin-bottom: 15px;
}

.innerImg {
    margin-bottom: 15px;
    display: inline-block;
    float: right;
    margin-left: 15px;
}

.img_right {
    float: right;
    margin-left: 10px;
}

.left_img {
    float: left;
    margin-right: 10px;
}

.staff {
    text-align: center;
}

    .staff li {
        display: inline-block;
        margin: 10px;
        width: 28%;
        box-shadow: 0px 0px 7px 0px rgb(71 71 71 / 75%) inset;
        -webkit-box-shadow: 0px 0px 7px 0px rgb(71 71 71 / 75%) inset;
        -moz-box-shadow: 0px 0px 7px 0px rgba(71,71,71,0.75) inset;
        padding: 10px;
        box-sizing: border-box;
    }

.post-title {
    font-size: 15px;
    margin-top: 10px;
}

.border-footer {
    border-right: 1px solid #48667c;
}

.usefullink {
    margin-left: 200px;
}

.boxVision {
    box-shadow: 0px 0px 7px 0px rgb(71 71 71 / 75%) inset;
    -webkit-box-shadow: 0px 0px 7px 0px rgb(71 71 71 / 75%) inset;
    -moz-box-shadow: 0px 0px 7px 0px rgba(71,71,71,0.75) inset;
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    float: left;
}

.faq h4 {
    font-size: 20px;
}

.faq h3 {
    color: #000000;
    padding: 10px;
    font-size: 28px;
    text-align: center;
    background: #ffb516;
    font-weight: 600;
}

.faq ul li {
    padding-left: 0;
    list-style: circle;
    font-size: 19px;
}

.list-faq li {
    text-transform: capitalize;
    color: #fff;
    line-height: 12px !important;
    list-style: circle !important;
    padding-left: 0 !important;
}

.contact {
    background: url(../img/contact-bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 100px 0;
}

.faq-top {
    background: url(../img/faq.jpg);
    background-position: center;
    background-size: cover;
    padding: 100px 0;
}

.blink-bg {
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    animation: blinkingBackground 3s infinite;
}

@keyframes blinkingBackground {
    0% {
        background-color: #132f57;
    }

    100% {
        background-color: #ef0a1a;
    }
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

    .faq .faq-list li {
        color: #000;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .faq .faq-list a {
        padding: 10px;
        display: block;
        position: relative;
        font-size: 21px;
        background: #132f57;
        color: #ffb516;
        text-decoration: none;
        border-radius: 14px;
        border: 1;
        box-shadow: 3px 3px #ffb516;
    }

    .faq .faq-list i {
        font-size: 16px;
        position: absolute;
        right: 4px;
        top: 16px;
        transition: 1s;
    }

.faq-title {
    text-align: center;
    font-size: 17px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    color: #ffffff;
}

.faq .faq-list p {
    padding-top: 20px;
    /* margin-bottom: 20px; */
    font-size: 19px;
    color: #000;
    line-height: 22px;
}

.collapsed i.fas.fa-arrow-up {
}

.collapsed i.fa.fa-arrow-up {
    transform: rotate(180deg);
}

.faq ul li {
    list-style: none;
}

.socialIcon {
    display: block;
    float: left;
    width: 100%;
    margin-top: 7px;
}

    .socialIcon ul {
    }

        .socialIcon ul li {
            display: inline-block;
            margin: 0 1px;
            width: 25px;
            height: 25px;
            transition: all 0.5s ease-out;
            border-radius: 20px;
        }

            .socialIcon ul li:hover {
                -webkit-box-shadow: 0px 0px 5px 0px rgb(249 171 3);
                -moz-box-shadow: 0px 0px 5px 0px rgba(249,171,3,1);
                box-shadow: 0px 0px 5px 0px rgb(249 171 3);
                background: #f9ab03;
            }

            .socialIcon ul li a {
                width: 25px;
                height: 25px;
                display: inline-block;
                background-image: url(/images/socialIcon.png);
                background-repeat: no-repeat;
            }

                .socialIcon ul li a.instragram {
                    background-position: -16px -1px;
                }

                .socialIcon ul li a.whatapp {
                    background-position: -45px -1px;
                }

                .socialIcon ul li a.facebook {
                    background-position: -73px -1px;
                }

                .socialIcon ul li a.youtube {
                    background-position: -101px -1px;
                }

                .socialIcon ul li a.linkdin {
                    background-position: -129px -1px;
                }

                .socialIcon ul li a.twitter {
                    background-position: -158px -1px;
                }

@media only screen and (max-width: 767px) {
    .infrs_up_img, .achImg img {
        max-width: 100%;
        height: auto;
    }

    #homephotog_LBPhoto {
        display: block;
        max-height: 315px;
        overflow: hidden;
    }
}

@media only screen and (max-width: 1024px) {
    .infrs_up_img, .achImg img {
        max-width: 100%;
        height: auto;
    }

    .AboutBox p {
       

        overflow: scroll
    }
}
@media only screen and (max-width: 1022px) {
    .icons {
        height: 150px;
        float: none;
        width: 174px;
        display: block;
    }
}
    @media only screen and (max-width: 1140px) {

        .NoticeView {
            margin: 0;
        }

        .slick-prev {
            left: 0;
        }

        .slick-next {
            right: 0;
        }

        #slider1 ul li .caption {
            height: auto;
            margin: 0;
            padding: 10px;
            font-size: 15px;
            float: left;
            top: 40px;
            max-width: 360px;
            max-height: 200px;
        }

            #slider1 ul li .caption a {
                color: #fff;
            }

                #slider1 ul li .caption a:hover {
                    color: #f9ab03;
                }

            #slider1 ul li .caption h4 {
                font-size: 18px;
                font-weight: normal;
                text-align: justify;
            }

        .flex-direction-nav a {
            top: 29%;
        }

        .topDtl {
            background: url(/images/location.png) no-repeat left center;
            padding-left: 30px;
            color: #fff;
            margin: 7px 0;
            display: inline-block;
            min-height: 30px;
            width: 50%;
            text-align: left;
            float: left;
        }

        .menubox {
            position: relative;
        }

        .logoMenu {
            width: 100%;
            float: left;
            text-align: center;
        }

        .menuTop li a {
            padding: 0 6px;
            line-height: 30px;
        }

        .icons {
            float: none;
            width: 238px;
            display: block;
        }

        .menuTop {
            float: left;
            text-align: center;
            width: 100%;
        }

        .leftMenu {
            width: 100%;
            float: left;
        }

       

        .quickAccess {
            background: url(/images/quickAccess.png) no-repeat;
            width: 154px;
            height: 45px;
            display: inline-block;
            float: left;
            position: relative;
            right: 0;
            margin-top: -17px;
        }

        .quickAccessBx {
            top: 27px;
            right: 5px;
        }

        .header {
            display: none;
        }

        .princImg {
            max-width: 100%;
            margin-left: 0;
        }

        .sliderBox {
            margin-top: 0;
        }

        .MsgBox {
            height: auto;
            margin-top: 20px;
        }

        .msg_cont {
            padding: 20px;
            margin: 0;
        }

        .imp_links {
            background: #146632;
            margin: 0;
            width: 100%;
            float: left;
            margin-left: 0px;
        }

        .applyAddmission {
            width: 100%;
        }

        .FounderBox {
            margin-top: 20px;
            background-size: cover;
        }

        .bdaybx {
            width: auto;
        }

        .topperBx {
            margin-top: 20px;
            background-size: cover;
        }

        .toppers_content {
            margin-top: 20px;
        }

        .hd_msg {
            font-size: 28px;
        }

        .msg_anchor {
            font-size: 18px;
        }

        .FounderBox .Founder-name {
            font-size: 28px;
        }

        .headinggallery {
            font-size: 28px;
        }

        .headingBday {
            font-size: 28px;
        }

        .ContentContainer {
            margin-top: 0;
        }

        .staff li {
            display: inline-block;
            margin: 10px 1%;
            width: 46%;
            box-shadow: 0px 0px 7px 0px rgb(71 71 71 / 75%) inset;
            -webkit-box-shadow: 0px 0px 7px 0px rgb(71 71 71 / 75%) inset;
            -moz-box-shadow: 0px 0px 7px 0px rgba(71,71,71,0.75) inset;
            padding: 10px;
            box-sizing: border-box;
        }

        .usefullink {
            margin-left: 0;
        }

        .achImg {
            margin-top: 15px;
        }

        .AboutBox .col-md-4 {
            margin-bottom: 20px;
            text-align: center;
        }

            .AboutBox .col-md-4:first-child {
                text-align: left;
            }
    }

    @media only screen and (max-width: 767px) {
        .sliderQuickLinks {
            text-align: center
        }
        .QuickLinks_in ul li {
            float: none;
        }
        .innerImg {
            float: none;
            display: block;
            margin: 0;
        }

        .innerImg {
            margin: 0;
            margin-bottom: 15px;
            max-width: 100%;
        }

        #slider1 ul li .caption {
            display: none
        }

        .msg_cont {
            height: auto
        }

        .NoticeView {
            margin: 0;
        }
    }

    @media only screen and (min-width: 1141px) and (max-width: 1200px) {

        .mobile-menu {
            display: none;
        }

       

        .princImg {
            max-width: 100%;
            margin-left: 0;
        }

        .MsgBox {
            background: #d6b75c;
            height: auto;
            margin-top: 20px;
        }

        .msg_cont {
            padding: 20px;
        }
    }

    