@import "custom.css";

/*HEADER TOP*/
.header-top {
    background: var(--sc);
}

.header-rop-right {
    text-align: right;
}

.header-rop-right a {
    color: var(--wc);
    font-weight: 500;
}

.header-rop-right a::after {
    content: "|";
    padding: 0 5px;
}

.header-rop-right a:last-child::after {
    content: '';
}

/*HEADER TOP END*/

/*HEADER*/
header {
    background: var(--wc);
}

header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 30px;
    margin: 0;
}

.active {
    color: var(--sc);
}

.logo img {
    width: 90px;
    margin-right: 15px;
}

.logo.menubar-mobile {
    cursor: pointer;
    padding: 8px 0;
}

.menu-section {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--sc);
}

.menubar {
    /* background: var(--sc); */
}

.menubar>ul>li {
    display: inline-block;
}

.menubar>ul>li>a {
    text-transform: capitalize;
    font-weight: 500;
    padding: 10px 5px;
    -webkit-transition: .3s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    font-size: 13px;
    color: var(--wc);
}

.menubar>ul>li>a:hover {
    color: var(--yc);
}

.menubar ul li a i {
    font-size: 11px;
    color: var(--wc) !important;
}

.menubar ul li a img {
    width: 16px;
    margin-right: 2px;
}

.menubar ul li a:hover {
    color: var(--yc) !important;
}

.menubar ul li a:hover i {
    color: var(--yc) !important;
}

.sub-btn {
    position: relative;
}

.sub-btn:hover a {
    color: var(--yc);
}

.sub-btn:hover>a>i {
    color: var(--yc) !important;
}

.sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--wc);
    width: 220px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 5px;
    z-index: 3;
    border-top: 1px solid var(--wc);
}

.sub-btn:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    transform: scaleY(100%);
}

.sub-menu a {
    display: block;
    width: 100%;
    padding: 6px 10px;
    text-transform: capitalize;
    -webkit-transition: .3s;
    -o-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
    text-transform: capitalize;
    font-weight: 500;
    border-bottom: 1px solid #eeeeee;

}

.sub-menu a:hover {
    background: var(--sc);
    color: var(--yc);
}

.sub-menu a>i {
    color: var(--pc) !important;
}

.child-btn:hover>a {
    background: var(--sc);
    color: var(--yc) !important;
}

.child-btn:hover>a i {
    color: var(--yc) !important;
}

.sub-btn a span {
    padding: 0 10px;
    font-weight: 500;
    color: #C9C6C6;
}

.child-btn a {
    color: var(--pc) !important;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    font-weight: 500;
}

.sub-btn a i {
    color: var(--pc) !important;
    font-size: 16px;
}

.sub-btn>a>i {
    color: var(--wc);
}

.sub-btn:hover>a>i {
    color: var(--yc);
}

.sub-btn {
    position: relative;
}

.child-menu {
    position: absolute;
    top: 0;
    right: 101%;
    background: var(--wc);
    width: 220px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 5px;
    z-index: 3;
}

.child-menu.right {
    right: inherit;
    left: 101%;
}

.child-btn:hover .child-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    transform: scaleY(100%);
}

.child-btn {
    position: relative;
}

.menubar .child-btn>a>i {
    float: right;
    font-size: 12px;
    color: var(--pc) !important;
}


.menubar .menu-active {
    color: var(--yc);
}

.sub-btn a span {
    padding: 0 5px;
    font-weight: 500;
    color: var(--pc2);
}

header .fa-bars {
    font-size: 25px;
    cursor: pointer;
    padding: 10px;
}

.menubar ul li.sign-in a {
    background: #5D5FEF;
    color: var(--wc);
    border-radius: 15px;
}

/*HEADER END*/

/*MOBILE MENU*/

/*ACCORDION CUSTOM*/
.mobile-logo img {
    width: 90px;
    margin-left: 10px;
}

.mobile-logo i {
    float: right;
    margin: 5px 20px;
    color: var(--pc);
    cursor: pointer;
    height: 25px;
    width: 25px;
    line-height: 25px;
    border: 1px solid var(--pc);
    border-radius: 50%;
    text-align: center;
    font-size: 14px;

}

.mobile-logo i:hover {
    border: 1px solid var(--sc);
    color: var(--sc);
}

.mobile-logo i:hover {
    color: var(--sc);
}

.custom.accordion-button {
    text-transform: capitalize;
    font-size: 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: var(--pc);
    font-weight: 400;
}

.custom.accordion-button:hover {
    color: var(--sc);
}

.custom.accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid #ccc;

}

.custom.accordion-button:not(.collapsed) {
    color: var(--sc);
    background: var(--rc);
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    font-weight: 400;
}

.none.accordion-button:not(.collapsed)::after {
    content: none;
    -webkit-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}


.none.accordion-button::after {
    content: none;
}

.custom.accordion-body {
    padding: 0 0px;
}

.custom.accordion-body ul {
    padding: 0;
    margin: 0;
}

.custom.accordion-body ul li {
    list-style: none;
    padding: 8px 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.custom.accordion-body ul li a {
    text-decoration: none;
    font-size: 15px;
    text-transform: capitalize;
    color: var(--pc);
    font-weight: 400;
    display: inline-block;
    margin-left: 40px;
}

.custom.accordion-body ul li a i {
    font-size: 10px;
    margin-right: 10px;
}

.custom.accordion-body ul li:hover {
    color: var(--wc);
    background: var(--rc);
}

.custom.accordion-body ul li:hover a {
    color: var(--sc);
}

.custom.accordion-item a {
    text-decoration: none;
    display: block;
    width: 100%;
}

.custom.accordion-item .accordion-button {
    display: block;
    width: 100%;
}

.accordion-button.custom i {
    padding: 0 10px;
}

.custom.accordion-button:focus {
    border: none;
}

/*ACCORDION CUSTOM END*/


.mobile-menu {
    width: 300px;
    position: fixed;
    left: -380px;
    top: 0;
    z-index: 3;
    background: var(--wc);
    height: 100%;
    overflow: auto;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    padding: 10px 0;
}

#mobile-open {
    border: 2px solid var(--sc);
    border-radius: 5px;
    height: 40px;
    width: 40px;
    font-size: 20px;
    text-align: center;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

#mobile-open:hover {
    color: var(--sc);
}

#mobileOverlay {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background: #0000005c;
    z-index: 2;
    cursor: pointer;
}

.mobileAdd {
    left: 0 !important;
    width: 300px;
}

.mobile-overlay {
    position: inherit !important;
}

/*MOBILE MENU END*/

.carousel-inner .carousel-item img {
    max-height: 300px;
}

.slide-notic {
    position: relative;
    background: #F2F2F2;
    padding: 4px;
}

.slide-notic a {
    color: var(--tc);
    margin-right: 20px;
    font-weight: 500;
}

.slide-notic a i {
    font-size: 20px;
}

.marque-fix {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--tc);
    padding: 10px;
    height: 100%;
    color: var(--wc);
}

.teacher-title p {
    text-align: justify;
}

.teacher-title img {
    margin-right: 15px;
}

.teacher-title a {
    font-style: italic;
    color: var(--tc);
    font-size: 15px;
    font-weight: 500;
}

.student-section h4 {
    font-weight: 600;
    font-size: 24px;
    color: var(--sc);
}

.stadent-box {
    text-align: center;
}

.stadent-box img {
    margin-bottom: 10px;
    width: 100%;
}

.stadent-box h6 {
    font-size: 16px;
    font-weight: 600;
}

.stadent-box p {
    font-size: 13px;
    margin: 0;
    line-height: 18px;
}


.page-title {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.page-title h5 {
    display: inline;
    background-color: #006da8;
    color: #fff;
    padding: 10px;
    font-size: 13px;
}


.message-text {
    text-align: justify;
}

.message-text p {
    text-align: justify;
}

.aboutinfo-text {
    text-align: justify;
}

.aboutinfo-text p {
    text-align: justify;
}






/* notice board */
.notice-board-wrapper .notice-board-title {
    background: #b2bec8;
    padding: 15px 25px;
    font-size: 20px;
    font-weight: bold;
}

.notice-board-wrapper .notice-board {
    background: #d9dde1;
    padding: 15px 20px;
    position: relative;
    min-height: 411px;
}

.notice-board-wrapper .notice-board ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 25px;
    position: relative;
}

.notice-board-wrapper .notice-board ul::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background: #b2bec8;
    left: 0px;
    top: 0;
    z-index: 1;
}

.notice-board-wrapper .notice-board ul::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background: #b2bec8;
    right: 0;
    top: 0;
}

.notice-board-wrapper .notice-board ul li:first-child::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background: #b2bec8;
    left: 0;
    top: 0;
}

.notice-board-wrapper .notice-board ul li {
    background: #fff;
    position: relative;
    padding: 1px;
}

.notice-board-wrapper .notice-board ul li::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background: #b2bec8;
    right: 0;
    bottom: 0;
}

.notice-board-wrapper .notice-board ul li a {
    padding: 10.5px 15px;
    display: block;
    text-decoration: none;
}

.notice-board-wrapper .notice-board ul li a:hover {
    text-decoration: none;
}

.notice-board-wrapper .notice-board ul li:hover::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background: #ff4e31;
    right: 0;
    bottom: 0;
}

.notice-board-wrapper .notice-board ul li a span {
    color: #b2bec8;
    font-size: 12px;
    line-height: 1.8;
}

.notice-board-wrapper .notice-board ul li a h4 {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.notice-board-wrapper .notice-board .allNotice {
    position: absolute;
    bottom: 10px;
    right: 20px;
    text-transform: uppercase;
    color: #ff4e31;
    font-size: 16px;
}

.important-link {
    border: 1px solid #cccccc;
    border-radius: 2px;
}

.important-link h4 {
    font-size: 16px;
    margin: 0;
    padding: 10px;
    color: var(--wc);
    background: var(--tc);
    text-align: center;
}

.single-link {
    background: #ECF8FF;
    padding: 5px;
    margin-bottom: 10px;
    width: 100%;
    display: block;
}

.single-link i {
    font-size: 12px;
    margin-right: 10px;
    color: var(--tc);
}

.single-link span {
    font-weight: 500;
}

.single-link span:hover {
    text-decoration: underline;
}

/* notice board */


/* notice style start */
.notice_section {
    padding: 75px 0 45px;
    background: #fff;
}

/*.notice_section .row {*/
/*    margin-right: -10px;*/
/*    margin-left: -10px;*/
/*}*/
/*.notice_section .row > .col,*/
/*.notice_section .row > [class*=col-] {*/
/*    padding-right: 10px;*/
/*    padding-left: 10px;*/
/*}*/

.notice_section .notice_board {
    border-top: 8px solid #0B499D;
    text-align: justify;
    padding: 30px 25px;
    width: 100%;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 8px 8px 8px #ddd;
}

.notice_section .aside_content {
    box-shadow: 0 8px 8px 8px #ddd;
    margin-bottom: 20px;
    background: #F7F7F7;
}

.notice_section form {
    border-bottom: 1px solid #0B499D;
    margin-bottom: 15px;
}

.notice_section .form-control {
    border: 1px solid #ced4da;
    border-radius: 2px;
    line-height: 40px;
    height: 40px;
    resize: none;
}

.notice_section .src_btn {
    transition: all 0.2s;
    background: #0B499D;
    line-height: 40px;
    box-shadow: none;
    padding: 0 15px;
    height: 40px;
    outline: none;
    color: #FFF;
    border: none;
    font-size: 14px;
    border-radius: 2px;
}

.notice_section .src_btn:hover {
    background: #08336D;
}

.notice_section .aside_content h4 {
    background: #0B499D;
    font-weight: 600;
    font-size: 23px;
    padding: 0 15px;
    color: #fff;
    margin: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
}

.notice_section .notice_list {
    margin: 0;
}

.notice_section .notice_list li:last-child {
    border: none;
}

.notice_section .notice_list li {
    border-bottom: 1px solid #ccc;
    padding: 10px 0 15px;
}

.notice_section .notice_list .title:hover {
    color: #000;
}

.notice_section .notice_list .title {
    display: inline-block;
    margin-bottom: 5px;
    line-height: 20px;
    font-size: 18px;
    color: #0B499D;
    font-weight: 600;
    transition: all .2s;
}

.notice_section .notice_list span {
    font-size: 13px;
    display: block;
    margin: 12px 0;
    font-weight: 500;
}

.notice_section .notice_list .read_more:hover {
    background: #0B499D;
    color: #fff;
}

.notice_section .notice_list .read_more i {
    vertical-align: middle;
    font-size: 12px;
    margin: -3px 2px 0 0;
}

.notice_section .notice_list .read_more {
    border: 1px solid #0B499D;
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    color: #0B499D;
    min-width: 100px;
    padding: 4px 12px;
    text-align: center;
    border-radius: 20px;
    transition: all .2s;
}

.notice_section .aside_list li {
    border-bottom: 1px solid #ccc;
}

.notice_section .aside_list li:last-child {
    border: none;
}

.notice_section .aside_list {
    padding: 0 15px;
    margin: 0;
}

.notice_section .aside_list a:hover {
    color: #000;
}

.notice_section .aside_list a {
    transition: all .2s;
    position: relative;
    font-weight: 600;
    color: #0B499D;
    width: 100%;
    display: inline-block;
    padding: 5px 45px 5px 0;
}

.notice_section .aside_list small {
    border-radius: 15px;
    position: absolute;
    font-size: 10px;
    right: 0;
    top: 10px;
    color: #fff;
    padding: 0 5px;
    min-width: 25px;
    text-align: center;
    background: #0B499D;
}


.notice_section .notice_content {
    box-shadow: 0 8px 8px 8px #ddd;
    margin-bottom: 20px;
}

.notice_section .notice_summary {
    overflow: hidden;
    margin: 0;
    position: relative;
}

.notice_section .notice_content .download:hover {
    background: #08336D;
    color: #fff;
}

.notice_section .notice_content .download {
    display: inline-block;
    background: #0B499D;
    transition: all .2s;
    align-items: center;
    position: absolute;
    right: 5px;
    bottom: 5px;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 2px;
}

.notice_section .notice_content .download i {
    display: inline-block;
    font-size: 10px;
    margin-top: -3px;
    margin-right: 5px;
    vertical-align: middle;
}

.notice_section .notice_summary img {
    transition: all .2s;
    object-fit: cover;
    height: 215px;
    width: 100%;
}

.notice_section .notice_content:hover img {
    transform: scale(1.05);
}

.notice_section .notice_article {
    padding: 20px 20px 30px;
    background: #F2F2F2;
    position: relative;
    min-height: 225px;
}

.notice_section .notice_article .date {
    margin: 0 12px 6px 0;
    padding: 4px 8px 2px;
    margin-right: 20px;
    text-align: center;
    display: inline;
    float: left;
    background: #0B499D;
}

.notice_section .notice_article .date h2 {
    font-weight: 700;
    font-size: 28px;
    margin: 0;
    color: #fff;
}

.notice_section .notice_article .date p {
    line-height: 20px;
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.notice_section .notice_article h4 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 700;
    font-size: 22px;
    margin-top: 9px;
}

.notice_section .notice_article h4 a {
    transition: all .2s;
    color: #000;
}

.notice_section .notice_article h4 a:hover {
    color: #0B499D;
}

.notice_section .notice_article p {
    margin-bottom: 8px;
}

.notice_section .notice_article .read_more {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: #0B499D;
    font-size: 15px;
}

.notice_section .notice_article .read_more:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .notice_section {
        padding: 65px 0 35px;
    }
}

/* notice section end */



/*FOOTER*/
footer {
    background: #7b0000;
}


.footer-head {
    color: var(--pc);
}

.footer-head h6 {
    font-weight: 600;
    font-size: 16px;
    color: var(--wc);
    padding-bottom: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--bc);
}

.footer-head ul li {
    border-bottom: 1px solid #484848bd;
    display: block;
}

.footer-head ul li:last-child {
    border-bottom: none;
}

.footer-head ul li a {
    color: #E0E0E0;
    padding: 2px 0;
    text-transform: capitalize;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-size: 14px;
    font-weight: 500;
    font-weight: 400;

}


.footer-head ul li {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
}

.footer-head ul li:hover {
    margin-left: 2px;
}


.footer-head p {
    color: #E0E0E0;
    font-weight: 400;
    font-size: 14px;
}

.footer-location p {
    position: relative;
    padding-left: 25px;
}

.location-info p i {
    margin-right: 10px;
}

.location-info {
    color: var(--wc);
    font-size: 14px;
}

.location-info .f-title {
    font-weight: 500;
    color: var(--yc);
    padding-right: 5px;
}

.footer-social {
    padding-top: 10px;
}

.footer-social a i {
    color: #bababa;
    border: 1px solid var(--sc);
    height: 28px;
    width: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 5px;
}

.footer-social a i:hover {
    background: var(--sc);
}

.copyright {
    border-top: 1px solid var(--sc);
}

.trams-condation a {
    color: #C9C9C9;
    margin-left: 10px;
}

.trams-condation a:hover {
    text-decoration: underline;
}

.copyright p {
    margin: 0;
    color: #C9C9C9;
}



/*FOOTER END*/


/*// Photo Gallary*/

#gallery {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

#gallery a {
    width: 100%;
}

#gallery img,
#gallery video {
    width: 100%;
    height: auto;
    margin: 4% auto;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}


/*// Photo Gallary*/
