@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

body,
html {
    width: 100%;
    height: 100%;
}

:focus {
    outline: none;
}

ul {
    list-style: none;
}

.color-red {
    color: red;
}


/*********************************top-link-button-start******************************************/

#top-link-block {
    position: absolute;
    bottom: -82px;
    right: 10px;
}

#top-link-block.affix {
    position: fixed;
    bottom: 18px;
    right: 10px;
    z-index: 2;
}

#top-link-block a {
    font-size: 18px;
    padding: 10px 10px;
    border-radius: 0;
    border: none;
    color: #fff;
    background: rgba(0, 0, 0, .1);
    display: block;
    transition: all ease .5s;
}

#top-link-block a:hover {
    background: #000;
}

.container {
    width: 1170px;
    margin: auto;
}

img {
    max-width: 100%;
}

section {
    width: 100%;
    float: left;
}

.btn {
    background-color: red;
    display: table;
    margin: auto;
    width: 140px;
    height: 43px;
    line-height: 43px;
    color: white;
    text-align: center;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
}

.btn:hover {
    background: #333;
    transition: 0.4s;
}


/**********************************header************************************/

header {
    width: 100%;
    float: left;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

header .top-bar {
    padding: 12px 10px;
}

.top-bar .top-left {
    color: #000;
    font-size: 14px;
}

.top-bar .top-right {
    float: right;
    padding-right: 30px;
    color: #000;
    font-size: 14px;
}

.top-bar .top-right ul li {
    display: inline-block;
    padding-left: 10px;
}

.top-bar .top-left a,
.top-bar .top-right a {
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

.top-bar .social-icons {
    float: right;
    margin-right: 60px;
    margin-top: -5px;
}

.top-bar .social-icons i {
    background: #3a589b;
    border-radius: 50%;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #fff;
    font-size: 16px;
    margin-left: 4px;
    transition: .4s;
}

.top-bar .social-icons i:hover {
    transform: scale(1.1);
    transition: .2s;
    box-shadow: 0px 1px 6px;
}

.top-bar .social-icons i.fa-twitter {
    background: #598dca;
}

.top-bar .social-icons i.fa-instagram {
    background: red;
}

nav {
    float: left;
    width: 100%;
    background: #1f6296;
    font-family: 'Roboto', sans-serif;
}

nav ul.nav-ul {
    display: table;
    margin: auto;
    background: #1f6296;
}

nav ul.nav-ul>li {
    float: left;
    list-style: none;
    position: relative;
}

nav ul.nav-ul li a {
    color: #fff;
    width: 100%;
    float: left;
    background: #1f6296;
    padding: 10px;
}

nav ul.nav-ul>li>a {
    text-decoration: none;
    width: 100%;
    float: left;
    padding: 15px 30px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    border-right: 1px solid rgba(255, 255, 255, 0.603);
}

nav ul.nav-ul>li.active>a,
nav ul.nav-ul>li:hover>a {
    text-decoration: none;
    outline: none;
    color: #fff;
    background: #febb1f;
}

nav ul.nav-ul ul {
    top: 100%;
    width: 200px;
    text-align: left;
    list-style: none;
    position: absolute;
    background: white;
    left: 0;
    transition: all ease .5s;
    color: #333;
    z-index: 2;
    display: none;
}

nav ul.nav-ul>li:hover>ul {
    border-top: 2px solid red;
    display: block;
    transition: all ease 1s;
}

nav ul.nav-ul ul li {
    float: left;
    width: 100%;
    font-weight: 400;
    color: #333;
    transition: all ease .25s;
    border-bottom: 1px dotted red;
    font-size: 14px;
}

nav ul.nav-ul ul li i {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 14px;
}

nav ul.nav-ul ul li:last-child a {
    border: none;
}

nav ul.nav-ul ul ul {
    top: -2px;
    width: 200px;
    text-align: left;
    list-style: none;
    position: absolute;
    background: white;
    left: 100%;
    transition: all ease .5s;
    color: #333;
    z-index: 1;
    display: none;
    border: 1px solid #3f444a;
}

nav ul.nav-ul ul>li:hover ul {
    border-top: 2px solid #333;
    display: block;
    transition: all ease 1s;
}

.fixed {
    background: white;
    top: 0;
    z-index: 10;
    position: fixed;
    border-bottom: 1px solid #e5e5e5;
    animation: example .5s;
}


/* Standard syntax */

@keyframes example {
    from {
        top: -300px;
    }
    to {
        top: 0;
    }
}

.fixed nav ul.nav-ul>li>a {
    color: #fff;
}

.fixed .social-icons ul li a {
    background: #ccc;
}

.fixed .social-icons ul li a:hover {
    background: #32afed;
}

.fixed .logo {
    margin: 2px 5px 0;
}

.fixed nav ul.nav-ul>li:hover a {
    color: #fff;
}

header span.text {
    float: left;
    margin-top: 30px;
}

header h2 span {
    font-size: 30px;
    color: #1f6296;
}

header .icons-call {
    float: right;
    margin-top: 30px;
}

header .icons-call a {
    float: left;
    margin-top: 10px;
}

header .icons-call li {
    float: left;
    padding-right: 22px;
}

header .icons-call li a {
    color: #000;
}

header .icons-call i {
    font-size: 40px;
    color: #febb1f;
    float: left;
}

header .icons-call .icons {
    float: right;
    margin-left: 10px;
}

.logo {
    float: left;
    margin-top: 2px;
}

.logo a {
    color: #ab2b05;
    font-size: 25px;
}

.logo img {
    width: 100px;
}

.fixed nav ul.nav-ul ul {
    top: 48px;
    width: 200px;
    text-align: left;
    list-style: none;
    position: absolute;
    background: #fff;
    left: 0;
    transition: all ease .5s;
    color: white;
}

.fixed nav ul.nav-ul ul ul {
    top: 0;
    width: 200px;
    text-align: left;
    list-style: none;
    position: absolute;
    background: #fff;
    left: 100%;
    transition: all ease .5s;
    color: white;
}

nav ul.nav-ul ul li a:hover {
    background: #febb1f;
}

.fixed nav ul.nav-ul ul li a:hover {
    color: white;
}

.logo-mob {
    display: none;
}

.left-nav-text {
    display: none;
}

.mob-nav-btn {
    display: none;
}


/****************************banner-start***********************************/

.banner {
    overflow: hidden;
    z-index: 0;
}

.banner .banner-inner {
    width: 100%;
    float: left;
    position: relative;
    height: 100%;
}

.banner .slick-slide {
    margin: 0;
}

.banner .banner-inner .fa-angle-left,
.banner .banner-inner .fa-angle-right {
    bottom: 25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 6px;
    position: absolute;
    font-weight: 400;
    text-align: center;
    font-size: 35px;
    color: #000;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background: #e5e5e5;
}

.banner .banner-inner .fa-angle-right {
    right: 0;
}

.banner .banner-inner .fa-angle-left {
    left: 0;
}


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

.alumni-slide {
    float: left;
    width: 100%;
}

.alumni-news {
    padding: 50px 0;
}

.alumni-news h2 {
    margin-bottom: 15px;
    color: #1f6296;
}

.alumni-news .news {
    width: 48%;
    float: left;
    margin: 0 1%;
}

.alumni-news .news ul li {
    border-bottom: 1px dotted;
    float: left;
    padding: 9px 0;
    width: 100%;
}

.alumni-news .btn {
    float: left;
    margin-bottom: 15px;
    margin-right: 5px;
    background: #1f6296;
    border-radius: 10px;
    width: auto;
    padding: 1px 32px;
}

.alumni-news .btn:hover {
    background: #000;
}

.alumni-news .alumni a.btn {
    /* Chrome, Safari, Opera */
    -webkit-animation: bling 2s infinite;
    /* Standard syntax */
    animation: bling 2s infinite;
}

@keyframes bling {
    0% {
        background: red;
    }
    50% {
        background: red;
    }
    51% {
        background: blue;
    }
    100% {
        background: blue;
    }
}

@-webkit-keyframes bling {
    0% {
        background: red;
    }
    50% {
        background: red;
    }
    51% {
        background: blue;
    }
    100% {
        background: blue;
    }
}

.alumni-news .alumni .alu {
    /* Chrome, Safari, Opera */
    -webkit-animation: blingss 2s infinite;
    /* Standard syntax */
    animation: blingss 2s infinite;
}

@keyframes blingss {
    0% {
        background: red;
    }
    50% {
        background: red;
    }
    51% {
        background: blue;
    }
    100% {
        background: blue;
    }
}

@-webkit-keyframes blingss {
    0% {
        background: red;
    }
    50% {
        background: red;
    }
    51% {
        background: blue;
    }
    100% {
        background: blue;
    }
}

.alumni-news .news a {
    float: left;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    margin-right: 10px;
}

.alumni-news .news .date {
    float: right;
    width: 100%;
    text-align: right;
    margin: 10px 0 7px;
}

.alumni-news .news .btn {
    background: #ab2b05;
    color: #fff;
    border-radius: 4px;
    margin-top: 12px;
    height: 34px;
    line-height: 34px;
    transition: 0.3s;
}

.alumni-news .news .btn i {
    float: right;
    margin: 11px 10px 10px 0;
}

.alumni-news .news .btn:hover {
    opacity: 0.8;
}

.alumni-news .news li .bli {
    /* Chrome, Safari, Opera */
    -webkit-animation: blinks 2s infinite;
    /* Standard syntax */
    animation: blinks 2s infinite;
    color: white;
    padding: 3px 8px;
    border-radius: 50%;
    font-size: 10px;
    transform: rotate(-10deg);
    float: left;
    font-weight: 600;
}

@keyframes blinks {
    0% {
        background: red;
    }
    50% {
        background: red;
    }
    51% {
        background: black;
    }
    100% {
        background: black;
    }
}

@-webkit-keyframes blinks {
    0% {
        background: red;
    }
    50% {
        background: red;
    }
    51% {
        background: black;
    }
    100% {
        background: black;
    }
}

.alumni-news .alumni {
    width: 46%;
    float: left;
    margin: 0 2%;
}

.alumni-news .alumni .slick-slide {
    margin: 0;
}

.alumni-news .alumni .fa-angle-left,
.alumni-news .alumni .fa-angle-right {
    bottom: 25px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    position: absolute;
    font-weight: 400;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background: #6d6d6d8a;
    color: #fff;
}

.alumni-news .alumni .fa-angle-right {
    right: 0;
}

.alumni-news .alumni .fa-angle-left {
    left: 0;
}


/***********************about********************/

.about {
    background: url('../images/about-bg.jpg') center 20px;
    background-attachment: fixed;
    color: #fff;
    padding: 30px 0;
}

.about h1 {
    text-align: center;
    font-size: 40px;
    position: relative;
}

.about h1::before {
    position: absolute;
    content: '';
    background: #febb1f;
    width: 50px;
    height: 2px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about p.text-p {
    margin-top: 22px;
    text-align: center;
}

.about ul li {
    width: 29.33%;
    float: left;
    margin: 50px 2%;
    background: #febb1f;
    text-align: center;
    border-radius: 10px;
    position: relative;
    height: 200px;
    padding-top: 50px;
}

.about ul li i {
    font-size: 35px;
    margin-bottom: 12px;
}

.about ul li h3 {
    font-size: 22px;
}

.about ul li .inner {
    position: relative;
}

.about ul li .inner .text {
    position: absolute;
    top: -50px;
    background: #1f6296;
    height: 200px;
    padding: 20px 10px;
    opacity: 0;
    transition: 0.4s;
    border-radius: 10px;
    border: 1px solid transparent;
}

.about ul li .inner .text h3 {
    margin-bottom: 12px;
}

.about ul li .inner .text:hover {
    opacity: 1;
    box-shadow: 1px 4px 6px #333;
    border: 1px solid #ccc;
}


/*about-page*/

.abt-us-page {
    background: #f1f1f1;
}

.abt-us-page .text {
    width: 48%;
    float: left;
    margin: 1%;
    padding: 50px 0;
}

.abt-us-page .text h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.abt-us-page .text p {
    font-size: 14px;
    text-align: justify;
    line-height: 22px;
}

.abt-us-page figure {
    width: 48%;
    float: left;
    margin: 1%;
    padding: 30px 20px;
}

.abt-us-page figure img {
    box-shadow: 1px 2px 10px rgb(179, 179, 179);
}

.our-vision {
    margin: 50px 0;
}

.our-vision figure img {
    width: 100%;
}

.our-vision ul li {
    width: 100%;
    float: left;
    box-shadow: 0px 7px 9px #f3f3f3;
    margin-bottom: 39px;
    border: 1px solid #f3f3f3;
}

.our-vision figure {
    text-align: right;
    width: 48%;
    float: left;
    margin: 1%;
}

.our-vision .text-right {
    width: 48%;
    float: left;
    margin: 1%;
    padding-left: 12px;
}

.our-vision h2 {
    font-size: 34px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.our-vision h2::before {
    position: absolute;
    bottom: -10px;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #000;
}

.our-vision h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
}

.our-vision h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 40px;
    height: 1px;
    background: red;
}

.our-vision p {
    font-size: 16px;
}

.our-faculty {
    padding-bottom: 30px;
}

.our-faculty h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 37px;
    position: relative;
}

.our-faculty h2::before {
    position: absolute;
    bottom: -7px;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #000;
}

.our-faculty ul li {
    width: 23%;
    margin: 1%;
    float: left;
    padding: 12px;
    box-shadow: 0px 7px 9px #f3f3f3;
    border: 1px solid #f3f3f3;
}

.our-faculty ul li h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 600;
}

.our-faculty ul li h4 {
    font-size: 18px;
    font-weight: 600;
}

.our-faculty ul li h4 small {
    font-size: 14px;
    opacity: 0.5;
}


/******************************** payment page **********************/

.payment {
    width: 100%;
    float: left;
}

.payment img {
    width: 400px;
}

.payment figure {
    text-align: center;
    padding: 50px 0;
}


/********************************gallery-start***************************************/

.margin {
    height: 100px;
}

.gallery-college {
    padding: 40px 0px;
}

.gallery-college h5 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: #222d35;
    font-weight: 500;
    position: relative;
}

.gallery-college h5::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 55px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    background: linear-gradient(to right, #d72323 0%, #d72323 65%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 71%, rgba(215, 35, 35, 0.5) 71%);
}

.gallery-college .gal-box {
    text-align: center;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.gallery-college .fancybox {
    width: 24%;
    float: left;
    margin: 0.5%;
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.gallery-college .fancybox::before {
    content: '';
    background-image: url(../images/plus.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 42px;
    bottom: -50%;
    left: 50%;
    transform: translate(-50%, 50%);
    transition: all .7s ease;
    cursor: pointer;
}

.gallery-college .fancybox:hover:before {
    bottom: 50%;
}

.gallery-college img {
    width: 100%;
    text-align: center;
    margin-bottom: -4px;
}

.gallery-college .fancybox:hover img {
    opacity: 0.5;
}

.gallery-college .btn {
    margin: auto;
    background: none;
    border: 1px solid #3a589b;
    color: #3a589b;
}

.gallery-college .btn:hover {
    background: #3a589b;
    color: #fff;
}


/***********************awards********************/

.awards {
    padding: 50px 0;
}

.awards li {
    width: 31.33%;
    margin: 1%;
    float: left;
    padding: 22px 22px 30px;
    border: 1px solid rgb(146, 146, 146);
    position: relative;
    height: 457px;
}

.awards li h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}

.awards li:last-child {
    background: url(../images/sub.jpg) no-repeat;
    color: #fff;
    background-size: cover;
}

.awards li h4 {
    font-size: 25px;
}

.awards li:last-child p {
    margin-top: 12px;
    font-size: 16px;
}

.awards li .subscription {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.awards li .subscription input {
    border: 1px solid transparent;
    border-radius: 21px;
    width: 229px;
    height: 43px;
    padding: 10px;
    font-size: 11px;
}

.awards li .subscription button.subs {
    width: 100%;
    height: 43px;
    background: #febb1f;
    border: 0;
    border-radius: 20px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 2px;
    cursor: pointer;
    transition: 0.4s;
}

.awards li .subscription button.subs:hover {
    background: #1f6296;
    box-shadow: 0 3px 5px #000;
}


/****************************aishe********************************/

.aishe {
    width: 100%;
    float: left;
    padding: 20px 0;
    text-align: center;
}

.aishe img {
    width: 600px;
    box-shadow: 0px 4px 15px #c2c2c2;
}

.aishe h3 {
    position: relative;
    margin-bottom: 40px;
    font-size: 30px;
}

.aishe h3::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: red;
    width: 60px;
    height: 2px;
}


/****************************videos********************************/

.videos {
    padding: 20px 0;
    background: #e2e2e2;
}

.videos h2 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 50px;
    text-shadow: 1px 1px rgba(51, 51, 51, 0.61);
}

.videos h2 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: #222d35;
    font-weight: 500;
    position: relative;
}

.videos h2::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 55px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    background: linear-gradient(to right, #d72323 0%, #d72323 65%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 71%, rgba(215, 35, 35, 0.5) 71%);
}

.videos .slick-slide {
    opacity: 1;
}

.grtyoutube-popup {
    background-image: url("../images/loader.gif");
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    text-align: center;
    left: 0;
    z-index: 99999;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
}

.grtyoutube-popup:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.grtyoutube-popup-content {
    width: 70%;
    height: 70%;
    vertical-align: middle;
    display: inline-block;
    position: relative;
}

.grtyoutube-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #FFF;
    font-size: 25px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url("../images/close.png") no-repeat;
    background-size: 20px;
}

.grtyoutube-iframe {
    width: 100%;
    height: 100%;
}

.gallery.motion {
    padding-top: 40px;
    width: 100%;
    float: left;
    margin-bottom: 50px;
}

.gallery li {
    padding: 0 2px;
    display: inline-block;
    background: #000;
}

.gallery.motion li {
    width: 23%;
    position: relative;
    padding: 0;
    cursor: pointer;
    margin: 1% 1% 10px;
    float: left;
    box-shadow: 7px 4px 8px #aaa, 2px 4px 3px #aaa, -3px 4px 5px #ccc;
}

.gallery.motion li span {
    color: #000;
    font-weight: bold;
    display: block;
}

.gallery.motion li:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: url(../images/play-button.png) center no-repeat #febb1f79;
    opacity: 0;
    transition: 0.3s;
}

.gallery.motion li:hover:after {
    opacity: 1;
}

.gallery.motion li img {
    width: 100%;
    border: 2px solid #fff;
}

.gallery.motion .video-slider i {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 6px;
    position: absolute;
    font-weight: 400;
    text-align: center;
    font-size: 35px;
    color: #000;
    cursor: pointer;
    z-index: 1;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.404);
}

.gallery.motion .video-slider i.fa-angle-left {
    left: 0;
}

.gallery.motion .video-slider i.fa-angle-right {
    right: 0;
}

footer {
    width: 100%;
    float: left;
    background-color: #212121;
}

footer .foot-2 {
    padding: 56px;
    width: 100%;
    float: left;
    border-bottom: 1px dotted #fff;
}

footer .inner-foot-2:first-child {
    width: 23%;
    margin: 0 1%;
    padding: 0 16px;
}

footer .inner-foot-2 {
    width: 18.75%;
    float: left;
}

footer .inner-foot-2 h2 {
    font-size: 18px;
    color: #b6b6b6;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 22px;
}

footer .inner-foot-2 h2::before {
    position: absolute;
    content: '';
    bottom: 0;
    background: #febb1f;
    width: 50px;
    height: 2px;
}

footer .inner-foot-2.last ul li::before {
    content: '';
}

footer .inner-foot-2 .social i {
    background: #4a74b0;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin-left: 2px;
    margin-top: 5px;
    transition: 0.4s;
}

footer .inner-foot-2 .social i.twitter {
    background: #598dca;
}

footer .inner-foot-2 .social i.linkedin {
    background: #0070c0;
}

footer .inner-foot-2 .social a img {
    width: auto;
    float: left;
    margin-top: 4px;
}

footer .inner-foot-2 a {
    color: #fff;
}

footer .inner-foot-2 a:hover {
    color: #febb1f;
}

footer .inner-foot-2 li {
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    position: relative;
}

footer .inner-foot-2 li::before {
    position: absolute;
    content: "\f105";
    left: -11px;
    top: 6px;
    font: normal normal normal 13px/1 FontAwesome;
    width: 20px;
    height: 20px;
}

footer .inner-foot-2 img {
    width: 75px;
}

footer .inner-foot-2 p {
    font-size: 14px;
    line-height: 19px;
    color: #fff;
}

footer .foot-copyright {
    width: 100%;
    float: left;
    color: #fff;
    font-size: 12px;
    padding: 18px;
    background: #1c1c1c;
}

footer .foot-copyright a {
    color: #fff;
}

footer .foot-copyright .right {
    float: right;
    padding-right: 100px;
}

footer .foot-copyright .right i {
    background: #fff;
    color: #000;
    font-size: 23px;
    padding: 5px;
    box-shadow: 0px 0px 5px 2px #d0d0d0;
    transition: .5s;
}

footer .foot-copyright .right i:hover {
    box-shadow: 5px 5px 5px rgb(255, 0, 106);
}

footer .foot-copyright .right ul li {
    float: left;
}

footer .foot-copyright .left {
    float: left;
    padding-left: 100px;
}

footer .foot-copyright .left ul li {
    display: inline-block;
    margin-top: 18px;
    padding-left: 10px;
}


/********form********/

.form {
    width: 100%;
    float: left;
    padding: 30px 0 12px;
}

.form .left {
    width: 50%;
    float: left;
}

.form .left.alum-reg {
    width: 100%;
}

.form .left figure {
    text-align: center;
}

.form .left img {
    width: 300px;
}

.form p.text {
    margin: 20px 0;
    color: #004a80;
    font-size: 18px;
    font-weight: 600;
}

.form p.text-2 {
    margin: 25px 0;
}

.form .left.alum-reg .form-cont {
    width: 31.33%;
}

.form-cont {
    width: 48%;
    float: left;
    margin: 0 1%;
    padding: 5px 2px;
    font-size: 14px;
    line-height: 27px;
}

.form input,
.form select {
    width: 100%;
    background: #edf2ed;
    border: 1px solid #ccc;
    height: 40px;
    padding: unset;
}

.form input:focus,
.form select:focus {
    background: #fff;
}

.form .btn {
    float: left;
    width: 100%;
    margin-top: 12px;
    background: none;
}

.form .submit {
    display: flex;
    text-align: center;
    padding: 10px 50px;
    color: #333;
    border: 1px solid #007da1;
    background: none;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: bold;
    border-radius: 1px;
    cursor: pointer;
    margin: auto;
}

.form .submit:hover {
    background: #007da1;
    color: #fff;
}


/*********************popup-page********************/

.mask {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9000;
    background-color: #26262c;
    display: none;
    width: 100%;
    font-size: 32pt;
    color: white;
    height: 100%;
    opacity: 0.4;
}

.boxes .window {
    position: absolute;
    left: 0;
    top: 0;
    width: 440px;
    height: 850px;
    display: none;
    z-index: 9999;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.boxes .image-clse {
    float: right;
    margin-right: -25px;
    margin-top: -20px;
    width: 25px;
}

.boxes .main-imge {
    width: 100%;
}

.boxes #dialog {
    width: 850px;
    height: auto;
    padding: 10px 10px 10px 10px;
    background-color: #ffffff;
    font-size: 15pt;
    top: 50%;
    left: 50%;
    display: none;
    position: fixed;
}

.agree:hover {
    background-color: #D1D1D1;
}

.popupoption:hover {
    background-color: #D1D1D1;
    color: green;
}

.popupoption2:hover {
    color: red;
}


/******************************** NAAC-pdf-page ************************/

.top-ban {
    width: 100%;
    float: left;
    position: relative;
}

.top-ban img {
    width: 100%;
    margin-bottom: -4px;
}

.course .pdf-tab {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 22px;
}

.course .pdf-tab th {
    background: brown;
    color: #fff;
}

.course .pdf-tab tbody td,
th {
    padding: 10px 20px;
    border: 1px solid #e4e4e4;
    text-align: left;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
}

.course .pdf-tab tr:nth-last-of-type(odd) {
    background: #f1f1f1;
}

.course .pdf-tab tr td a {
    padding: 10px 24px;
    background: rgb(172, 103, 53);
    color: #fff;
    transition: .3s;
    position: relative;
    border: 1px dotted transparent;
}

.course .pdf-tab tr td a::before {
    position: absolute;
    content: "\f1c1";
    right: 0px;
    top: 15px;
    font: normal normal normal 13px/1 FontAwesome;
    width: 23px;
    height: 23px;
}

.course .pdf-tab tr td a:hover {
    background: #fff;
    color: rgb(104, 54, 18);
    border: 1px dotted rgb(15, 103, 175);
}


/******************************** contact page **********************/

.contact {
    width: 100%;
    position: relative;
}

.contact .contact-1 .text {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: capitalize;
    color: #fff;
    font-size: 40px;
}

.conn {
    width: 100%;
    float: left;
}

.conn .contact-text {
    width: 50%;
    float: left;
    padding-right: 100px;
    line-height: 26px;
    padding-bottom: 50px;
    margin-top: 42px;
}

.conn .contact-text h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.conn .contact-text i {
    color: #1f6296;
}

.conn .contact-text p {
    font-size: 15px;
}

.conn iframe {
    margin: 20px 0 50px;
    width: 50%;
    float: left;
}

.contact-form {
    width: 100%;
    margin: 2px 0 0;
    margin-top: 42px;
    text-align: center;
    float: left;
    background-attachment: fixed;
}

.contact-form ::placeholder {
    color: rgb(61, 60, 60);
}

.contact-form h3 {
    font-size: 27px;
    color: #1a57ad;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    margin: 20px 20px;
    padding: 15px 10px;
    width: 400px;
    border: 0;
    border-bottom: 1px solid rgba(117, 110, 110, 0.623);
    border-radius: 3px;
}

.contact-form textarea {
    width: 1000px;
}

.contact-form form {
    width: 400px;
}

.contact-form .submit {
    display: table;
    text-align: center;
    padding: 10px 30px;
    border: 0;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.4s;
    margin-top: 15px;
    margin: 0px auto;
    box-shadow: 0 2px 6px #ccc;
    border: 1px solid #ccc;
}

.contact-form .submit:hover {
    background: #232e35;
    color: #fff;
    cursor: pointer;
    outline: none;
}

.contact-form .form-cont:focus,
.contact-form textarea:focus {
    outline: none;
    transition: 0.2s;
}

.contact-form textarea:focus {
    outline: none;
}

.loader {
    display: none;
}

.form-msg {
    background: red;
    color: #fff;
    display: inline-block;
    margin-left: 25px;
    font-weight: 600;
}

.input_center {
    margin: 5px auto;
    text-align: center;
}


/*************************************news******************************************/

.latest-news {
    padding: 30px 0;
}

.latest-news h2 {
    font-size: 30px;
    margin-left: 90px;
    position: relative;
    font-weight: 600;
    margin-bottom: 30px;
}

.latest-news h2::before {
    position: absolute;
    content: '';
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    background: #004a80;
    width: 60px;
    height: 2px;
}

.latest-news ul li {
    width: 31.33%;
    float: left;
    margin: 1%;
    position: relative;
    padding: 20px 14px 40px;
    box-shadow: 1px 3px 6px #edf2ed;
    border: 1px solid #edf2ed;
}

.latest-news ul li h3 {
    font-size: 20px;
    margin: 10px 0;
}

.latest-news ul li .btn-news {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #3a589b;
    font-weight: 600;
}

.latest-news span.date-news {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 14px;
    font-weight: 600;
}


/*************************************news-details******************************************/

.news-details {
    padding: 50px 0;
}

.news-details .news-details-post h2 {
    font-size: 39px;
    margin-bottom: 25px;
    text-align: center;
}

.news-details .news-details-post .text-post {
    width: 100%;
    float: left;
    padding: 20px 0;
    line-height: 25px;
}

.news-details-post .text-post ul {
    margin-left: 20px;
}

.news-details-post .text-post ul li {
    position: relative;
    padding: 5px 0;
}

.news-details-post .text-post h3 {
    font-size: 22px;
    margin: 7px 0;
}

.news-details-post .text-post p {
    padding: 3px 0;
}

.news-details-post .text-post ul li::before {
    position: absolute;
    content: '';
    left: -15px;
    background: #000;
    width: 5px;
    height: 5px;
    top: 13px;
}


/****************************** admission-form page **********************************/

.admission-frm {
    margin-top: -4px;
    background-attachment: fixed;
    padding: 50px 0;
}

.admission-frm .left-img {
    width: 50%;
    float: left;
}

.admission-frm .left-img figure {
    padding: 24px;
    padding: 0px 31px 0px;
}

.admission-frm h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-transform: capitalize;
    text-align: center;
    position: relative;
    text-shadow: 1px 1px 1px #ccc;
}

.admission-frm h2::before {
    position: absolute;
    content: '';
    width: 80px;
    height: 2px;
    background: green;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.admission-frm .add-frm {
    float: right;
    width: 48%;
    padding: 53px 50px 20px;
    border: 1px solid rgb(241, 240, 240);
    border-radius: 0px;
    box-shadow: 0px 4px 11px 1px rgb(241, 241, 241);
}

.admission-frm .add-frm ::placeholder {
    color: rgb(29, 28, 28);
}

.admission-frm .add-frm input,
.admission-frm .add-frm select,
.admission-frm .add-frm textarea {
    width: 100%;
    float: left;
    padding: 15px 20px;
    margin: 5px 0;
    background: none;
    transition: .5s;
    border: 1px solid rgb(238, 237, 237);
}

.form-cont-3:hover {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(34, 161, 219);
}

.admission-frm .btn {
    width: 200px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 0;
    margin-top: 18px;
    margin-bottom: 10px;
    cursor: pointer;
}

.admission-frm .btn {
    width: 250px;
    background: #fff;
    color: #000;
    border: 1px solid rgb(34, 161, 219);
    transition: .5s;
    cursor: pointer;
}

.admission-frm .btn:hover {
    background: #1f6296;
    color: #fff;
}

textarea.form-cont-3 {
    margin-bottom: 20px;
}

.admission-frm .btn .submit:hover {
    background: rgb(14, 140, 212);
    color: #fff;
}


/*********************************** thankyou page *******************/

.thankyou {
    padding: 50px 0;
}

.thankyou h2 {
    font-size: 23px;
    color: green;
    border-bottom: 1px dotted rgb(58, 63, 58);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.thankyou .thk-details {
    width: 100%;
    float: left;
    padding: 30px;
    background: rgb(179, 177, 177);
    border: 1px dotted rgb(27, 214, 27);
    box-shadow: 2px 2px 4px;
}

.thk-details p {
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    text-transform: capitalize;
}


/* **************************course page ****************************/

.top-ban {
    width: 100%;
    float: left;
    position: relative;
}

.top-ban h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
}

.course {
    padding: 50px 0;
    width: 100%;
    float: left;
}

.course .course-tab {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
}

.course-tab th {
    font-size: 16px;
    background: #3d3848eb;
    color: #fff;
    text-transform: capitalize;
}

.course-tab tbody td,
th {
    padding: 14px 7px;
    border: 1px solid #aba1a1;
    line-height: 36px;
    font-size: 16px;
    text-align: center;
}

.course-tab tr:nth-last-of-type(odd) {
    background: #f1f1f1;
}

.course-tab tr td a {
    padding: 10px;
    background: rgb(182, 159, 32);
    color: #fff;
    transition: .3s;
    border: 1px dotted transparent;
    transition: .5s;
    text-transform: uppercase;
}

.course-tab tr td a:hover {
    color: #000;
    background: #febb1f;
}

.course h2 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 20px;
    border: 1px solid rgb(212, 219, 212);
    background: #1f6296;
    color: #fff;
    padding: 10px;
    text-align: center;
    transition: .5s;
}


/***********************comittee*********************/

.course .committee th {
    background: #3a589b;
}

.course .committee {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
}

.committee th {
    font-size: 16px;
    background: #3d3848eb;
    color: #fff;
    text-transform: capitalize;
}

.committee tbody td,
th {
    padding: 14px 7px;
    border: 1px solid #aba1a1;
    line-height: 36px;
    font-size: 16px;
    text-align: center;
}

.committee tr:nth-last-of-type(odd) {
    background: #f1f1f1;
}

.committee tr td a {
    padding: 10px;
    background: rgb(182, 159, 32);
    color: #fff;
    transition: .3s;
    border: 1px dotted transparent;
    transition: .5s;
}

.committee tr td a:hover {
    color: #000;
    background: #febb1f;
}

.course h3 {
    background: none;
    color: #000;
    border: 1px solid transparent;
    position: relative;
    margin-bottom: 30px;
    text-shadow: 1px 1px 1px #ccc;
    text-align: center;
    font-size: 30px;
}

.course h3::before {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 60px;
    height: 2px;
    background: #3a589b;
}


/*****************sticky-form********************/

.stickyform_mainpanel {
    width: 48px;
    position: fixed;
    right: 0px;
    top: 38%;
    background: #736666;
    z-index: 22;
}

.sendquery_mianpanel {
    text-align: center;
}

.stickyform_mainpanel>h2 {
    position: absolute;
    right: -89px;
    top: 68px;
    -moz-transform: scale(1) rotate(270deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -webkit-transform: scale(1) rotate(270deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -o-transform: scale(1) rotate(270deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -ms-transform: scale(1) rotate(270deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    z-index: 10001;
    height: 46px;
    width: 216px;
    background: #1f6296;
    font-size: 16px;
    color: #fff;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    text-align: center;
    transition: all .3s ease-in-out 0s;
    cursor: pointer;
}

.stickyform_mainpanel>h2:after {
    text-align: center;
    content: '\002B';
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    margin: 2px;
}

.stickyform_mainpanel>h2.feedback {
    top: 0;
    border-radius: 0 25px 0 0;
    background: #000;
}

.stickyform_panel {
    position: absolute;
    width: 280px;
    height: auto;
    right: 0;
    top: -72px;
    padding: 0px;
    border-radius: 4px;
    background: rgb(243, 243, 243);
    z-index: 999;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all ease 0.5s;
}

.stickyform_mainpanel.sticky_formopen .stickyform_panel {
    -webkit-transform: translateX(0%);
    transform: translateX(-16%);
    transition: all ease 0.5s;
}

.stickyform_mainpanel.sticky_formopen>h2:after {
    content: "\2212";
}

.sendquery_mianpanel {
    margin: 0px;
    padding: 0px;
}

.sendquery_mianpanel h3 {
    background: #1f6296;
    padding: 8px 10px;
    font-size: 14px;
    color: #fff;
}

.sendquery_mianpanel.feedbackpanel h3 {
    background: #000;
}

.submit_btn {
    display: inline-block;
    position: relative;
    font-family: inherit;
    font-size: 15px;
    border: 0;
    font-weight: bold;
    margin: 10px auto;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    background: #004a80;
    color: #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
}

.sendquery_mianpanel.feedbackpanel .submit_btn {
    background: #000;
}

p.input-container {
    position: relative;
    top: 20px;
    padding-bottom: 20px;
    margin: 0px 20px;
}

.input-container label {
    color: #7E7E7E;
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    cursor: text;
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    left: 0;
    bottom: 0px;
}

.input-container input,
.input-container textarea,
.input-container select {
    width: 100%;
    font-size: 16px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border: none;
    border-bottom: solid 2px #c4c4c4;
    background-color: transparent;
    border-radius: 0px;
    padding: 5px 0;
    float: none;
}

.input-container select {
    color: #7E7E7E;
}

.input-label input:focus,
.input-label textarea:focus {
    outline: none;
    border-bottom: solid 2px #c4c4c4;
}

.input-label label {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    bottom: 0;
    font-size: 12px;
    font-weight: 600;
}


/************************thanks-page-start****************************/


/*********************medium-desktop screen***********************/

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: 920px;
    }
    header span.text h2 {
        font-size: 16px;
    }
    nav ul.nav-ul>li>a {
        padding: 14px 17px;
        font-size: 14px;
    }
    .alumni-news .btn {
        padding: 1px 10px;
    }
    .about h1 {
        font-size: 27px;
    }
    .abt-us-page .text {
        padding: 5px 0;
    }
}


/*******************************responsive-tab****************************/

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 740px;
    }
    header span.text h2 {
        font-size: 14px;
    }
    header span.text h2 span {
        font-size: 18px;
    }
    header .icons-call li a {
        font-size: 12px;
        margin-top: 5px;
    }
    header .icons-call li i {
        font-size: 24px;
    }
    header .icons-call .icons {
        margin-left: 4px;
    }
    .logo img {
        width: 70px;
    }
    .mob-nav-btn {
        display: block;
        float: right;
        cursor: pointer;
        font-size: 20px;
        color: #fff;
        margin: 2px 7px;
        width: 40px;
        text-align: center;
        height: 40px;
        line-height: 36px;
    }
    .mob-nav-btn img {
        width: 30px;
        margin-top: 5px;
    }
    .left-nav-text {
        display: block;
        float: left;
        color: #fff;
        margin-top: 10px;
        margin-left: 12px;
        font-size: 18px;
    }
    .mob-nav-btn:hover {
        background: #444;
        transition: all ease .5s;
    }
    .mob-nav:before {
        width: 330px;
        left: 0;
        top: 0;
        content: '';
        position: fixed;
        height: 100%;
        background: #444;
        z-index: 1;
    }
    .logo-mob {
        text-align: left;
        padding-left: 10px;
        display: block;
        position: fixed;
        top: 0;
        padding-top: 10px;
        left: 0;
        border-bottom: 2px solid #fff;
        width: 330px;
        padding-bottom: 10px;
        z-index: 2;
        background: #000;
    }
    .logo-mob .icon {
        position: absolute;
        top: 10px;
        width: 35px;
        padding: 5px;
        line-height: 26px;
        text-align: center;
        right: 15px;
        background: #fff;
        border-radius: 50%;
        cursor: pointer;
    }
    .mob-nav {
        display: none;
    }
    .logo-mob a img {
        width: 105px;
    }
    nav ul.nav-ul {
        margin: 0;
    }
    nav ul.nav-ul>li:hover>a:before {
        display: none;
    }
    nav ul.nav-ul>li .nav-down {
        height: auto;
        display: none;
    }
    nav ul.nav-ul>li:hover .nav-down {
        height: auto;
    }
    .fixed nav ul.nav-ul>li>a {
        padding: 8px 0px 0 10px;
        color: white;
    }
    nav ul.nav-ul {
        width: 330px;
        left: 0;
        top: 80px;
        padding: 56px 10px 10px 10px;
        position: absolute;
        float: none;
        background: none;
        z-index: 1;
    }
    nav ul.nav-ul>li {
        width: 100%;
        text-align: left;
    }
    nav ul.nav-ul>li>a {
        padding: 5px;
        color: #fff;
        border-top: 1px dotted #555;
        background: none;
        border-right: 1px solid transparent;
    }
    nav ul.nav-ul ul {
        height: auto;
        position: static;
        display: none;
    }
    .alumni-news .btn {
        padding: 1px 10px;
        font-size: 11px;
        height: 30px;
        line-height: 30px;
    }
    .about h1 {
        font-size: 27px;
    }
    .abt-us-page figure,
    .abt-us-page .text {
        width: 100%;
        margin: 1% 0;
        padding: 10px 0;
    }
    .abt-us-page figure img {
        width: 100%;
    }
    .abt-us-page .text {
        padding: 20px 0;
    }
    .our-vision figure,
    .our-vision .text-right {
        width: 100%;
    }
    .top-ban h2 {
        font-size: 30px;
    }
    .awards li {
        padding: 22px 10px 30px;
    }
    .awards li p {
        font-size: 13px;
    }
    .contact-form textarea {
        width: 400px;
    }
    footer .foot-2 {
        padding: 20px 10px;
    }
    footer .inner-foot-2:first-child {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    footer .inner-foot-2 {
        width: 23%;
        margin: 1%;
        padding-top: 15px;
    }
}


/**********************************responsive-small-screen********************************/

@media (max-width: 767px) {
    .container {
        width: 90%;
    }
    header span.text h2 {
        font-size: 13px;
    }
    header span.text h2 span {
        font-size: 18px;
    }
    header .icons-call {
        margin-top: 5px;
    }
    header .icons-call li a {
        font-size: 12px;
        margin-top: 5px;
    }
    header .icons-call li i {
        font-size: 24px;
    }
    header .icons-call .icons {
        margin-left: 4px;
    }
    header span.text {
        margin-top: 19px;
    }
    .logo img {
        width: 60px;
    }
    .mob-nav-btn {
        display: block;
        float: right;
        cursor: pointer;
        font-size: 20px;
        color: #fff;
        margin: 2px 7px;
        width: 40px;
        text-align: center;
        height: 40px;
        line-height: 36px;
    }
    .mob-nav-btn img {
        width: 30px;
        margin-top: 5px;
    }
    .left-nav-text {
        display: block;
        float: left;
        color: #fff;
        margin-top: 10px;
        margin-left: 12px;
        font-size: 18px;
    }
    .mob-nav-btn:hover {
        background: #444;
        transition: all ease .5s;
    }
    .mob-nav:before {
        width: 330px;
        left: 0;
        top: 0;
        content: '';
        position: fixed;
        height: 100%;
        background: #444;
        z-index: 1;
    }
    .logo-mob {
        text-align: left;
        padding-left: 10px;
        display: block;
        position: fixed;
        top: 0;
        padding-top: 10px;
        left: 0;
        border-bottom: 2px solid #fff;
        width: 330px;
        padding-bottom: 10px;
        z-index: 2;
        background: #000;
    }
    .logo-mob .icon {
        position: absolute;
        top: 10px;
        width: 35px;
        padding: 5px;
        line-height: 26px;
        text-align: center;
        right: 15px;
        background: #fff;
        border-radius: 50%;
        cursor: pointer;
    }
    .mob-nav {
        display: none;
    }
    .logo-mob a img {
        width: 105px;
    }
    nav ul.nav-ul>li:hover>a:before {
        display: none;
    }
    nav ul.nav-ul>li .nav-down {
        height: auto;
        display: none;
    }
    nav ul.nav-ul>li:hover .nav-down {
        height: auto;
    }
    .fixed nav ul.nav-ul>li>a {
        padding: 8px 0px 0 10px;
        color: white;
    }
    nav ul.nav-ul {
        width: 330px;
        left: 0;
        top: 80px;
        padding: 56px 10px 10px 10px;
        position: absolute;
        float: none;
        background: none;
        z-index: 1;
    }
    nav ul.nav-ul>li {
        width: 100%;
        text-align: left;
    }
    nav ul.nav-ul>li>a {
        padding: 5px;
        color: #fff;
        border-top: 1px dotted #555;
        background: none;
        border-right: 1px solid transparent;
    }
    nav ul.nav-ul ul {
        height: auto;
        position: static;
        display: none;
    }
    .alumni-news .news,
    .alumni-news .alumni {
        width: 100%;
        margin: 0;
    }
    .alumni-news .alumni a.btn {
        width: 100%;
        margin: 4px 0;
    }
    .top-ban h2 {
        font-size: 14px;
    }
    .banner .banner-inner {
        z-index: -1;
    }
    .alumni-news {
        z-index: 0;
    }
    .about {
        background-attachment: unset;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .about h1 {
        font-size: 14px;
    }
    .about ul li {
        width: 100%;
        margin: 1% 0;
    }
    .about p.text-p {
        font-size: 12px;
    }
    .abt-us-page figure,
    .abt-us-page .text {
        width: 100%;
        margin: 1% 0;
    }
    .our-vision figure,
    .our-vision .text-right {
        width: 100%;
        margin: 1% 0;
    }
    .our-faculty ul li {
        width: 100%;
    }
    .awards li:last-child {
        height: 315px;
    }
    .awards li {
        width: 100%;
        height: auto;
        margin: 1% 0;
    }
    .latest-news ul li {
        width: 100%;
    }
    .course h2 {
        font-size: 14px;
    }
    .course {
        overflow-x: auto;
    }
    .admission-frm .left-img {
        width: 100%;
    }
    .admission-frm .add-frm {
        width: 100%;
        padding: 30px 10px;
        margin-top: 20px;
    }
    .admission-frm h2 {
        font-size: 23px;
    }
    .conn .contact-text,
    .conn iframe {
        width: 100%;
    }
    .input_center {
        width: 270px;
        float: left;
    }
    .contact-form input {
        width: 100%;
    }
    .contact-form textarea {
        width: 295px;
        float: left;
    }
    .contact-form .submit {
        width: 284px;
    }
    footer .foot-2 {
        padding: 30px 0;
    }
    .conn .contact-text footer .foot-2 {
        padding: 20px 10px;
    }
    footer .inner-foot-2:first-child {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    footer .inner-foot-2 {
        width: 48%;
        margin: 1%;
        padding-top: 15px;
    }
    footer .inner-foot-2 h2 {
        font-size: 14px;
    }
}

@media (max-width: 568px) {
    .container {
        width: 90%;
    }
    header span.text h2 {
        font-size: 9px;
    }
    header span.text h2 span {
        font-size: 14px;
    }
    header .icons-call {
        display: none;
    }
    header .icons-call li a {
        font-size: 12px;
        margin-top: 5px;
    }
    header .icons-call li i {
        font-size: 24px;
    }
    header .icons-call .icons {
        margin-left: 4px;
    }
    header span.text {
        margin-top: 19px;
    }
    .logo img {
        width: 50px;
    }
    footer .inner-foot-2 .social i {
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
    footer .inner-foot-2 .social a img {
        width: 30px;
    }
    footer .foot-copyright .right,
    footer .foot-copyright .left {
        float: none;
        padding: 0;
    }
    p.input-container{
        top: 8px;
        padding-bottom: 10px;
    }
    .stickyform_panel{
        top: -105px;
    }
}