@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
/* Custom CSS for Navkis Educational Centre */

/* Root Variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

/* Global Styles */
body {
    font-family: "Quicksand", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.row{
    justify-content: center;
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
}

.top-bar a:hover {
    text-decoration: underline !important;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    margin-top: 0 !important;
    top: 100% !important;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Carousel */
.carousel {
    position: relative;
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-caption h2 {
    animation: fadeInUp 1s ease;
}

.carousel-caption p {
    animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0b5ed7 100%);
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    position: relative;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 767.98px) {

    .carousel-caption h2 {
        font-size: 1.25rem;
    }

    .top-bar .col-md-4 {
        margin-top: 0.5rem;
    }
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Styles */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* List Group */
.list-group-item {
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

.list-group-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Alert */
.alert {
    border-radius: 0.5rem;
    border: none;
}

/* Badge */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
}

/* Image Hover Effect */
.img-hover {
    overflow: hidden;
}

.img-hover img {
    transition: all 0.3s ease;
}

.img-hover:hover img {
    transform: scale(1.1);
}

/* Text Styles */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Spacing Utilities */
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

/* Custom Divider */
.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 2rem 0;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    z-index: 999;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
    background-color: #0b5ed7;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Print Styles */
@media print {

    .top-bar,
    .navbar,
    footer,
    .btn,
    #backToTop {
        display: none !important;
    }
}


/*=========================================================================
                        css style
=========================================================================*/

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6;
    color: #000;
    background-color: #ffffff;
    height: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    color: #000;
    font-style: normal;
    line-height: 1.6;
    margin: 0 0 8px;
}

.btn {
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    -ms-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.btn.focus,
.btn:focus,
.btn:hover {
    color: #fff;
    text-decoration: none;
}

ul {
    margin-bottom: 0px;
    padding: 0px;
}



a:hover {
    text-decoration: none;
}

.form-control {
    border-radius: 0;
}

a {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-decoration: none !important;
}

img {
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    display: inline-block;
}


/*=====================================================================
                        header top
======================================================================*/


/*--------------------*/

section.header-top {
    background-color: #f0f0f0;
    position: relative;
}

.header-top-color-band {
    background-color: #004f73;
    height: 41px;
}

.pay-online a {
    border: 1px solid #d00000;
    background-color: #d00000;
    color: #fff !important;
    padding: 5px 8px;
    border-radius: 50px;
}

.pay-online a:hover {
    border: 1px solid #d00000;
    background-color: transparent;
    color: #d00000 !important;
}

.marquee-tag {
    color: #000;
}

.marquee-tag>marquee {
    padding-top: 8px;
    margin-left: 0px;
    margin-right: -15px;
    color: #fff;
}

.marquee-tag>marquee>a {
    padding-top: 8px;
    margin-left: 0px;
    margin-right: 40%;
    color: #fff;
}

.head-top-list {
    background-color: transparent;
    padding: 8px 0px;
}

.head-top-list:before {
    content: "";
    height: 41px;
    position: absolute;
    right: 0px;
    top: 1px;
    width: 100%;
    background: #eeeff3;
    z-index: 0;
}

.head-top-list:after {
    border-color: rgba(0, 0, 0, 0) #eeeff3 #eeeff3 rgba(0, 0, 0, 0);
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    -o-border-image: none;
    border-image: none;
    border-style: solid;
    border-width: 21px 11px;
    content: "";
    height: 7px;
    position: absolute;
    right: 100%;
    top: 0px;
    width: 0;
}

.header-top-right {
    list-style: none;
    padding: 0px 10px;
    position: relative;
}

.header-top-right>li {
    list-style: none;
    display: inline-block;
    padding: 0px 15px;
}

.header-top-right>li>a {
    color: #000;
    font-weight: 500;
}


/*=====================================================================
                        header starts
======================================================================*/

.fixed {
    position: fixed !important;
    background-color: white !important;
    width: 100%;
    top: 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .15);
}

.header-bottom {
    background: rgba(255, 255, 255, 0.64);
    height: 76px;
    /* position: absolute; */
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #a5a5a5;
}

.navbar-default {
    background-color: transparent;
    border-color: transparent;
    margin-bottom: 0;
    border-radius: 0px;
    height: 80px;
    z-index: 100;
    border: 0px;
}

a.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    padding: 5px 20px;
}

a.navbar-brand>img {
    display: inline-block;
    margin-top: 0px;
}

.nav-brand-mid {
    display: inline-block;
    padding-left: 15px;
    padding-top: 8px;
    height: 70px;
}

.nav-brand-head {
    /* color: #011a5f; */
    color: #000;
    font-size: 42px;
    display: block;
    margin-bottom: 1px;

    letter-spacing: 4px;
}

.nav-brand-head>span {
    color: #FF9703;
    font-size: 38px;
    display: inline-flex;
}

.nav-brand-bottom {
    color: #d00000;
    font-size: 13px;

    font-weight: 600;
    letter-spacing: 2.4px;
}

.navb-right>li>a {
    padding: 27px 0px 28px 0px;
    margin: 0px 24px 0px 0px;
}

.navbar-default .navbar-nav>li>a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    color: #000;
    background-color: transparent;
    /*background-color: #ff9800;*/
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    color: #000;
    background-color: transparent;
}

.mainsub-menu {
    padding: 0px 0px;
    width: 215px;
}

.dropdown-item {
    color: #000;
    border-bottom: 1px dashed transparent;
    background-color: transparent;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.dropdown-item:hover {
    color: #ff9800;
    border-bottom: 1px dashed #ff9800;
    background-color: transparent;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.mainsub-menu>li>a {
    padding: 10px 10px 10px 10px;
}

.mainsub-menu>li>a:hover {
    color: #ffffff;
    background-color: #ff9800;
    padding-left: 25px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}




/*-------- fixed header----------*/

#header-sroll {
    height: 80px;
    background: #fff;
    left: 0;
    top: 0;
    float: left;
    border: none;
    padding-top: 5px;
    width: 100%;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 10;
    /*border-top: 5px solid #011a5f;*/
}

#header-sroll nav {
    font-size: 30px;

    text-align: center;
    line-height: 50px;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#header-sroll.small {
    height: 65px;
    line-height: 20px;
    padding-top: 0px;
    z-index: 1000;
    border-bottom: 1px solid #000;
    border-top: 0px;
}

#header-sroll.small nav {
    height: 70px;
    line-height: 35px;
    font-size: 25px;
}





/*=====================================================================
                        header ends
======================================================================*/


/*=====================================================================
                        main starts
======================================================================*/



/*-------------------------------------------------
                SLIDER
---------------------------------------------------*/

section.slider_sec {
    padding-top: 0px;
}


/************************* Home Slider ***************/

.caption-info-inner.text-center h1 {
    color: #fff;
    background: rgba(2, 14, 27, 0.3);
    margin: 0 0 18px;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 3px 0px;
    border-radius: 3px;
}

.caption-info-inner.text-center>p {
    padding: 9px 4px 7px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.75);
    color: #2d3e50;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

#banner {
    width: 100%;
    float: left;
    height: 600px;
}

#banner .item {
    height: 600px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#banner .item::before {
    width: 100%;
    float: left;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';

}

#banner>h1 {
    color: #333;
    margin: 0 0 20px;
    font-size: 25px;
    font-weight: 100;
    text-transform: uppercase;
}

#banner>p {
    background: rgba(255, 255, 255, 0.41);
    color: #5a5a5a;
    margin: 0 0 35px 96px;
    width: 76%;
}

.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
    z-index: 2;
}

.caption-info {
    position: absolute;
    top: 50%;
    left: -16%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}

.caption-info-inner h1 {
    animation-delay: 0.5s;
}

.caption-info-inner p {
    animation-delay: 1.1s;
}

.caption-info-inner a {
    animation-delay: 1.6s;
}

.control {
    opacity: 0;
    visibility: hidden;
    -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;
}

#banner:hover .control {
    visibility: visible;
    opacity: 1;
}

.control,
.control:focus {
    border: 1px solid #FF9703;
    color: #FF9703;
    line-height: 34px;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 50%;
    width: 36px;
    margin: -15px 0 0;
}

.control:hover {
    background-color: #FF9703;
    color: #fff;
}

.left.control {
    left: -50px;
    -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;
}

.right.control {
    right: 0px;
    -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;
}

#banner:hover .left.control {
    left: 10px;
}

#banner:hover .right.control {
    right: 10px;
}

ul.dropdown-menu-add {
    top: 47px;
    border: 1px solid #ed703a;
}


/******** Button hover effect *********/

.btn {
    display: inline-block;
    padding: 7px 10px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.42857143;
    text-align: center;
    border: none;
    border-radius: 2px;
}

.btn-defaults {
    margin-right: 15px;
    padding: 10px 24px;
    background-color: #d00000;
    color: #fff;
    font-size: 14px;
}

.btn-defaults:hover,
.btn-defaults:focus {
    background: #e06743;
}

.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-radius: 2px;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: #ffffff;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    border-radius: 2px;
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FF9703;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}


/******** Button hover effect *********/

.btn-all {
    margin-top: 2em;
}


/*-------------------------------------------------
                SLIDER
---------------------------------------------------*/


/*-------------------------------------------------
                Middle content
---------------------------------------------------*/

.admission-apply-box {
    margin-top: 0px !important;
}

.admission-apply-sub-box {
    z-index: 92;
    background: #ff9800;
    border-top: 4px solid #6c3e92;
}

.admission-text {
    color: #fff;
    padding-top: 30px;
    padding-left: 10px;
}

.admission-text>h2 {
    color: #fff;
    font-weight: 400;
    margin: 0 0 20px 0;
}

.admission-text-content-sub {
    display: inline-block;
    padding-right: 25px;
}

.admission-text-content-link {
    display: inline-flex;
    position: relative;
    top: -10px;
}

.admission-text-content-sub>p {
    line-height: 30px;
}


/*---- button ----*/

.btn-defn {
    border-radius: 0;
    padding: 5px 30px;
    border: 1px solid #fff;
    color: #fff;
}

.btn-defn:focus,
.btn-defn:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: #6c3e92;
}


/*=================================
             about 
================================*/

section.about-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

h2.about-header {
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}

h2.about-header:after {
    display: block;
    position: absolute;
    left: 2%;
    width: 8%;
    height: 2px;
    content: "";
    background-color: #d00000;
}

.about-para {
    margin-top: 25px;
    margin-bottom: 35px;
}

.about-para>p {
    color: #595959;
    text-align: justify;
    line-height: 1.7;
}


/*----------*/

.about-content-bottom-left>ul>li {
    list-style: none;
    text-align: justify;
}

.about-content-bottom-left>ul>li:before {
    content: "\f061";
    font: normal normal normal 14px/1 FontAwesome;
    color: #ff9703;
    margin-right: 15px;
    display: none;
}


/*---- button ----*/

.btn-about {
    border-radius: 0;
    padding: 10px 30px;
    border: 2px solid #d00000;
    color: #d00000;
    background-color: transparent;
}

.btn-about:focus,
.btn-about:hover {
    border: 2px solid #d00000;
    background-color: #d00000;
    color: #fff;
}


/*======================================
               circular-parallax
========================================*/

.circular-parallex-layer-in {
    background-attachment: fixed;
    background-position: center;
    background-color: #eeeeee;
    background-size: cover;
}



.circular-parallex-layer-head {
    text-align: center;
    color: #fff;
    padding: 75px 0px;
}

.circular-parallex-layer-head>h3 {
    font-size: 40px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 23px;
    margin-bottom: 23px;
    margin-top: 0px;
    font-weight: 300;
}

.circular-parallex-layer-head>h3:before {
    position: absolute;
    content: '';
    left: 43%;
    top: 49%;
    width: 120px;
    height: 2px;
    background-color: #FF9703;
}

.circular-parallex-layer-para>p {
    font-size: 16px;
    padding: 0 100px;
    margin-bottom: 2em;
    margin-top: 2em;
    line-height: 1.7;
}

.circular-parallex-layer-para>p:before {
    content: "\f10d";
    position: relative;
    left: -2%;
    top: -10px;
    color: #FF9703;
}

.circular-parallex-layer-para>p:after {
    content: "\f10e";
    position: relative;
    left: 2%;
    top: -4px;
    color: #FF9703;
}


/*===========================================================
                    Content-Section
============================================================*/

.content-layer {
    padding-top: 0px;
    padding-bottom: 0px;
}


/*---------------- Middle Content ----------------*/

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: .5s ease;
    background-color: rgba(3, 32, 41, 0.71);
}

.content-parallex-layer-head {
    text-align: center;
    color: #fff;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.content-parallex-layer-head>h3 {
    font-size: 40px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 23px;
    margin-bottom: 23px;
    margin-top: 0px;
    font-weight: 300;
}

.content-parallex-layer-head>h3:before {
    position: absolute;
    content: '';
    left: 40%;
    top: 50%;
    width: 20%;
    height: 2px;
    background-color: #FF9703;
}

.checkered {
    position: relative;
    background-color: #f6f6f6;
}

.checkered.left .background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
}

.background {
    color: #fff;
    background-position: center center;
    background-size: cover;
}

.philosophy_head {
    padding: 50px 50px 50px 0px;
}


/*-----------------*/

.notify-layer-head>h2 {
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
}

.notify-layer-head>h2:after {
    display: block;
    position: absolute;
    left: 0%;
    width: 13%;
    height: 2px;
    content: "";
    background-color: #d00000;
}

.notification-content-text {
    margin-top: 30px;
    padding: 15px 0px;
}

.notification-content-text ul {
    list-style: none;
    margin: 0 0 15px 0px;
    padding: 0;
}

.notification-content-text ul li {
    padding-bottom: 5px;
    padding-top: 5px;
}

.notification-content-text ul li:before {
    content: "\00BB";
}

.notification-content-text ul li span {
    color: #000;
    padding: 5px 0 5px 20px;
}


/*=========================================================================
                            Home Calendar
=========================================================================*/

.calendar-sec {
    border: 1px solid #ccc;
}

.event-slide {
    border-bottom: 1px solid #ccc;
    padding: 5px 10px;
}

.event-slide>h4 {
    display: inline-block;
    font-size: 20px;
    color: #000000;
    position: relative;
}

.event-slide>h4>span {
    color: #000000;
}

.event-slide>h4:after {
    display: block;
    position: absolute;
    left: 7%;
    width: 8%;
    height: 2px;
    content: "";
    background-color: #d00000;
}

.event-slide>p {
    display: inline-block;
    float: right;
    font-size: 14px;
    padding-top: 10px;
}

.event-slide>p>a {
    font-size: 14px;
    color: #6f0082;
}

.border-thumb2 {
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #aaa;
}

.border-thumb2:last-child {
    border-bottom: 0px dashed #aaa;
}


/*------*/

.cal-event__date {
    position: relative;
    float: left;
    width: 80px;
    height: 80px;
    padding-top: 15px;
    border: 4px solid #ff9800;
    border-radius: 4px;
    text-align: center;
}

.cal-event__date:before {
    content: "";
    position: absolute;
    top: -9px;
    left: 16px;
    width: 4px;
    height: 14px;
    border-radius: 2px;
    background: #ff9800;
}

.cal-event__date:after {
    content: "";
    position: absolute;
    top: -9px;
    right: 16px;
    width: 4px;
    height: 14px;
    border-radius: 2px;
    background: #ff9800;
}

.cal-event__date-day {
    margin-bottom: 5px;
    font-size: 26px;
    color: #011b3a;
    line-height: 22px;
}

.cal-event__date-month {
    font-size: 14px;
    color: #808080;
    line-height: 22px;
}


/*----------*/

.calendar-small {
    float: left;
    display: block;
    width: 65px;
    height: 65px;
}

.calendar-small .s-month {
    display: block;
    width: 65px;
    height: 22px;
    line-height: 22px;
    font-weight: 600;
    text-align: center;
    background-color: #6c3e92;
    color: #fff;
}

.calendar-small .s-date {
    font-size: 16px;
    font-weight: 700;
    width: 65px;
    height: 43px;
    line-height: 43px;
    text-align: center;
    display: block;
    background-color: #eee;
}

.calendar-details {
    padding: 15px 0px;
    margin-left: 20px;
}


/*======================================
               Congratulation
========================================*/

.sec-titles-results1 {
    margin-bottom: 0px;
    margin-top: 50px;
}

.sec-titles-results1>h2 {
    display: block;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.sec-titles-results1>h2>span {
    text-transform: uppercase;
    color: #070707;
    font-weight: 400;
    text-align: center;
    font-size: 36px;
}

.sec-titles-results1>h2>span:after {
    display: block;
    position: absolute;
    left: 45%;
    width: 10%;
    height: 2px;
    content: "";
    background-color: #ff9800;
}


/*----------*/

.testimonial-tab {
    width: 270px;
    margin: 15px auto 45px auto;
}

.testimonial-tab {
    border-bottom: 0px solid #ddd;
}

.testimonial-tab>li>a {
    border-color: #fff;
    border: 2px solid #fff;
    border-radius: 0px;
    color: #fff;
}

.testimonial-tab>li {
    margin-left: 10px;
    margin-right: 10px;
}

.testimonial-tab>li>a:focus,
.testimonial-tab>li>a:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0);
}

.testimonial-tab>li>a:hover {
    border-color: #fff;
    border: 2px solid #fff;
    border-radius: 0px;
    color: #fff;
}

.testimonial-tab>li.active>a,
.testimonial-tab>li.active>a:focus,
.testimonial-tab>li.active>a:hover {
    color: #fff;
    background-color: #F44336;
    border: 2px solid #F44336;
}

.tab-testi {
    margin-top: 25px;
    margin-bottom: 25px;
}


/*-----------------*/

.student-members {
    overflow: hidden;
    position: relative;
    text-align: center;
    margin: 0px 35px;
}

.student-thumb>img {
    width: 50%;
    padding: 5px 5px 0px 5px;
    border: 1px solid #eee;
    background-color: #eee;
}

.student-members .student-details {
    bottom: 6px;
    position: relative;
    transition: all 300ms ease-in-out 0s;
    width: 50%;
}

.student-details {
    padding-bottom: 10px !important;
    background-color: #F7F8FA !important;
    position: relative;
}

.student-details>h4 {
    margin: 0px !important;
    color: #333333;
    position: relative;
    z-index: 2;
}

.student-details>h4>a {
    color: #333333;
    position: relative;
    z-index: 2;
    font-size: 18px;
}

.student-details>h6 {
    color: #1F386B;
    margin-top: 0;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.student-members .student-details:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #FF9703;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
    z-index: 1;
}

.student-members:hover .student-details:after {
    height: 100%;
}

.student-members:hover .student-details h4 a {
    color: #fff;
}

.student-members:hover .student-details h6 {
    color: #fff;
}

ol.indicator-slider>li {
    border: 1px solid #ff9800 !important;
}

.indicator-slider .active {
    background: #51005f;
}

.indicator-slider {
    bottom: -18%;
}


/*======================================
               parallax
========================================*/

.parallex-layer-in {
    background: url(../images/banner021.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.parallex-layer-in-color {
    background: rgba(29, 22, 22, 0.77);
}

.parallex-layer-head {
    text-align: center;
    color: #fff;
    padding: 75px 0px;
}

.parallex-layer-head>h3 {
    font-size: 40px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 23px;
    margin-bottom: 23px;
    margin-top: 0px;
    font-weight: 300;
}

.parallex-layer-head>h3:before {
    position: absolute;
    content: '';
    width: 120px;
    height: 2px;
    background-color: #FF9703;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -10px;
}

.parallex-layer-head>h3{
    position: relative;
}

.parallex-layer-para>p {
    font-size: 16px;
    padding: 0 100px;
    margin-bottom: 2em;
    margin-top: 2em;
    line-height: 1.7;
}

.parallex-layer-para>p:before {
    content: "\f10d";
    position: relative;
    left: -2%;
    top: -10px;
    color: #FF9703;
}

.parallex-layer-para>p:after {
    content: "\f10e";
    position: relative;
    left: 2%;
    top: -4px;
    color: #FF9703;
}


/*======================================
               Latest News
========================================*/

section.news-sec-layer {
    padding-top: 60px;
    padding-bottom: 75px;
    background-color: #eee;
}

.sec-titles {
    margin-bottom: 35px;
}

.sec-titles>h2 {
    display: block;
    position: relative;
    padding-bottom: 5px;
}

.sec-titles>h2>span {
    text-transform: uppercase;
    font-size: 27px;
    color: #000;
    font-weight: 400;
}

.sec-titles>h2>span:after {
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0px;
    width: 50px;
    height: 4px;
    content: "";
    background-color: #FF9703;
}

span.sec-titles-span {
    color: #fff;
    margin-right: 7px;
    line-height: 35px;
    margin-top: 9px;
}

span.sec-titles-span {
    float: right;
}

.form-btn-news {
    padding: 10px 0px 4px 1px;
    font-size: 14px;
    background: transparent;
    color: #000 !important;
}

.form-btn-news:before {
    height: 10px !important;
    color: red;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    -webkit-transition-property: width;
    transition-property: width;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit;
    transition-duration: inherit;
    bottom: 7px;
}

a.form-btn-news:hover:before {
    width: 7%;
    height: 12px;
}

.sec-titles>h2>span:after {
    display: block;
    position: absolute;
    bottom: 4%;
    left: 0%;
    width: 8%;
    height: 2px;
    content: "";
    background-color: #FF9703;
}


/*----------------------*/

.featured_news_view_grid {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.featured_news_view_grid {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.featured_news_view_grid {
    position: relative;
    opacity: 1;
}

.featured_news_view_grid_image {
    transform-style: preserve-3d;
}

.featured_news_view_grid_image {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.featured_news_caption_grid {
    padding: 0 30px;
    margin-top: -50px;
}

.featured_news_caption_grid_view {
    position: relative;
    padding: 30px 30px 34px;
    background: #fff;
    width: 100%;
    min-height: 157px;
    max-width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.featured_news_caption_grid_view .featured_news_caption_grid_title {
    position: relative;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 30px;
    z-index: 2;
}

.featured_news_view_grid .featured_news_caption_grid_view:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #FF9703;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
    z-index: 1;
}

.featured_news_view_grid:hover .featured_news_caption_grid_view:after {
    height: 100%;
}

.featured_news_caption_grid_view .featured_news_caption_grid_date {
    position: relative;
    font-size: 13px;
    color: #999;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.featured_news_caption_grid_view .featured_news_caption_grid_date i {
    margin-right: 9px;
}

.featured_news_caption_grid_view .featured_news_caption_grid_date a {
    color: #999;
}

.featured_news_control {
    background-image: none !important;
}

.featured_news_view_grid .featured_news_caption_grid_title a {
    color: #011b3a;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.featured_news_view_grid:hover .featured_news_caption_grid_title a {
    color: #fff;
}

.featured_news_view_grid .featured_news_caption_grid_date {
    position: relative;
    font-size: 13px;
    color: #999;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.featured_news_view_grid:hover .featured_news_caption_grid_date {
    color: #fff;
}

.featured_news_view_grid .featured_news_caption_grid_date a {
    color: #999;
}

.featured_news_view_grid:hover .featured_news_caption_grid_date a {
    color: #fff;
}


/*==================---- news and events --============================*/

.news-image {
    margin-top: 10px;
    margin-bottom: 10px;
}

.news-images-sub>img {
    width: 100%;
    /*height: auto !important;*/
    padding: 5px;
    background-color: #ddd;
}


/*======================================================================
                        Gallery Home Starts
======================================================================*/

.galhome-layer-in {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.galhome-layer-in-color {
    padding-top: 60px;
    padding-bottom: 70px;
    background: #eeeeee;
    /*background: #f5f5f5;*/
}

.galhome-layer-head {
    text-align: center;
}

.galhome-layer-head>h3 {
    font-size: 40px;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 25px;
    margin-top: 0px;
    font-weight: 400;
    position: relative;
}

.galhome-layer-head>h3:before {
    position: absolute;
    content: '';
    width: 10%;
    height: 2px;
    background-color: #d00000;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -10px;
}


/*-----------*/

.home_gallery_grid {
    margin-top: 2em;
}

.home_gallery_grid1 {
    position: relative;
}

.home_gallery_grid1>img {
    width: 100%;
    height: 270px;
}

.home_gallery_grid1_pos {
    background: rgba(0, 33, 71, 0.78);
    bottom: 45px;
    left: 40px;
    opacity: 0;
    padding: 1em;
    position: absolute;
    right: 45px;
    text-align: center;
    top: 45px;
    visibility: hidden;
    width: 77%;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.home_gallery_grid:hover .home_gallery_grid1_pos {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1);
}

.home_gallery_grid1_pos h3 {
    font-size: 22px;
    letter-spacing: 2px;
    margin: 42px 5px;
    position: relative;
    text-transform: uppercase;
    color: #fff;
}

.home_gallery_grid1_pos h3:after {
    background: #ff9800;
    bottom: 0%;
    content: '';
    height: 2px;
    left: 30%;
    position: absolute;
    width: 35%;
}


/*=====================================================
                    Footer
=====================================================*/

.footer-layer {
    background-color: #010135;
}

.footer-sub-layer {
    padding: 50px 0px 35px 0px;
}

h3.footer_para {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.center-block {
    margin-top: 20px;
}

.center-block>a {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0%;
    padding: 10px 25px;
}

.center-block>a:hover {
    background-color: #fff;
    color: #010135;
}


/*======================================================================================
                                          about us
=======================================================================================*/

.about-parallax-layer {
    background-image: url(../images/banner014.jpg);
    background-position: center;
    background-size: cover;
}

.about-parallax-sub-layer {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.7);
}

.about-parallax-sub-layer-head>h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 38px;
    font-weight: 600;
}

.tab-bread-crmbs {
    margin-top: 14px;
    text-align: center;
    color: #fff;
}

.tab-bread-crmbs a {
    color: #fff;
}

.tab-bread-crmbs i {
    color: #fff;
    margin: 0px 10px;
}

.about-layer {
    padding: 65px 0px;
    background-color: #f7f7ff;
}

.about-content-left1>h3 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content-top-left>h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
}

.about-content-top-left>h3>span {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 26px;
    color: #ff9800;
}

.about-content-top-left>h3:after {
    display: block;
    position: absolute;
    left: 0%;
    width: 8%;
    height: 2px;
    content: "";
    background-color: #d00000;
    bottom: -10px;
}

.about-content-mid-left>img {
    width: 100%;
}

.about-content-bottom-left {
    margin-top: 25px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    padding: 15px;
    background-color: #fff;
}

.about-content-bottom-left>p {
    color: #595959;
    text-align: justify;
    line-height: 1.7;
}

.about-content-carer-mid {
    margin-top: 22px;
    margin-bottom: 22px;
}

.about-content-top-right>h3{
    position: relative;
}

.about-content-top-right>h3:after {
    display: block;
    position: absolute;
    left: 0;
    width: 30%;
    height: 2px;
    content: "";
    background-color: #d00000;
    bottom: -10px;
}

.news-events-sec-a-one {
    background: #f8844c;
    margin-bottom: 23px;
}

ul.module-title-ul {
    margin-top: 20px;
}

ul.module-title-ul>li {
    list-style: none;
}

ul.module-title-ul a.abt-title-active {
    background: #ff9800;
    border-left: 5px solid #d00000;
    color: #fff;
}

ul.module-title-ul>li>a {
    background: #d00000;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 17px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    display: block;
    transition: 0.5s ease-in-out;
    color: #fff;
    font-weight: bolder;
    text-transform: capitalize;
}

.clear_space {
    clear: both;
    margin-bottom: 30px;
}

.about-content-left2>h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 20px;
}

.about-content-left2>h3>span {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 26px;
    color: #ff9800;
}

.about-content-left2>h3:after {
    display: block;
    position: absolute;
    left: 2%;
    width: 8%;
    height: 2px;
    content: "";
    background-color: #d00000;
}

.about-content-left2>p {
    font-weight: 400;
    font-size: 14px;
    text-align: justify;
}

.about-content-left3 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-content-left3>h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 20px;
}

.about-content-left3>h3>span {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 26px;
    color: #ff9800;
}

.about-content-left3>h3:after {
    display: block;
    position: absolute;
    left: 2%;
    width: 8%;
    height: 2px;
    content: "";
    background-color: #d00000;
}

.about-content-left3>p {
    font-weight: 400;
    font-size: 14px;
    text-align: justify;
}


/*======================================
               Contact-Parallax
========================================*/

.contact-parallex-layer-in {
    background: url(../images/admission_img.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.contact-parallex-layer-in-color {
    background: rgba(29, 22, 22, 0.77);
}

.contact-parallex-layer-head {
    text-align: center;
    color: #fff;
    padding: 75px 0px;
}

.contact-parallex-layer-head>h3 {
    font-size: 40px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 23px;
    margin-bottom: 23px;
    margin-top: 0px;
    font-weight: 300;
    position: relative;
}

.contact-parallex-layer-head>h3:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    width: 120px;
    height: 2px;
    background-color: #FF9703;
    margin: auto;
    bottom: 0px;
}

.contact-parallex-layer-para>p {
    font-size: 16px;
    padding: 0 100px;
    margin-bottom: 2em;
    margin-top: 2em;
    line-height: 1.7;
}

.contact-parallex-layer-para>p:before {
    content: "\f10d";
    position: relative;
    left: -2%;
    top: -10px;
    color: #FF9703;
    display: none;
}

.contact-parallex-layer-para>p:after {
    content: "\f10e";
    position: relative;
    left: 2%;
    top: -4px;
    color: #FF9703;    
    display: none;
}

.about-contact-mid>h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 45px;
    text-align: center;
}

.about-contact-mid>h3:after {
    display: block;
    position: absolute;
    left: 46%;
    width: 6%;
    height: 2px;
    content: "";
    background-color: #d00000;
}


/*=========================================================================
                    Academic Calendar
=========================================================================*/


/*----------- below box -------------*/

.red-cal:before {
    content: '';
    position: absolute;
    border-color: #ff0000 #ff0000 #ff0000 #ff0000;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    -o-border-image: none;
    border-image: none;
    border-style: solid;
    border-width: 5px;
    left: 18px;
    top: 8px;
}

.blue-cal:after {
    content: '';
    position: absolute;
    border-color: #0000ff #0000ff #0000ff #0000ff;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    -o-border-image: none;
    border-image: none;
    border-style: solid;
    border-width: 5px;
    left: 18px;
    top: 8px;
}

.green-cal:after {
    content: '';
    position: absolute;
    border-color: #00ff00 #00ff00 #00ff00 #00ff00;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    -o-border-image: none;
    border-image: none;
    border-style: solid;
    border-width: 5px;
    left: 30%;
    top: 8px;
}

ul.aca-calendar>li {
    padding: 0px 20px;
    display: inline-block;
}

ul.aca-calendar {
    list-style: none;
    display: inline-block;
}


/*----- calendar body style -------*/

section.calendar-sec {
    padding: 60px 0px;
}

.academic-calendar>h3 {
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
}

.academic-calendar>h3:after {
    display: block;
    position: absolute;
    left: 0;
    width: 8%;
    height: 2px;
    content: "";
    bottom: -10px;
    background-color: #d00000;
}


/*------- calendar style ------*/

.event-calendar {
    max-width: 265px;
    float: left;
    margin: 17px 6px;
}

.fc-day-grid-event .fc-content {
    overflow: visible;
    white-space: inherit;
}

.fc-row.fc-week.fc-widget-content {
    min-height: 24px !important;
}

.fc-center h2 {
    margin-bottom: 0px;
    padding: 8px 0px 3px;
    font-size: 18px;
    color: white;
    line-height: 20px;
    font-size: 16px;
    font-weight: 400;
}

.fc-toolbar {
    text-align: center;
    background-image: linear-gradient(top, #ff9800, #FFC107);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9800), to(#FFC107));
    background-image: -webkit-linear-gradient(top, #ff9800, #FFC107);
    background-image: -moz-linear-gradient(top, #ff9800, #FFC107);
    background-image: -ms-linear-gradient(top, #ff9800, #FFC107);
    background-image: -o-linear-gradient(top, #ff9800, #FFC107);
    margin-bottom: 0px !important;
}

.fc-scroller {
    overflow-y: hidden !important;
    overflow-x: hidden;
}

.fc-event {
    height: 26px !important;
    margin-top: -27px !important;
    opacity: 0.6;
}

.fc-day-grid-container.fc-scroller {
    height: 170px !important;
}

td.fc-day-number {
    padding-top: 2px;
    padding-bottom: 0px;
}

.fc-title {
    display: none;
}

.fc th {
    border: none;
}

.fc-ltr .fc-basic-view .fc-day-number {
    text-align: right;
    color: black;
    font-weight: 500;
    font-size: 13px;
}

#calendar_full {
    width: 70%;
    margin: 0 auto;
}

#calendar_full .fc-day-grid-container.fc-scroller {
    height: 450px !important;
}


/*--------------------- Course Calendar new -------------------------*/

.col-item {
    border: 1px solid #E1E1E1;
    border-radius: 5px;
    background: #FFF;
}

.col-item .photo img {
    margin: 0 auto;
    width: 100%;
}

.col-item .info {
    padding: 10px;
    border-radius: 0 0 5px 5px;
    margin-top: 1px;
}

.col-item:hover .info {
    background-color: #F5F5DC;
}

.col-item .price {
    float: left;
    margin-top: 5px;
}

.col-item .price h5 {
    line-height: 20px;
    margin: 0;
}

.col-item .separator {
    border-top: 1px solid #E1E1E1;
}

.clear-left {
    clear: left;
}

.col-item .separator p {
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 10px;
    text-align: center;
}

.col-item .separator p i {
    margin-right: 5px;
}

.col-item .btn-details {
    width: 100%;
    float: right;
    padding-left: 10px;
}


/*---------------- course Calendar -----------------*/

.course-calendar {
    padding: 20px;
}

.course-calendar h3 {
    border-bottom: 1px solid #EBEDED;
    padding-bottom: 10px;
    font-weight: 400;
}

.course-list .col-sm-2.col-md-2 {
    padding: 0px 10px;
}

.course-icons {
    text-align: center;
    background-color: #EBEDED;
    width: 80px;
    height: 80px;
    padding: 15px 10px;
    border-radius: 50%;
    margin-left: 40px;
}

.course-title h4 a {
    font-weight: 600;
    font-size: 14px;
}

.course-list h3 {
    font-weight: 400;
    text-transform: uppercase;
}

.course-list .row {
    margin: 40px 0px;
}

.course-list {
    text-align: center;
    margin-top: 30px;
}

.course-list .col-sm-2.col-md-2:hover img {
    transform: scale(1.4);
    transition: 0.4s all ease-out;
}

.course-list .col-sm-2.col-md-2:hover .course-icons {
    border: 1px solid orange;
}

table.fc-header {
    background-color: rgb(245, 195, 0);
    color: white;
}


/*Calendrier EITS*/

.calendar-wrapper {
    clear: both;
    margin: auto;

}

.calendar-year {

    padding-right: .6em;
}

.calendar-year h4 {
    float: left;
    padding: 0;
    clear: none;
    line-height: 2em;

}

.calendar-year .right {
    float: right;
}

.calendar-year .button:hover {
    color: #FFF;
}

.calendar {

    width: 200px;
    display: inline-block;
    margin: auto;
    background-color: white;
    vertical-align: top;
    border: thin solid #F29302;
    margin: 4px;
}

.fc-grid .fc-day-content {
    height: 0;
}

.fc-header-title h2 {
    font-size: 12px;
    margin: 0;
}

.fc-event {
    text-align: center;
    height: 23px;
    margin-top: -23px;
    margin-left: -2px;
}

a.fc-event:hover {
    color: white;
    text-decoration: underline;
    opacity: 0.5;
}

.frame_eits {
    max-width: 1132px;
    width: 100%;
    margin: auto;
    display: block;
}


/* side column */

.side-banners img {
    margin-bottom: 20px;
}

.side-banners {
    text-align: center;
    margin: 30px 0px;
}

div#myCarouselpro>.carousel-inner {
    height: auto;
}


/* media queries */

@media only screen and (min-width:1200px) {
    th.fc-day-header {
        width: 35px !important;
    }

    .calendar {
        width: 245px;
    }
}

@media only screen and (min-width:980px) and (max-width:1199px) {
    .course-icons {
        margin-left: 6px;
    }

    .course-title h4 a {
        font-weight: 400;
        font-size: 12px;
    }

    .course-calendar {
        padding: 20px 0px;
    }
}

@media only screen and (min-width:768px) and (max-width:979px) {
    .course-list .col-sm-2.col-md-2 {
        width: 32%;
        float: left;
    }

    .course-icons {
        margin-left: 60px;
    }
}

@media only screen and (max-width:767px) {
    .carousel-caption {
        padding-bottom: 5px;
        padding-top: 5px;
    }

    .carousel-caption h4 {
        font-size: 14px;
    }

    .modal-dialog {
        width: 40%;
    }
}

@media only screen and (min-width:645px) and (max-width:767px) {
    .course-icons {
        margin-left: 42px;
    }
}

@media only screen and (min-widt:540px) and (max-width:644px) {
    .course-icons {
        margin-left: 32px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    .course-list .col-sm-2.col-md-2 {
        width: 32%;
        float: left;
    }

    .course-title h4 a {
        font-weight: 600;
        font-size: 12px;
    }
}

@media only screen and (max-width:479px) {
    .course-list .col-sm-2.col-md-2 {
        width: 50%;
        float: left;
    }

    .course-icons {
        margin-left: 10px;
    }
}


/*-------------------- Calendar tool pevent -------------------------*/

.tooltipevent {
    width: 200px;

    background: #1b183e;
    position: absolute;
    z-index: 10001;
    color: white;

    border-radius: 6px;
    left: 10px;
    top: 35px;
    padding: 10px;
    text-transform: capitalize !important;
}

.tooltipevent:after {
    content: '';
    position: absolute;
    left: 5px;
    top: -9px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #1b183e;
    clear: both;
}

.fc-content>span.fc-time {
    display: none !important;
}


/*=========================================================================
                    School Information
=========================================================================*/

.tab-acc-panel-group {
    padding-top: 18px;
}

.tab-acc-panel {
    box-shadow: none;
    margin-bottom: 0;
    border: 1px solid #cacaca;
}

.tab-acc-panel-title {
    border-width: 1px 1px 1px 0;
    border-style: solid;
    border-color: #efefef;
    margin: 0;
}

.tab-acc-panel-title a {
    text-decoration: none;
    color: #334463;
    font-weight: bold;
    line-height: 24px;
    padding: 14px 14px 15px 10px;
    display: block;
    border-left: 4px solid #ff9800;
    border-bottom: 1px solid #cacaca;
}

.tab-acc-panel-title a span {
    float: right;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #ff9800;
    border-radius: 50%;
    position: relative;
}

.tab-acc-panel-title a.collapsed span {
    background-color: #ff9800;
}

.tab-acc-panel-title a.collapsed span:before {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
}

.tab-acc-panel-title a span:before {
    content: " ";
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -1px;
    width: 10px;
    height: 2px;
    display: inline-block;
    background-color: #fff;
    -webkit-transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
    transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
}

.tab-acc-panel-title a span:after {
    content: " ";
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -1px;
    width: 10px;
    height: 2px;
    display: inline-block;
    background-color: #fff;
    -webkit-transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
    transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
}

.tab-acc-panel .tab-acc-body {
    padding: 22px 14px 28px;
}


/*=========================================================================
                    Events
=========================================================================*/

.event_view_grid {
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 28px 30px 29px 30px;
    margin-bottom: 30px;
    background-color: #fafafa;
}

.event_view_grid {
    background: #fdfdff;
    /*padding: 15px;*/
    transition: 0.5s ease-in-out;
}

.event_view_grid:hover {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: 0 2px 12px rgba(34, 30, 31, 0.4);
    transition: 0.5s ease-in-out;
}

.event_view_grid .event_left {
    float: left;
    margin-top: 5px;
}

.event_view_grid .event_date {
    position: relative;
    float: left;
    width: 125px;
    height: 95px;
    padding-top: 21px;
    border: 4px solid #ff9800;
    border-radius: 4px;
    text-align: center;
}

.event_view_grid .event_date:before {
    content: "";
    position: absolute;
    top: -9px;
    left: 16px;
    width: 4px;
    height: 14px;
    border-radius: 2px;
    background: #ff9800;
}

.event_view_grid .event_date:after {
    content: "";
    position: absolute;
    top: -9px;
    right: 16px;
    width: 4px;
    height: 14px;
    border-radius: 2px;
    background: #ff9800;
}

.event_view_grid .event-date-day {
    margin-bottom: 13px;
    font-size: 48px;
    color: #011b3a;
    line-height: 22px;

}

.event_view_grid .event-date-month {
    font-size: 14px;
    color: #808080;
    line-height: 22px;

}

.event_view_grid .event_content {
    overflow: hidden;
    padding-left: 25px;
}

.event_view_grid .event_meta {
    margin-bottom: 14px;
}

.event_view_grid .event_meta ul {
    margin-bottom: 0;
    padding-left: 0;
    font-size: 0;
    list-style: none;
    line-height: normal;
}

.event_view_grid .event_meta li:not(:last-child) {
    margin-right: 30px;
}

.event_view_grid .event_meta li {
    display: inline-block;
    color: #d00000;
    font-size: 13px;
}

.event_view_grid .event_meta i {
    margin-right: 10px;
    color: #999;
}

.event_view_grid .event_title {
    margin-bottom: 12px;
}

.event_view_grid .event_title a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.event_view_grid .event_summary {
    font-size: 14px;
    line-height: 24px;
    color: #808080;
}

.event_view_grid .event_summary p {
    line-height: inherit;
    font-size: inherit;
    color: inherit;
}


/*=========================================================================
                        News
=========================================================================*/

.news_view_list {
    margin-bottom: 40px;
    position: relative;
}

.news_view_list .news-enter-body {
    display: table;
    width: 100%;
    position: relative;
    z-index: 1;
}

.news_view_list .news-enter-thumbnail-layer {
    display: table-cell;
    vertical-align: middle;
}

.news_view_list .news-enter-thumbnail {
    width: 350px;
    margin-right: -40px;
    position: relative;
    z-index: 1;
}

.news_view_list .news-enter-thumbnail a {
    display: block;
}

.news_view_list .news-enter-details-container {
    display: table-cell;
    width: 10000px;
    vertical-align: middle;
}

.news_view_list .news-enter-details {
    position: relative;
    padding: 27px 40px 26px 40px;
    border: 1px solid #ff9800;
    background: #fff;
    z-index: 3;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news_view_list .news-enter-details:hover {
    background: #ff9800;
}

.news_view_list .news-enter-title {
    margin-bottom: 12px;
    line-height: 30px;
}

.news_view_list .news-enter-title a {
    margin: 0 0 27px 0;
    font-size: 18px;
    font-weight: 400;
    color: #011b3a;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.news_view_list .news-enter-details:hover .news-enter-title a,
.news_view_list .news-enter-details:hover .news-enter-summary,
.news_view_list .news-enter-details:hover .news-enter-summary p,
.news_view_list .news-enter-details:hover .news-enter-meta li i,
.news_view_list .news-enter-details:hover .news-enter-meta li a {
    color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.news_view_list .news-enter-summary {
    margin-bottom: 13px;
    line-height: 24px;
    font-size: 14px;
}

.news_view_list .news-enter-meta {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.news_view_list .news-enter-meta li {
    display: inline;
    margin-right: 30px;
    font-size: 13px;
    color: #999;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.news_view_list .news-enter-meta i {
    margin-right: 9px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.news_view_list .news-enter-meta a {
    color: inherit;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.news_view_list1 {
    margin-bottom: 30px;
    position: relative;
}

.news_view_list1 .news-enter-body1 {
    display: table;
    width: 100%;
    position: relative;
    z-index: 1;
}

.news_view_list1 .news-enter-thumbnail-layer1 {
    display: table-cell;
    vertical-align: middle;
}

.news_view_list1 .news-enter-thumbnail1 {
    width: 350px;
    margin-left: -40px;
    position: relative;
    z-index: 1;
}

.news_view_list1 .news-enter-thumbnail1 a {
    display: block;
}

.news_view_list1 .news-enter-details-container1 {
    display: table-cell;
    width: 10000px;
    vertical-align: middle;
}

.news_view_list1 .news-enter-details1 {
    position: relative;
    padding: 27px 40px 26px 40px;
    border: 1px solid #ff9800;
    background: #fff;
    z-index: 3;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news_view_list1 .news-enter-details1:hover {
    background: #ff9800;
}

.news_view_list1 .news-enter-title1 {
    margin-bottom: 12px;
    line-height: 30px;
}

.news_view_list1 .news-enter-title1 a {
    margin: 0 0 27px 0;
    font-size: 18px;
    font-weight: 400;
    color: #011b3a;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.news_view_list1 .news-enter-details1:hover .news-enter-title1 a,
.news_view_list1 .news-enter-details1:hover .news-enter-summary1,
.news_view_list1 .news-enter-details1:hover .news-enter-summary1 p,
.news_view_list1 .news-enter-details1:hover .news-enter-meta1 li i,
.news_view_list1 .news-enter-details1:hover .news-enter-meta1 li a {
    color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.news_view_list1 .news-enter-summary1 {
    margin-bottom: 13px;
    line-height: 24px;
    font-size: 14px;
}

.news_view_list1 .news-enter-meta1 {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.news_view_list1 .news-enter-meta1 li {
    display: inline;
    margin-right: 30px;
    font-size: 13px;
    color: #999;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.news_view_list1 .news-enter-meta1 i {
    margin-right: 9px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.news_view_list1 .news-enter-meta1 a {
    color: inherit;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/*=====================================================
                    Footer
======================================================*/

.footer-layer {
    background-color: #010135;
}

ul.explore_ul {
    margin-bottom: 8px;
    margin-left: -10px;
}

ul.explore_ul>li {
    list-style-type: none;
    line-height: 20px;
    text-transform: uppercase;
    display: inline-block;
    border-right: 1px solid #fff;
}

ul.explore_ul>li>a {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-right: 10px;
    margin-left: 10px;
}

p.footer_para {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.footer_copy>p {
    line-height: 14px;
    margin-top: 5px;
}

.footer_copy>p {
    line-height: 14px;
    margin-top: 5px;
    color: #fff;
}

span.kensho {
    color: #fff;
    letter-spacing: 1px;
    font-weight: 700;
}


/*=====================================================
                    Gallery
======================================================*/

.img-content {
    margin-top: 20px;
    margin-bottom: 20px;
}

.image-icon-box {
    text-align: center;
    background-color: rgba(250, 250, 250, .7);
    position: absolute;
    bottom: 0;
    width: 90%;
}

.image-icon-box>p {
    color: #000;
    margin: 0;
    padding: 10px 0px;
}

.icon-image>a>img {
    width: 100%;
    height: 200px;
}

.home_gallery_grid1.gallery_grid>img {
    width: 100%;
    height: 270px;
}


/*---------- gallery inner -------------*/

.gallery_grid>img {
    width: 100%;
    height: 200px;
}


/*=====================================================
                    Contact
======================================================*/

.maps {
    padding-top: 50px;
    padding-bottom: 50px;
}

.contact-address {
    margin-bottom: 8px;
    height: 75px;
}

input.contact-input {
    margin: 10px 0 25px 0;
}

.contact-textarea {
    margin: 10px 0 20px 0;
}

.genric-butt {
    background-color: #ff9800;
    border: 1px solid #ff9800;
    color: #fff;
    padding: 5px 10px;
    transition: all .3s ease-in-out;
}

.genric-butt:hover {
    background-color: transparent;
    border: 1px solid #ff9800;
    color: #ff9800;
    transition: all .3s ease-in-out;
}

.icon {
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
}

.icon span {
    font-size: 30px;
    font-weight: 500;
    color: #ff9800;
}

.contact-details {
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
}

.contact-details h5 {
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 5px;
}


/*===================================================================
                    Owl Carousel css starts
===================================================================*/

section.middle-slider {
    background: #f8f8f8;
    padding: 20px 0px;
}

.cat-section {
    background: #FFFFFF none repeat scroll 0% 0%;
    padding: 20px;
    border: 1px solid #EAEAEA;
}

.middle-slider .owl-buttons {
    position: absolute;
    top: -66px;
    right: 0px;
}

.col-item .product-img>img {
    height: 275px;
    overflow: hidden;
    border: 1px solid #ccc;
    padding: 10px;
}

.slider-items-products {
    position: relative;
}

.cat-section .new_title {
    border-color: #CDE5F8;
}

.new_title.center {
    height: 38px;
}

.new_title {
    border-bottom: 3px solid #E5E5E5;
}

.cat-section .new_title h2 {
    border: medium none;
    padding-left: 0px;
    font-size: 16px;
}

.new_title h2 {
    border-width: 1px 1px 3px;
    border-style: solid;
    border-color: #37A4D9;
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    border-image: none;
    color: #37A4D9;
    display: inline-block;
    font-size: 16px;
    font-weight: 900;
    margin-top: 0px;
    padding: 10px 15px 7px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-flexslider {
    margin: 20px 0px;
}

.slider-items-products .item {
    text-align: left;
}

.col-item {
    position: relative;
}

.product-image-area {
    position: relative;
    overflow: hidden;
    height: 200px;
    margin: 5px;
    padding: 10px;
    border: 1px solid #CCC;
}

.product-image-area .img-responsive {
    height: 100%;
    width: 100%;
}

.col-item .info .info-inner .item-title {
    margin-bottom: 5px;
    padding-top: 16px;
    font-size: 12px;
    overflow: hidden;
    text-align: center;
}

.cat-section .col-item .info .info-inner .item-title a {
    font-size: 13px;
    color: #37A4D9;
    font-weight: 600;
}

.ratings {
    font-size: 11px;
    line-height: normal;
    margin: 2px 0px;
}

.ratings .rating-box {
    margin-right: 8px;
    display: inline-block;
}

.price-box {
    margin: 3px 0px;
    min-height: 20px;
    font-size: 16px;
}

.old-price {
    display: inline;
    margin: auto;
}

button.button.btn-cart {
    background: #337AB7;
    border: 1px solid #DDD;
    margin: 10px 8px 0px;
    padding: 7px 11px;
    color: white;
    line-height: 14px;
    transition: color 300ms ease-in-out 0s, background-color 300ms ease-in-out 0s, background-position 300ms ease-in-out 0s;
}

.actions {
    text-align: center;
}

.actions button.button.btn-cart span {
    font-size: 11px;
    padding: 0px;
    font-weight: bold;
    margin-left: 0px;
    text-transform: uppercase;
}

.rating ul li {
    float: left;
    margin-left: 2px;
    color: #FF7500;
    list-style-type: none;
}

.item-content {
    text-align: center;
}

.special-price {
    color: red;
    margin: 3px 0px;
}

.slider-items-products {
    position: relative;
}

.slider-items-products .owl-buttons .owl-prev a {
    background-position: 0px 100%;
    left: 0px;
    top: 50%;
}

.owl-buttons .owl-prev a::before {
    content: "\e079";
    font-size: 18px;
    color: #fff;
}

.brand-logo .slider-items-products .owl-buttons .owl-prev a:before {
    font-size: 24px;
}

.brand-logo .slider-items-products .owl-buttons .owl-next a:before {
    font-size: 24px;
}

.owl-buttons .owl-next a:before {
    content: "\e080";
    font-size: 18px;
    color: #fff;
}

.info-inner {
    padding: 5px;
}


/*=============================================================
                    Gallery
==============================================================*/

.col-xs-12.col-md-3.col-sm-4.gallery_grid {
    margin-top: 20px;
    margin-bottom: 20px;
}


/*----------------- chairman message --------------*/

.message-box img {
    float: left;
    margin-right: 15px;
    padding: 5px;
    background-color: #ddd;
    width: 300px;
}

.para-right {
    text-align: right;
    margin-bottom: 0px;
}


/*------------------ alumni ----------------------*/

.alumni-content-top {
    margin-top: 25px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    padding: 15px;
    background-color: #fff;
}


/*------------------ rules and regulation -----------------*/

.rul_reg_head>h2 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.rul_reg_head>h2:after {
    display: block;
    position: absolute;
    left: 36%;
    width: 20%;
    height: 2px;
    content: "";
    background-color: #d00000;
}

.rul_reg {
    padding-top: 20px;
}

.rules_reg {
    padding-bottom: 20px;
    border: 1px solid #eee;
    padding: 15px;
    background-color: #fff;
}

.rules_reg ul>li {
    list-style: none;
}

.rules_reg ul>li:before {
    content: "\f061";
    font: normal normal normal 14px/1 FontAwesome;
    color: #ff9703;
    margin-right: 15px;
}


/*------------------------ curriculum -----------------------*/

.curri-tab-main>p {
    color: #000;
}

.curri-tab-main ul>li {
    list-style: none;
    color: #555;
}

.curri-tab-main ul>li>span {
    color: #256f68;
}

.curri-tab-main ul>li:before {
    content: "\f0a9";
    font: normal normal normal 14px/1 FontAwesome;
    color: #ff9703;
    margin-right: 15px;
}


/*------------------ teachers articles -------------------*/

.teacher-content-bottom-left {
    margin-top: 25px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    padding: 15px;
    background-color: #fff;
}

.teacher-content-bottom-left>img {
    float: left;
    padding-right: 25px;
    padding-bottom: 10px;
    width: 300px;
}

.teacher-content-bottom-left>h3 {
    color: #000f3c;
}

.teacher-content-bottom-left>p {
    font-size: 16px;
    text-align: justify;
}


/*------------------ circular ---------------------*/

.circular_view_grid {
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 30px 30px 25px 30px;
    margin-bottom: 30px;
    background-color: #fafafa;
}

.circular_view_grid {
    background: #fdfdff;
    border: 1px solid #ff9800;
    border-radius: 0px;
    transition: 0.5s ease-in-out;
}

.circular_view_grid:hover {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: 0 2px 12px rgba(34, 30, 31, 0.4);
    transition: 0.5s ease-in-out;
}

.circular_view_grid .circular_left {
    margin-top: 5px;
}



.circular_note>i {
    padding: 20px;
    font-size: 36px;
    text-align: center;
    color: #ffffff;
    background-color: #ff9800;
    border: 1px solid #ff9800;
    border-radius: 50%;
    transition: 0.5s ease-in-out;
}

.circular_note>i:hover {
    color: #ff9800;
    background-color: #fff;
    border: 1px solid #ff9800;
    transition: 0.5s ease-in-out;
}

.circular_view_grid .circular_content {
    overflow: hidden;
    padding-left: 25px;
}

.circular_view_grid .circular_meta {
    margin-bottom: 14px;
}

.circular_view_grid .circular_meta ul {
    margin-bottom: 0;
    padding-left: 0;
    font-size: 0;
    list-style: none;
    line-height: normal;
}

.circular_view_grid .circular_meta li {
    display: inline-block;
    color: #ff9800;
    font-size: 13px;
}

.circular_view_grid .circular_meta li:not(:last-child) {
    margin-right: 30px;
}

.circular_view_grid .circular_meta i {
    margin-right: 10px;
    color: #999;
}

.circular_view_grid .circular_title {
    margin-bottom: 12px;
    font-size: 16px;
    text-align: justify;
}

.circular_view_grid .circular_summary p {
    font-size: 14px;
    line-height: 24px;
    color: #707070;
    text-align: justify;
}

.circular_view_grid .circular_summary p a {
    font-size: 14px;
    line-height: 24px;
    color: #ff9800;
    text-align: justify;
}

.circular-content-left {
    margin-top: 25px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    padding: 15px;
    background-color: #fff;
}

.circular-content-left ul>li {
    list-style: none;

}

.circular-content-left ul>li>a {
    color: #000;
    padding: 5px 0px;
    line-height: 2.5;
}

.circular-content-left ul>li>a:hover {
    color: #ff9703;
}

.circular-content-left ul>li:before {
    content: "\f0a9";
    font: normal normal normal 14px/1 FontAwesome;
    color: #ff9703;
    margin-right: 15px;
}


/*----------------- list of holiday -----------------*/

.table-list>table>thead>tr>th {
    background-color: #d7e8fe;
}


/*------------------------ Student TC -----------------------*/

.student_tc>p {
    color: #000;
}

.student_tc ul>li {
    list-style: none;
    color: #555;
}

.student_tc ul>li>a {
    color: #000;
}

.student_tc ul>li:before {
    content: "\f0a9";
    font: normal normal normal 14px/1 FontAwesome;
    color: #ff9703;
    margin-right: 15px;
}


/*--------------- Activities ------------------*/

.active-content-top>h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
}

.active-content-top>h3:after {
    display: block;
    position: absolute;
    left:0;
    width: 8%;
    height: 2px;
    content: "";
    background-color: #d00000;
    bottom: -10px;
}

.active-content-bottom {
    margin-top: 25px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    padding: 15px;
    background-color: #fff;
}

.active-content-bottom>img {
    width: 190px;
    vertical-align: top;
    float: left;
    margin-right: 30px;
    margin-bottom: 10px;
}


/*--------------- Activities ------------------*/

.young-content-bottom {
    margin-top: 25px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    padding: 15px;
    background-color: #fff;
}

.young-content-head {
    color: #000f5f;
}

.inputerror {
    border-color: red !important;
}

span.error {
    color: red;
}

.pickclass {
    border: 1px solid grey;
    float: left;
}


/*result*/

table.results {
    width: 100%;
}

table.results td {
    padding: 20px;
}

td.resbold {
    font-weight: bold;
}

.col-xs-12.col-md-6.grade-block {
    padding-left: 150px;
}

table.results-grade td {
    padding: 6px 20px;
}

.image-icon-box1 {
    text-align: center;
    position: absolute;
    bottom: -92px;
    width: 90%;
}



.img-content1 {
    margin-top: 20px;
    margin-bottom: 75px;
}

p.stu_name {
    color: #000;
}

h2.title_service_sec.text-center.down-line.wow.fadeInUp.animated {
    margin-bottom: 30px;
    margin-top: 34px;
    font-weight: 600;

}

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

.down-line {
    padding-bottom: 20px;
    position: relative;
}

.sub-title.box {
    width: 770px;
}

.sub-title {
    color: #1a1a1a;
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 auto;
    padding-bottom: 30px;
}

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

.srvc-item {
    background: #fff;
    margin-bottom: 30px;
    height: 247px;
    padding: -10px 20px;
    border: 2px solid #cfcfcf;
    text-align: center;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.srvc-icon {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
}


.carousel-control.right {
    right: 3px;
    margin-top: 96px;
}

a.left.carousel-control {
    margin-left: 15px;
    margin-top: 96px;
}

.carousel-control {
    left: -12px;
    height: 40px;
    width: 40px;
    background: none repeat scroll 0 0 #222222;
    border: 4px solid #FFFFFF;
    border-radius: 23px 23px 23px 23px;
    margin-top: 90px;
}

div#Carousel {
    margin-top: 17px;
}

.toppers_blog {
    margin-top: 66px;
}

.inner-title {
    background: rgba(0, 0, 0, 0.68);
    width: 216px;
    margin-left: 0px;
    margin-top: 136px;
    padding-top: 10px;
    height: 83px;
    padding-bottom: 10px;
}

.inner-para {
    color: #fff;
    font-size: 12px;
}

img.img-responsive {
    margin-top: 28px;
}

.featured_news {

    margin-top: -50px;
    margin-left: 4px;
}

.featured_news_view {
    position: relative;
    padding: 10px 0px 2px !important;
    margin: 0;
    background: rgba(26, 24, 24, 0.49019607843137253);
    width: 97%;
    margin-top: -65px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

h4.text-uppercase {
    color: white;
    margin-top: -6px;
}

button.btn.btn-dft.filter-button {
    background-color: green;
    color: white;
}



button.btn.btn-dft_bt.filter-button {
    background-color: #d21616;
    color: white;
}


/* Cutom */

.topper-block {
    text-align: center;
    margin-top: 20px;
}

.topper-block img {
    height: 200px;
    border-radius: 50px;
    min-width: 150px;
}


section.topband {
    height: 36px;
    background-color: #192f59;
}

ul.topband_list {
    display: flex;
}

.topbandcenter {
    float: right;
}

ul.topband_list {
    list-style: none;
    display: flex;
}

.socialicons {
    color: white;
    font-size: 17px;
    margin-top: 4px;
}

.topbandcenter {
    float: right;
    color: white;
    font-weight: 600;
}



a.topbandcenter:hover {
    color: #ff9800;
}

.logo_tit {
    margin-top: -4px;
    color: black;
    font-size: 11.9px;
    letter-spacing: 0px;
    font-weight: bold;
}

ul.topband_list {
    list-style: none;
    display: flex;
    padding: 2px;
}

li.toplist {
    padding-right: 24px;
    font-size: 15px;
}

li#right_con {
    margin-top: 4px;
}


/* social media icons */

.social-media-icons ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.social-media-icons a {
    display: inline-block;
    text-decoration: none;
    padding: 7px;
}

.social-media-icons a:nth-child(1) i {
    color: #eeeeee;
}

.social-media-icons a:nth-child(2) i {
    color: #eeeeee;
}

.social-media-icons a:nth-child(3) i {
    color: #eeeeee;
}

.social-media-icons a:nth-child(4) i {
    color: #eeeeee;
}

.social-media-icons a i:hover {
    color: #ff9703;
    transition: 1s;
}

ul.science_stream {
    padding-inline-start: 40px;
    list-style: none;
}

.scrolling_title {
    margin-top: -28px;
}

.scrolling_title {
    margin-top: 0px;
    background-color: #192f59;
    color: white;
    height: 24px;
    font-weight: bold;
}

.tab-bread-crmbs {
    display: none;
}


/*=================24 june 2021=============*/

h1.animated.fadeInDown {
    padding: 10px;
    background-color: #f37923;
    color: #fff;
    text-align: center;
    animation: pulse 2s infinite ease-in-out alternate;
    border-radius: 20px;
    width: 85%;
    margin-left: 60px;
    display: none;
    font-weight: bold;
}


/*--------career page---*/

.bgcolour {
    background: #F8F8F5;
}

.container1600 {
    width: initial;
}

.padding0505 {
    padding: 0 5% 0 5% !important;
}

.shortGlance {
    color: #000000;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 28px;
    margin-top: 40px;
    text-align: left;
}

.section-headlinecoloured {
    padding-bottom: 12px;
    border-bottom: 2px solid currentcolor;
    margin-top: 40px;
    padding-top: 20px;
}

.amenities-container {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    border-bottom: 1px solid #ece9d9;
    padding: 25px 0;
}

.sub-heading-directionleft {
    font-size: 16px;
    width: 160px;
    align-self: flex-start;
    margin-right: 30px;
    line-height: 1.5;
    font-weight: bold !important;
}

.amenities-paragraph {
    width: 70%;
    float: right;
    font-size: 16px;
}

.contact_main_blocks {
    /* background: #fafafa none repeat scroll 0 0; */
    padding: 30px 30px;
    width: 80%;
    margin: 0 auto;
}


/*--------career page---*/


/*=========================student tc===============================*/

h1.signin-title {
    color: #050505;
    text-align: center;
    font-size: 50px;
}

.form_field {
    padding: 12px 0px;
}

label.signin-label {
    font-size: 16px;
    font-weight: 200;
    color: #4a4848;
}

input#ad_email {
    background: #fff;
    background-clip: padding-box;
    border-radius: 0;
    color: #666;
    border: 1px solid #949494 !important;
    font-size: 14px;
    font-weight: normal;
    height: 46px;
    line-height: 40px;
    padding: 0 10px;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

input#ad_password {
    background: #fff;
    background-clip: padding-box;
    border-radius: 0;
    color: #666;
    border: 1px solid #949494 !important;
    font-size: 14px;
    font-weight: normal;
    height: 46px;
    line-height: 40px;
    padding: 0 10px;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.form_submit {
    padding: 15px 0px;
    text-align: center;
}

.btn.btn-primary.submit {
    padding: 10px 25px;
    font-size: 18px;
    background-color: #557b97;
    outline: none;
    border-color: #557b97;
}


/*====================================student tc========================================*/


/* =new home style= */

.modal-dialog {
    width: 40%;
}

/* ========section last==== */
.necon_main {
    display: block;
    font-size: 14px;
    line-height: 16px;
    text-align: left;
    font-weight: 600;
    letter-spacing: .6px;
    text-decoration: none;
    color: #fff;
    margin: 0;
    padding: 0;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.necon_main {
    position: fixed;
    width: 180px;
    height: 50px;
    margin: 0;
    padding: 0;
    top: 60%;
    /* right: -135px; */
    z-index: 999;
    border-radius: 0px 15px 15px 0px;
    overflow: hidden;
    background: #17383f;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

p.necon_sub {
    padding: 18px 3px;
    font-size: 16px;
}

.label-danger {
    background-color: red;
}

.blink_me {
    animation: blinker 2s linear infinite;
}


.label-danger {
    background-color: #d9534f;
}