﻿/*-------------------------------------------------------------- 
# Header 
--------------------------------------------------------------*/
.headerNav {
    top: 0px;
    background-color: maroon;
    z-index: 999;
    transition: all 0.9s;
    box-shadow: 0px 0px 5px rgba(127, 137, 161, 0.3);
    display: flex;
    align-items: center;
    
}

.navbarscroll {
    position: sticky;
}

.fixedHeader {
    position: fixed;
    top: 0px;
}

.logo-top {
    height: 57px;
}
/* topnavbar */
.TopNavbar {
    padding: 0px 0px;
    background-color: var(--white-color);
}

    .TopNavbar .btn {
        border: 2px solid;
        border-color: var(--white-color);
        font-size: 12px;
        text-transform: uppercase;
    }

        .TopNavbar .btn:hover {
            border-color: var(--maroon-color);
        }

    .TopNavbar ul li a {
        font-size: 12px;
        color: #d0d6dd;
    }

    .TopNavbar ul li .topSocialIcon {
        color: white;
        margin-right: 7px;
        font-size: 16px;
    }

        .TopNavbar ul li .topSocialIcon:hover {
            color: #000;
        }

    .TopNavbar .fa {
        font-size: 13px;
        color: var(--maroon-color);
    }
/* topnavbar */
/*-------------------------------------------------------------- # 
Navigation Menu 
--------------------------------------------------------------*/
.main-nav, .main-nav * {
    list-style: none;
}

    .main-nav .drop-down > a::after {
        padding-left: 0px !important;
    }

    .main-nav > ul > li {
        position: relative;
        white-space: nowrap;
        float: left;
    }

    .main-nav a, .main-nav select {
        color: white;
        display: block;
        padding: 29px 6px;
        font-size: 14px;
        font-family: Roboto-Medium;
    }

        .main-nav select option {
            color: #000;
        }

        .main-nav a:hover, .main-nav a.active, .main-nav ul a.active, .main-nav li:hover > a {
            color: var(--yellow-color);
        }

    .main-nav .drop-down ul {
        position: relative;
        margin-top: 0;
        text-align: left;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        transform: scaleY(0);
        transform-origin: 0 0 0;
        transition: all 0.5s ease 0s;
        z-index: 99999;
        background: #800000;
        padding: 0;
        left: 0px;
    }

    .main-nav .drop-down:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
    }

    .main-nav .drop-down li {
        min-width: 180px;
        position: relative;
        background-color: var(--maroon-color);
    }

    .main-nav .drop-down ul a {
        padding: 7px 13px;
        font-size: 13px;
        color: #fff;
        display: block;
        border-top: 1px solid #21528c;
    }

        .main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
            background-color: var(--yellow-color);
            color: var(--blue-color)
        }

    .main-nav .drop-down > a:after {
        border: none !important;
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f107" !important;
        vertical-align: 0;
        padding-left: 6px;
    }

    .main-nav .drop-down:hover .main-nav .drop-down > a:before {
        border: none !important;
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f106" !important;
        vertical-align: 0;
    }

    .main-nav .drop-down .drop-down ul {
        top: 0;
        left: calc(100% - 30px);
    }

    .main-nav .drop-down .drop-down:hover > ul {
        opacity: 1;
        left: 100%;
    }

    .main-nav .drop-down .drop-down > a {
        padding-right: 35px;
    }

        .main-nav .drop-down .drop-down > a:after {
            content: "\f105";
            position: absolute;
            right: 15px;
            top: 7px;
        }




/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 3333;
    overflow-y: auto;
    left: -290px;
    width: 290px;
    padding-top: 18px;
    background: #800000;
    transition: 0.4s;
}

    .mobile-nav * {
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: white;
        padding: 10px 20px;
        font-weight: 500;
        border-bottom: 1px solid;
        border-color: #f1f1f1
    }

        .mobile-nav a:active {
            background-color: var(--yellow-color);
            color: #000;
            text-decoration: none;
        }

    .mobile-nav .drop-down.active a {
        background-color: var(--maroon-color);
        color: white;
    }

    .mobile-nav .drop-down.active > ul .drop-down.active > a, .mobile-nav .drop-down li a:hover {
        background-color: var(--yellow-color) !important;
        color: #000 !important;
    }

    .mobile-nav .drop-down li a {
        background: var(--maroon-color) !important;
        color: white !important;
        text-decoration: none;
    }

        .mobile-nav .drop-down li a:hover {
            background-color: var(--yellow-color);
            color: #000 !important;
        }

    .mobile-nav .drop-down > a:after {
        right: 15px;
        top: 13px;
        position: absolute;
        content: "\f067";
        border: none !important;
        font: normal normal normal 14px/1 FontAwesome;
        vertical-align: 0;
    }

    .mobile-nav .drop-down.active > a:after {
        content: "\f068" !important;
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li a {
        padding-left: 25px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 2222;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        left: 0;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fdc800;
    }

.mobile-nav .btn-blue {
    padding: 9px 19px !important;
    color: #fdc800;
    font-size: 15px;
}

.mobile-nav .btn-blue-outline {
    padding: 9px 19px !important;
    font-size: 15px;
}

/*navbar END*/
/*-------------------------------------------------------------- # 
maintop sliders
--------------------------------------------------------------*/
.homeTopMainSlider {
    height: 450px;
}

    .homeTopMainSlider .swiper-slide {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

        .homeTopMainSlider .swiper-slide::before {
            position: absolute;
            background: rgb(0 0 0 / 65%);
            left: 0;
            content: "";
            right: 0;
            bottom: 0;
            top: 0;
            z-index: 0;
        }

        .homeTopMainSlider .swiper-slide h1 {
            color: #FFFFFF;
            text-transform: capitalize;
            font-size: 56px;
        }

        .homeTopMainSlider .swiper-slide p {
            color: #FFFFFF;
            margin-top: 20px;
            margin-bottom: 30px;
            font-size: 15px;
        }

    .homeTopMainSlider .swiper-button-prevtop, .homeTopMainSlider .swiper-button-nexttop {
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.5);
        box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
        border-radius: 50%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: #fff;
        border-color: white;
    }

        .homeTopMainSlider .swiper-button-prevtop:hover, .homeTopMainSlider .swiper-button-nexttop:hover {
            background-color: var(--yellow-color);
            color: var(--blue-color);
        }

    .homeTopMainSlider .swiper-button-next {
        right: 10px;
        background-image: unset;
    }

    .homeTopMainSlider .swiper-button-prev {
        left: 10px;
        background-image: unset
    }

    .homeTopMainSlider .swiper-pagination-bullets {
        bottom: 87px;
    }

    .homeTopMainSlider .swiper-pagination-bullet {
        width: 11px;
        height: 11px;
        border: 1px solid white
    }

.newAddMarquee {
    position: relative;
    bottom: 0px;
    width: 100%
}

.newAddMarquee {
    background-color: var(--yellow-color);
    color: var(--blue-color);
    font-family: Roboto-Medium;
}
/*animation btn ends*/


/*servicesCard*/
.servicesCardSection .swiper-wrapper, .servicesCardSection .swiper-slide, .servicesCardSection .swiper-slide {
    height: auto !important;
}

.servicesCardSection .swiper-button-prevt, .servicesCardSection .swiper-button-nextt {
    width: 25px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    top: 0px;
    bottom: 0px;
    height: 99.1%;
}

    .servicesCardSection .swiper-button-prevt:hover, .servicesCardSection .swiper-button-nextt:hover {
        background-color: #10427b;
        color: #fff
    }

.servicesCardSection .swiper-button-next {
    right: 0px;
    background-image: unset;
    margin-top: 0px
}

.servicesCardSection .swiper-button-prev {
    left: 0px;
    background-image: unset;
    margin-top: 0px
}

.servicesCardSection .servicesCard:nth-of-type(even) {
    background-color: var(--blue-color)
}

.servicesCardSection .servicesCard:nth-of-type(odd) {
    background-color: var(--yellow-color)
}

.servicesCardSection a {
    display: block;
}

.servicesCard {
    padding: 20px 15px;
    transition: all .3s;
    border-bottom: 2px solid white
}

    .servicesCard:hover {
        box-shadow: 0px 0px 13px 0px #969595;
        border-bottom: 2px solid white
    }

    .servicesCard h5 {
        font-size: 17px;
        font-family: Roboto-Bold;
        color: white;
    }

    .servicesCard p {
        font-size: 15px;
        font-family: Roboto-Regular;
        color: white;
        margin-top: 10px;
    }

    .servicesCard img {
        height: 46px;
    }
/*servicesCard end*/

.headingText {
    font-size: 37px
}

.smallHeading {
    font-size: 14px;
    font-family: Roboto-Regular;
    margin: 0;
    line-height: 30px;
    color: #647180;
}

.Headingline {
    background-color: var(--yellow-color);
    width: 55px;
    display: block;
    margin: 11px auto 5px auto;
    height: 2px;
}
/* abouttext */
.AboutsText p {
    color: var(--color-gray);
    font-size: 16px;
    line-height: 30px;
}
/* end abouttext */

/*catgory cards*/
.CategoryMainDiv .swiper-button-prevCat, .CategoryMainDiv .swiper-button-nextCat {
    width: 25px;
    height: 35px;
    background-color: var(--yellow-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.CategoryMainDiv .swiper-button-next {
    right: 10px;
    background-image: unset;
}

.CategoryMainDiv .swiper-button-prev {
    left: 10px;
    background-image: unset
}

.Category {
    padding: 30px 22px;
    transition: all .4s ease-out 0s;
    text-align: center;
    position: relative;
}

    .Category h5 {
        font-size: 22px;
        margin-bottom: 15px;
        font-weight: 500;
    }

        .Category h5 a {
            color: var(--blue-color);
        }

    .Category a:hover {
        color: var(--yellow-color);
    }

    .Category p {
        font-size: 13px;
        color: var(--light-blue);
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .Category img {
        height: 50px;
        margin-bottom: 13px;
        position: relative;
    }

    .Category .btn-blue-outline:hover {
        background-color: var(--blue-color);
        color: #fff
    }

    .Category .btn {
        padding: 4px 8px;
        font-size: 13px;
        font-weight: 600;
    }

    .Category:hover img {
        filter: sepia(1);
    }

.Categoryicon {
    font-size: 40px;
    margin-bottom: 20px
}

.CategoryIconAfter {
    width: 70px;
    margin: auto;
}

    .CategoryIconAfter::before {
        height: 50px;
        width: 50px;
        background-color: #fff7c8;
        content: "";
        position: absolute;
        top: 0px;
        left: -14px;
        border-radius: 50%;
    }

.Category:hover .CategoryIconAfter::before {
    background-color: #e2f1ff;
}
/*end catgory*/

/*counters*/
.count-title {
    font-size: 65px;
}

.counterText {
    color: var(--yellow-color);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
}

.counterStudent:before {
    position: absolute;
    background: rgb(0 0 0 / 72%);
    left: 0;
    content: "";
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 0;
}

.counterStudent {
    min-height: 400px;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
}
/*counters end*/

/* LatestNewsSection*/
.LatestMainSection:before {
    position: absolute;
    background: rgb(0 0 0 / 83%);
    left: 0;
    content: "";
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 0;
}

.LatestMainSection {
    min-height: 360px;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
}
/*counters end*/

.LatestNewsSection .swiper-wrapper, .LatestNewsSection .swiper-slide, .LatestNewsSection .swiper-slide {
    height: auto;
}

.LatestNewsSection .swiper-wrapper, .LatestNewsSection .swiper-slide, .LatestNewsSection .swiper-slide {
    height: auto !important;
}

.LatestNewsSection .swiper-button-prevt, .LatestNewsSection .swiper-button-nextt {
    width: 27px;
    height: 31px;
    border: 1px solid white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-top: 0px;
}

    .LatestNewsSection .swiper-button-prevt:hover, .LatestNewsSection .swiper-button-nextt:hover {
        background-color: var(--yellow-color);
        color: var(--blue-color)
    }

.LatestNewsSection .swiper-button-next {
    right: 0px;
    background-image: unset;
    left: auto;
}

.LatestNewsSection .swiper-button-prev {
    right: 41px;
    background-image: unset;
    left: auto;
}

.LatestNewsCard {
    background-color: rgba(0, 0, 0, 0.596);
    padding-bottom: 15px;
}

    .LatestNewsCard img {
        height: 200px;
        width: 100%;
        object-fit: cover;
        webkit-transition: all 1s ease-out;
        -moz-transition: all 1s ease-out;
        -ms-transition: all 1s ease-out;
        -o-transition: all 1s ease-out;
        transition: all 1s ease-out;
    }

        .LatestNewsCard img:hover {
            opacity: .5
        }

    .LatestNewsCard p {
        color: white;
        text-align: center;
        font-size: 14px;
    }

    .LatestNewsCard h5 {
        background-color: var(--yellow-color);
        text-align: center;
        font-size: 13px;
        padding: 5px 5px;
        display: inline-block;
        font-family: Roboto-Medium;
    }
/*End Testimonials Clients Student Community Feedback*/


/* Featured_Courses*/
.Featured_Courses .swiper-wrapper, .Featured_Courses .swiper-slide, .Featured_Courses .swiper-slide {
    height: auto;
}

.Featured_Courses .swiper-wrapper, .Featured_Courses .swiper-slide, .Featured_Courses .swiper-slide {
    height: auto !important;
}

.Featured_Courses .swiper-button-prevt, .Featured_Courses .swiper-button-nextt {
    width: 27px;
    height: 31px;
    background-color: var(--yellow-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue-color);
    margin-top: 0px;
}

    .Featured_Courses .swiper-button-prevt:hover, .Featured_Courses .swiper-button-nextt:hover {
        background-color: var(--blue-color);
        color: #fff;
    }

.Featured_Courses .swiper-button-next {
    right: 0px;
    background-image: unset;
    left: auto;
}

.Featured_Courses .swiper-button-prev {
    right: 41px;
    background-image: unset;
    left: auto;
}

.Featured-CoursesCard {
    box-shadow: rgb(239 239 239) 0px 0px 7px 0px !important;
    background-color: #fff;
}

    .Featured-CoursesCard h6 a {
        font-size: 19px;
        color: var(--blue-color);
    }

        .Featured-CoursesCard h6 a:hover {
            font-size: 19px;
            color: var(--yellow-color);
        }

    .Featured-CoursesCard p {
        font-family: Roboto-Regular;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        margin-top: 5px;
        font-size: 13px;
        color: var(--light-blue);
        line-height: 20px;
    }

    .Featured-CoursesCard .Featured-CoursedImage {
        display: block;
        height: 177px;
        overflow: hidden;
    }

    .Featured-CoursesCard img {
        object-fit: cover;
        height: 177px;
        width: 100%;
        transform: scale(1);
        webkit-transition: all 1s ease-out;
        -moz-transition: all 1s ease-out;
        -ms-transition: all 1s ease-out;
        -o-transition: all 1s ease-out;
        transition: all 1s ease-out;
    }

        .Featured-CoursesCard img:hover {
            transform: scale(1.1);
        }
/*End Testimonials Clients Student Community Feedback*/

/* Featured_Courses */
.Departments_Section {
    background-color: var(--yellow-color);
}

.DepartmentsCard {
    background: #FFFFFF;
    margin-bottom: 30px;
}

    .DepartmentsCard .DepartmentsCardText h5 a {
        font-size: 23px;
        color: var(--blue-color);
        font-weight: 500;
    }

        .DepartmentsCard .DepartmentsCardText h5 a:hover {
            color: var(--yellow-color);
        }

    .DepartmentsCard .DepartmentsCardText p {
        font-size: 13px;
        color: var(--light-blue);
        line-height: 20px;
        margin-top: 10px;
    }

.DepartmentsCardText {
    padding: 15px;
}
/*  */

.EventsSection p {
    font-size: 14px;
    line-height: 19px;
    margin-top: 10px;
}

.EventsSection .EventsTime {
    font-size: 13px;
    color: gray;
}

.EventsSection .EventHeading {
    color: var(--blue-color);
    font-size: 19px;
}

.PrincipalMessage p {
    line-height: 23px;
}

.Principal_Message {
    height: 177px;
}

    .Principal_Message img {
        object-fit: cover;
        height: 177px;
        width: 100%;
        transform: scale(1);
        webkit-transition: all 1s ease-out;
        -moz-transition: all 1s ease-out;
        -ms-transition: all 1s ease-out;
        -o-transition: all 1s ease-out;
        transition: all 1s ease-out;
        border: 1px solid #ccc
    }

        .Principal_Message img:hover {
            transform: scale(1.1);
        }
/* our skilled lectures*/
.our-skilled-lectures .swiper-wrapper, .our-skilled-lectures .swiper-slide, .our-skilled-lectures .swiper-slide {
    height: auto;
}

.our-skilled-lectures .swiper-wrapper, .our-skilled-lectures .swiper-slide, .our-skilled-lectures .swiper-slide {
    height: auto !important;
}

.our-skilled-lectures .swiper-button-prevt, .our-skilled-lectures .swiper-button-nextt {
    width: 27px;
    height: 31px;
    background-color: var(--yellow-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue-color);
    margin-top: 0px;
}

    .our-skilled-lectures .swiper-button-prevt:hover, .our-skilled-lectures .swiper-button-nextt:hover {
        background-color: var(--blue-color);
        color: #fff;
    }

.our-skilled-lectures .swiper-button-next {
    right: 0px;
    background-image: unset;
    left: auto;
}

.our-skilled-lectures .swiper-button-prev {
    right: 41px;
    background-image: unset;
    left: auto;
}

.our-skilled-lecturesCard h6 a {
    font-size: 19px;
    color: var(--blue-color);
}

    .our-skilled-lecturesCard h6 a:hover {
        font-size: 19px;
        color: var(--yellow-color);
    }

.our-skilled-lecturesCard p {
    font-family: Roboto-Regular;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-top: 5px;
    font-size: 13px;
    color: var(--light-blue);
    line-height: 20px;
}

.our-skilled-lecturesCard .our-skilled-lecturesProfile {
    display: block;
    height: 200px;
    overflow: hidden;
}

.our-skilled-lecturesCard img {
    height: 200px;
    width: 100%;
    transform: scale(1);
    webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
    object-fit: cover;
    border: 1px solid #ccc
}

    .our-skilled-lecturesCard img:hover {
        transform: scale(1.1);
    }

/* college Adminstration */
.college-Adminstration .swiper-wrapper, .college-Adminstration .swiper-slide, .college-Adminstration .swiper-slide {
    height: auto;
}

.college-Adminstration .swiper-wrapper, .college-Adminstration .swiper-slide, .college-Adminstration .swiper-slide {
    height: auto !important;
}

.college-Adminstration .swiper-button-prevt, .college-Adminstration .swiper-button-nextt {
    width: 27px;
    height: 31px;
    background-color: var(--yellow-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue-color);
    margin-top: 0px;
}

    .college-Adminstration .swiper-button-prevt:hover, .college-Adminstration .swiper-button-nextt:hover {
        background-color: var(--blue-color);
        color: #fff;
    }

.college-Adminstration .swiper-button-next {
    right: 0px;
    background-image: unset;
    left: auto;
}

.college-Adminstration .swiper-button-prev {
    right: 41px;
    background-image: unset;
    left: auto;
}

.College-Admi_card {
    box-shadow: rgb(239 239 239) 0px 0px 7px 0px !important;
    background-color: #fff;
}

    .College-Admi_card h5 {
        font-size: 15px;
        color: var(--gray)
    }

        .College-Admi_card h5 .fa {
            color: var(--yellow-color)
        }

    .College-Admi_card h6 a {
        font-size: 19px;
        color: var(--blue-color);
    }

        .College-Admi_card h6 a:hover {
            font-size: 19px;
            color: var(--yellow-color);
        }

    .College-Admi_card p {
        font-family: Roboto-Regular;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        margin-top: 5px;
        font-size: 13px;
        color: var(--light-blue);
        line-height: 20px;
    }

    .College-Admi_card .College-Admi_Profile {
        display: block;
        height: 177px;
        overflow: hidden;
        background-color: black;
    }

    .College-Admi_card img {
        height: 177px;
        width: 100%;
        transform: scale(1);
        webkit-transition: all 1s ease-out;
        -moz-transition: all 1s ease-out;
        -ms-transition: all 1s ease-out;
        -o-transition: all 1s ease-out;
        transition: all 1s ease-out;
    }

        .College-Admi_card img:hover {
            transform: scale(1.1);
            opacity: .6;
        }


/*footer*/
footer {
    background: #800000 !important;
}

    footer a {
        font-size: 13px;
    }

    footer h5 {
        font-size: 21px;
        margin-bottom: 20px;
    }

    footer a, footer p {
        color: #e1e1e1
    }

    footer p {
        font-size: 13px;
        line-height: 21px;
    }

.footer-social-link a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #000;
    margin-right: 5px;
    color: #fff;
    font-size: 19px;
    transition: .3s;
}

    .footer-social-link a i:hover {
        transform: scale(1.1);
    }

    .footer-social-link a i.fa-facebook {
        background-color: #3B5998;
    }

    .footer-social-link a i.fa-twitter {
        background-color: #55ACEE;
    }

    .footer-social-link a i.fa-google-plus {
        background-color: #DD4B39;
    }

    .footer-social-link a i.fa-linkedin {
        background-color: #0976B4;
    }

    .footer-social-link a i.fa-instagram {
        background-color: #B7242A;
    }

footer ul.informationLink li {
    padding: 4px 0;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}

    footer ul.informationLink li:hover {
        padding: 4px 0;
        margin-left: 5px;
    }

    footer ul.informationLink li a i {
        margin-right: 5px;
    }

    footer ul.informationLink li:hover a i {
        font-weight: 700;
    }

    footer ul.informationLink li:hover .fa, footer ul.informationLink li:hover a {
        color: var(--yellow-color);
        font-weight: 700;
    }

footer .contactAddress li p {
    margin-left: 20px;
}

footer a:hover {
    color: var(--yellow-color);
}

.footerBottom {
    background: #800000;
}

footer .fa {
    margin-top: 3px;
}
/*footer ends*/

#scrollTop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: var(--yellow-color);
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    border: 1px solid black;
}

    #scrollTop span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -8px;
        margin-top: -12px;
        height: 0;
        width: 0;
        border: 8px solid transparent;
        border-bottom-color: black;
    }

    #scrollTop:hover {
        background-color: #d2a80a;
        opacity: 1;
        filter: "alpha(opacity=100)";
        -ms-filter: "alpha(opacity=100)";
    }

/* abouttext */
.AboutsText p {
    color: var(--color-gray);
    font-size: 16px;
    line-height: 30px;
}

/* end abouttext */
.AboutsTopBanner {
    min-height: 250px;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

    .AboutsTopBanner:before {
        content: "";
        background-color: rgba(0, 0, 0, 77%);
        position: absolute;
        right: 0px;
        left: 0px;
        top: 0px;
        bottom: 0px;
    }

    .AboutsTopBanner h1 {
        padding-bottom: 5px;
        color: #fff;
        line-height: 54px;
        font-size: 41px;
        position: relative;
    }

    .AboutsTopBanner h1 {
        font-family: Roboto-Medium;
    }

.bannerNav .text-yellow:hover {
    color: #fff;
}

.AboutsList ul li::before {
    content: "\2022";
    color: var(--blue-color);
    font-weight: bold;
    display: inline-block;
    margin-left: -20px;
    font-size: 30px;
    margin-top: -1px;
    position: absolute;
}

.AboutsList ul li {
    font-size: 14px;
    line-height: 23px;
    margin-top: 5px;
}

.AboutsList p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7em;
}

.Aboutus_Collps_Icon .Collapseheader span {
    position: relative;
    cursor: pointer;
    margin-top: 15px;
    font-family: Roboto-Bold !important;
    font-size: 17px;
    background-color: var(--yellow-color);
    padding: 15px;
}

.Aboutus_Collps_Icon .Collapseheader .collapsed {
    background-color: var(--blue-color);
    color: white;
}

.Aboutus_Collps_Icon .Collapseheader .fa {
    position: absolute;
    right: 15px;
    top: 18px;
}

.Aboutus_Collps_Icon .Collapseheader span {
    padding-right: 23px;
}

.Aboutus_Collps_Icon .card-body {
    padding: 15px;
    background: #fff8dd;
    border: 1px solid;
    border-color: var(--yellow-color);
}

.About-us-Collapse [data-toggle="collapse"] .fa:before {
    content: "\f068";
}

.About-us-Collapse [data-toggle="collapse"].collapsed .fa:before {
    content: "\f067";
}

.About-us_List li a {
    padding: 11px 10px;
    border-bottom: 1px solid #e0e0e0;
    display: block;
    position: relative;
    padding-left: 30px;
    color:#000000;
}

    .About-us_List li a:hover {
        color: var(--white-color);
        background-color: var(--maroon-color);
    }

    .About-us_List li a.active {
        color: var(--blue-color);
        background-color: var(--yellow-color);
    }

    .About-us_List li a.dactive {
        color: var(--yellow-color);
        background-color: var(--blue-color);
    }

    .About-us_List li a .fa {
        position: absolute;
        top: 13px;
        left: 15px;
    }

.aboutusQuick_Links .fa {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid;
    border-color: white;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    margin-right: 7px;
}

.aboutusQuick_Links :nth-of-type(even) .fa {
    background-color: var(--blue-color) !important;
    color: white !important;
}

.aboutusQuick_Links :nth-of-type(odd) .fa {
    background-color: var(--yellow-color);
    color: var(--blue-color);
}

.aboutusQuick_Links li:hover {
    background-color: var(--yellow-color) !important;
    color: var(--blue-color);
}

    .aboutusQuick_Links li:hover .fa {
        border-color: var(--blue-color);
    }
/* .aboutusQuick_Links li:hover:nth-of-type(even){
    background-color: var(--blue-color) !important;
    color: #fff;
}

.aboutusQuick_Links li:hover:nth-of-type(odd) .fa{
    background-color: var(--blue-color);
    color: white;
}
.aboutusQuick_Links li:hover:nth-of-type(even) .fa{
    background-color: var(--yellow-color) !important;
    color: var(--blue-color);
} */



.aboutusQuick_Links li a {
    padding: 10px 15px;
    display: block;
}
/* courses page */
.CourseCategoriesHeading {
    background-color: var(--color-maroon);
    color: white;
    padding: 12px 15px;
}

.CourseCategories h5 {
    background-color: var(--blue-color);
    color: white;
    padding: 12px 15px;
}

.CourseCategories li {
    padding: 11px 15px;
    border-bottom: 1px solid #e0e0e0;
    display: block;
}

    .CourseCategories li a:hover {
        color: var(--yellow-color);
    }

.CoursesTabs .nav-link {
    padding: 0px;
}

.CoursesTabs .nav-link {
    color: rgb(124, 124, 124);
}

    .CoursesTabs .nav-link.active {
        color: var(--yellow-color);
    }


.Courses_Card {
    box-shadow: rgb(239 239 239) 0px 0px 7px 0px !important;
    background-color: #fff;
}

    .Courses_Card h6 a {
        font-size: 19px;
        color: var(--blue-color);
    }

        .Courses_Card h6 a:hover {
            font-size: 19px;
            color: var(--yellow-color);
        }

    .Courses_Card p {
        font-family: Roboto-Regular;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        margin-top: 5px;
        font-size: 13px;
        color: var(--light-blue);
        line-height: 20px;
        text-align: justify
    }

    .Courses_Card .Courses_Image {
        position: relative;
        display: block;
        height: 177px;
        overflow: hidden;
    }

    .Courses_Card img {
        object-fit: cover;
        height: 177px;
        width: 100%;
        transform: scale(1);
        webkit-transition: all 1s ease-out;
        -moz-transition: all 1s ease-out;
        -ms-transition: all 1s ease-out;
        -o-transition: all 1s ease-out;
        transition: all 1s ease-out;
    }

        .Courses_Card img:hover {
            transform: scale(1.1);
        }

.Courses_Image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -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: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.Courses_Image:active:before, .Courses_Image:focus:before, .Courses_Image:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52,1.64,.37,.66);
    transition-timing-function: cubic-bezier(0.52,1.64,.37,.66);
}

.Courses_Image:before {
    background-color: rgba(253, 200, 0, 0.8);
    z-index: 1;
}

.Courses_Image .fa {
    opacity: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    z-index: 3;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    color: #FFFFFF;
    display: block;
    background: #002147;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.Courses_Image:hover .fa {
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.courses-info li {
    line-height: 1.3;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
}

    .courses-info li:not(:last-child) {
        padding-right: 7px;
        margin-right: 4px;
        border-right: 1px solid #909090;
    }

.coursesDetailsTab .nav-item .nav-link.active, .coursesDetailsTab .nav-item .nav-link:hover {
    background-color: var(--yellow-color);
    color: var(--blue-color);
    border: 1px solid;
    border-color: var(--yellow-color);
}

.coursesDetailsTab .nav-item .nav-link {
    border-radius: 0px;
    padding: 20px 30px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 17px;
    margin-right: 2px;
    background-color: #e4f0ff;
}

    .coursesDetailsTab .nav-item .nav-link:not(:last-child) {
        border-right: 1px solid #ccc;
    }

.Course-Details p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7em;
    color: var(--color-gray);
}

.coursesTabList ul li {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7em;
    color: var(--color-gray);
}

    .coursesTabList ul li::before {
        content: "\2022";
        color: var(--yellow-color);
        font-weight: bold;
        display: inline-block;
        margin-left: -20px;
        font-size: 30px;
        margin-top: -1px;
        position: absolute;
    }

.Courses_Collps_Icon .Collapseheader span {
    position: relative;
    cursor: pointer;
    margin-top: 15px;
    font-size: 17px;
    background-color: var(--yellow-color);
    padding: 15px;
}

.Courses_Collps_Icon .Collapseheader .collapsed {
    background-color: var(--blue-color);
    color: white;
}

.Courses_Collps_Icon .Collapseheader .plusIcon {
    position: absolute;
    right: 15px;
    top: 18px;
}

.Courses_Collps_Icon .Collapseheader span {
    padding-right: 30px;
}

.Courses_Collps_Icon .card-body {
    padding: 15px;
    background: #fff8dd;
    border: 1px solid;
    border-color: var(--yellow-color);
}

.Courses-Collps [data-toggle="collapse"] .plusIcon:before {
    content: "\f068";
}

.Courses-Collps [data-toggle="collapse"].collapsed .plusIcon:before {
    content: "\f067";
}

.Courses_Collps_Icon .Collapseheader .collapsed .LectureCount {
    color: #9db7d6;
    margin-right: 20px;
}

.LectureCount {
    margin-right: 20px;
}

.lechtureImage img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #fff;
    border: 1px solid #ccc;
    transition: .3s all;
}

    .lechtureImage img:hover {
        opacity: .5;
    }

.StudentRevies img {
    height: 100px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #fff;
    border: 1px solid #ccc;
    transition: .3s all;
}

    .StudentRevies img:hover {
        opacity: .5;
    }

.StudentRevies h5 a:hover {
    color: var(--yellow-color);
}

.ContactList {
    position: absolute;
    right: 10px;
    top: 16px;
    color: var(--yellow-color);
    font-size: 20px;
}

.filters ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    margin: 30px 15px
}

    .filters ul li {
        display: inline-block;
        text-align: center;
        background-color: #fff;
        padding: 10px 30px;
        font-size: 16px;
        font-weight: 500;
        border: 1px solid #ccc;
        position: relative;
        margin: 0px 2px;
        color: #777;
        transition: 0.3s;
        text-transform: uppercase;
        cursor: pointer;
    }

        .filters ul li:hover {
            color: var(--blue-color);
            background-color: var(--yellow-color);
        }

        .filters ul li.is-checked {
            border-bottom: 2px solid;
            border-color: var(--blue-color);
            color: #fff;
            background-color: var(--blue-color);
        }

        .filters ul li:last-child {
            margin-right: 0;
        }





.galleryFilter {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    margin-bottom: 10px;
}

    .galleryFilter img {
        object-fit: cover;
        height: 220px;
        width: 100%;
        transform: scale(1);
        webkit-transition: all 1s ease-out;
        -moz-transition: all 1s ease-out;
        -ms-transition: all 1s ease-out;
        -o-transition: all 1s ease-out;
        transition: all 1s ease-out;
    }

        .galleryFilter img:hover {
            transform: scale(1.1);
        }

    .galleryFilter::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #2098D1;
        -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: .5s;
        transition-duration: .5s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .galleryFilter:active:before, .galleryFilter:focus:before, .galleryFilter:hover:before {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transition-timing-function: cubic-bezier(0.52,1.64,.37,.66);
        transition-timing-function: cubic-bezier(0.52,1.64,.37,.66);
    }

    .galleryFilter:before {
        background-color: rgba(253, 200, 0, 0.8);
        z-index: 1;
    }

    .galleryFilter .fa {
        opacity: 0;
        text-align: center;
        position: absolute;
        top: 50%;
        z-index: 3;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        line-height: 50px;
        color: #FFFFFF;
        display: block;
        background: #002147;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .galleryFilter:hover .fa {
        opacity: 1;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

.galleryViewModal .close {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--blue-color);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    padding: 0px;
    color: white;
    opacity: 1;
}

.modal-backdrop.show {
    opacity: .8;
}

.galleryViewModal .modal-dialog {
    max-width: 700px;
}


.galleryViewModal .carousel-item {
    height: 500px;
    background-position: center;
    background-size: cover;
}

/*=======================================================================
[18] Gallery Area
=========================================================================*/
.gallery-wrapper {
    margin-left: -5px;
    margin-right: -5px;
}

    .gallery-wrapper > div {
        padding: 0 3px;
    }

.gallery-box {
    margin-bottom: 6px;
    position: relative;
}

    .gallery-box:before {
        opacity: 0;
        content: "";
        background-color: rgba(253, 200, 0, 0.7);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        height: 100%;
        width: 100%;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .gallery-box img {
        width: 100%;
    }

    .gallery-box .gallery-content {
        opacity: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        left: 0;
        right: 0;
        margin: 0 auto;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .gallery-box .gallery-content a {
            background-color: #002147;
            height: 55px;
            width: 55px;
            line-height: 60px;
            display: inline-block;
            border-radius: 50%;
        }

            .gallery-box .gallery-content a i {
                color: #FFFFFF;
                font-size: 18px;
                -webkit-transition: all 0.5s ease-out;
                -moz-transition: all 0.5s ease-out;
                -ms-transition: all 0.5s ease-out;
                -o-transition: all 0.5s ease-out;
                transition: all 0.5s ease-out;
            }

    .gallery-box:hover:before {
        opacity: 1;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .gallery-box:hover .gallery-content {
        opacity: 1;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

.gallery-area1 {
    padding: 100px 0 93px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .gallery-area1 {
        padding: 90px 0 83px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .gallery-area1 {
        padding: 80px 0 73px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .gallery-area1 {
        padding: 70px 0 63px;
    }
}

@media (min-width: 321px) and (max-width: 479px) {
    .gallery-area1 {
        padding: 60px 0 53px;
    }
}

@media only screen and (max-width: 320px) {
    .gallery-area1 {
        padding: 50px 0 43px;
    }
}

.gallery-area2 {
    padding: 100px 0 93px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .gallery-area2 {
        padding: 90px 0 83px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .gallery-area2 {
        padding: 80px 0 73px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .gallery-area2 {
        padding: 70px 0 63px;
    }
}

@media (min-width: 321px) and (max-width: 479px) {
    .gallery-area2 {
        padding: 60px 0 53px;
    }
}

@media only screen and (max-width: 320px) {
    .gallery-area2 {
        padding: 50px 0 43px;
    }
}

.isotop-btn {
    text-align: center;
    margin-bottom: 45px;
}

    .isotop-btn:after {
        display: none;
    }

    .isotop-btn a {
        background: transparent;
        padding: 10px 30px;
        font-size: 16px;
        font-weight: 500;
        color: #002147;
        margin: 0 0 5px 0;
        text-transform: uppercase;
        display: inline-block;
        border: 1px solid #e0e0e0;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

@media (min-width: 768px) and (max-width: 1199px) {
    .isotop-btn a {
        padding: 10px 26px;
    }
}

.isotop-btn a:hover {
    border: 1px solid #002147;
    background: #002147;
    color: #FFFFFF;
}

.isotop-btn .current {
    border: 1px solid #002147;
    background: #002147;
    color: #FFFFFF;
}

.isotop-btn-accent {
    text-align: center;
    margin-bottom: 45px;
}

    .isotop-btn-accent:after {
        display: none;
    }

    .isotop-btn-accent a {
        background: transparent;
        padding: 10px 30px;
        font-size: 16px;
        font-weight: 700;
        color: #002147;
        margin: 0 0 5px 0;
        text-transform: uppercase;
        display: inline-block;
        border: 1px solid #e0e0e0;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .isotop-btn-accent a:hover {
            border: 1px solid #fdc800;
            background: #fdc800;
            color: #FFFFFF;
        }

    .isotop-btn-accent .current {
        border: 1px solid #fdc800;
        background: #fdc800;
        color: #FFFFFF;
    }

/*=======================================================================
[25] Error Page Area
=========================================================================*/
.error-page-area {
    padding: 100px 0;
    background: #fdc800;
    text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .error-page-area {
        padding: 90px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .error-page-area {
        padding: 80px 0;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .error-page-area {
        padding: 70px 0;
    }
}

@media (min-width: 321px) and (max-width: 479px) {
    .error-page-area {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 320px) {
    .error-page-area {
        padding: 50px 0;
    }
}

.error-page-area .error-top {
    margin-bottom: 55px;
}

    .error-page-area .error-top img {
        display: inline-block;
    }

.error-page-area .error-bottom h2 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 30px;
    color: #000000;
}

@media only screen and (max-width: 479px) {
    .error-page-area .error-bottom h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.error-page-area .error-bottom p {
    color: #634e00;
    font-size: 18px;
    margin-bottom: 40px;
}

/*=======================================================================
[13] Lecturers Area
=========================================================================*/
.lecturers-area {
    padding: 88px 0 100px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .lecturers-area {
        padding: 78px 0 90px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .lecturers-area {
        padding: 68px 0 80px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .lecturers-area {
        padding: 58px 0 70px;
    }
}

@media (min-width: 321px) and (max-width: 479px) {
    .lecturers-area {
        padding: 48px 0 50px;
    }
}

@media only screen and (max-width: 320px) {
    .lecturers-area {
        padding: 38px 0 40px;
    }
}

.lecturers1-item-wrapper {
    text-align: center;
}

.lecturers-img-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
}

    .lecturers-img-wrapper img {
        width: 100%;
        -webkit-transition: all 1s ease-out;
        -moz-transition: all 1s ease-out;
        -ms-transition: all 1s ease-out;
        -o-transition: all 1s ease-out;
        transition: all 1s ease-out;
    }

    .lecturers-img-wrapper:hover img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

.lecturers-content-wrapper {
    text-align: center;
}

    .lecturers-content-wrapper .item-title {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 5px;
        text-transform: capitalize;
    }

        .lecturers-content-wrapper .item-title a {
            color: #002147;
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -ms-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
        }

            .lecturers-content-wrapper .item-title a:hover {
                color: #fdc800;
            }

    .lecturers-content-wrapper .item-designation {
        margin-bottom: 20px;
        display: block;
    }

    .lecturers-content-wrapper .lecturers-social li {
        display: inline-block;
    }

        .lecturers-content-wrapper .lecturers-social li a {
            height: 30px;
            width: 35px;
            background: #fdc800;
            display: block;
            line-height: 30px;
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -ms-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
        }

            .lecturers-content-wrapper .lecturers-social li a i {
                color: #FFFFFF;
                font-size: 14px;
            }

            .lecturers-content-wrapper .lecturers-social li a:hover {
                background: #002147;
            }

.lecturers-item-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

    .lecturers-item-wrapper:before {
        background: linear-gradient(to top, #002147, transparent, transparent);
        background-repeat: repeat-x;
        background-position: bottom;
        width: 100%;
        position: absolute;
        content: "";
        z-index: 1;
        top: 0;
        height: 100%;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .lecturers-item-wrapper:after {
        opacity: 0;
        width: 100%;
        position: absolute;
        content: "";
        z-index: 1;
        top: 0;
        height: 100%;
        background-color: rgba(0, 33, 71, 0.8);
        transform: translateY(300px);
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .lecturers-item-wrapper a img {
        width: 100%;
    }

    .lecturers-item-wrapper .lecturers-content-wrapper {
        padding: 0 30px;
        position: absolute;
        top: 240px;
        z-index: 2;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

@media (min-width: 992px) and (max-width: 1199px) {
    .lecturers-item-wrapper .lecturers-content-wrapper {
        padding: 0 15px;
        top: 225px;
    }
}

@media only screen and (max-width: 479px) {
    .lecturers-item-wrapper .lecturers-content-wrapper {
        top: 330px;
    }
}

@media only screen and (max-width: 425px) {
    .lecturers-item-wrapper .lecturers-content-wrapper {
        top: 276px;
    }
}

@media only screen and (max-width: 375px) {
    .lecturers-item-wrapper .lecturers-content-wrapper {
        top: 227px;
    }
}

@media only screen and (max-width: 320px) {
    .lecturers-item-wrapper .lecturers-content-wrapper {
        top: 190px;
    }
}

.lecturers-item-wrapper .lecturers-content-wrapper h3 {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 22px;
}

    .lecturers-item-wrapper .lecturers-content-wrapper h3 a {
        color: #fdc800;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .lecturers-item-wrapper .lecturers-content-wrapper h3 a:hover {
            color: #FFFFFF;
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -ms-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
        }

.lecturers-item-wrapper .lecturers-content-wrapper span {
    color: #FFFFFF;
    margin-bottom: 42px;
    display: block;
    font-size: 18px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.lecturers-item-wrapper .lecturers-content-wrapper p {
    margin-bottom: 40px;
    color: #FFFFFF;
}

.lecturers-item-wrapper .lecturers-content-wrapper .lecturers-social li {
    display: inline-block;
    margin: 0 2px;
}

    .lecturers-item-wrapper .lecturers-content-wrapper .lecturers-social li a {
        height: 40px;
        width: 45px;
        background: transparent;
        display: block;
        line-height: 40px;
        border: 1px solid #FFFFFF;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .lecturers-item-wrapper .lecturers-content-wrapper .lecturers-social li a i {
            color: #fdc800;
            font-size: 18px;
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -ms-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
        }

        .lecturers-item-wrapper .lecturers-content-wrapper .lecturers-social li a:hover {
            border: 1px solid #fdc800;
            background: #fdc800;
        }

            .lecturers-item-wrapper .lecturers-content-wrapper .lecturers-social li a:hover i {
                color: #FFFFFF;
            }

.lecturers-item-wrapper:hover:after {
    opacity: 1;
    transform: translateY(0);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.lecturers-item-wrapper:hover:before {
    opacity: 0;
    -webkit-transition: all 3s ease-out;
    -moz-transition: all 3s ease-out;
    -ms-transition: all 3s ease-out;
    -o-transition: all 3s ease-out;
    transition: all 3s ease-out;
}

.lecturers-item-wrapper:hover .lecturers-content-wrapper {
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

    .lecturers-item-wrapper:hover .lecturers-content-wrapper span {
        margin-bottom: 20px;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

.lecturers-page-area {
    padding: 100px 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .lecturers-page-area {
        padding: 90px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .lecturers-page-area {
        padding: 80px 0;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .lecturers-page-area {
        padding: 70px 0;
    }
}

@media (min-width: 321px) and (max-width: 479px) {
    .lecturers-page-area {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 320px) {
    .lecturers-page-area {
        padding: 50px 0;
    }
}

.lecturers-contact-info {
    text-align: center;
}

    .lecturers-contact-info img {
        margin-bottom: 30px;
    }

@media only screen and (max-width: 767px) {
    .lecturers-contact-info img {
        margin: 0 auto 30px;
    }
}

.lecturers-contact-info h2 {
    font-size: 30px;
    color: #002147;
    margin-bottom: 5px;
    font-weight: 500;
}

.lecturers-contact-info h3 {
    color: #909090;
    font-size: 16px;
    margin-bottom: 25px;
}

.lecturers-contact-info .lecturers-social2 li {
    display: inline-block;
    margin: 0 2px;
}

    .lecturers-contact-info .lecturers-social2 li a {
        height: 40px;
        width: 45px;
        background: #fdc800;
        display: block;
        line-height: 40px;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .lecturers-contact-info .lecturers-social2 li a i {
            color: #FFFFFF;
            font-size: 14px;
        }

        .lecturers-contact-info .lecturers-social2 li a:hover {
            background: #002147;
        }

.lecturers-contact-info .lecturers-contact {
    margin-top: 40px;
}

@media only screen and (max-width: 767px) {
    .lecturers-contact-info .lecturers-contact {
        margin-bottom: 30px;
    }
}

.lecturers-contact-info .lecturers-contact li {
    padding: 25px 0 30px;
    border: 1px solid #e6e6e6;
    font-size: 18px;
    color: #002147;
    margin-bottom: 20px;
}

    .lecturers-contact-info .lecturers-contact li i {
        color: #fdc800;
        position: relative;
        top: 5px;
        font-size: 30px;
        margin-right: 15px;
    }

    .lecturers-contact-info .lecturers-contact li:last-child {
        margin-bottom: 0;
    }

ul.course-feature2 {
    margin-bottom: 30px;
}

    ul.course-feature2:after {
        clear: both;
        content: "";
        display: block;
    }

    ul.course-feature2 li {
        width: 49%;
        box-sizing: border-box;
        float: left;
        padding-left: 30px;
        position: relative;
        margin-bottom: 12px;
        margin-right: 5px;
        color: #444444;
    }

@media only screen and (max-width: 991px) {
    ul.course-feature2 li {
        width: 100%;
    }
}

ul.course-feature2 li:before {
    content: "\f058";
    position: absolute;
    font-family: FontAwesome;
    left: 0;
    top: 0;
    font-size: 20px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
    line-height: 1.3;
    color: #fdc800;
}

.lecturers-page1-area {
    padding: 100px 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .lecturers-page1-area {
        padding: 90px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .lecturers-page1-area {
        padding: 80px 0;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .lecturers-page1-area {
        padding: 70px 0;
    }
}

@media (min-width: 321px) and (max-width: 479px) {
    .lecturers-page1-area {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 320px) {
    .lecturers-page1-area {
        padding: 50px 0;
    }
}

.lecturers-page1-area .single-item {
    margin-bottom: 30px;
}

.lecturers-page2-area {
    padding: 10px 0 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .lecturers-page2-area {
        padding: 90px 0 60px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .lecturers-page2-area {
        padding: 80px 0 50px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .lecturers-page2-area {
        padding: 70px 0 40px;
    }
}

@media (min-width: 321px) and (max-width: 479px) {
    .lecturers-page2-area {
        padding: 60px 0 30px;
    }
}

@media only screen and (max-width: 320px) {
    .lecturers-page2-area {
        padding: 50px 0 20px;
    }
}
