body {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    background: #fff;
    font-size: 16px;
}

body a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

p {
    margin: 0;
}

ul,
label {
    margin: 0;
    padding: 0;
}

body a:hover,
body a:focus {
    text-decoration: none;
    outline: none;
}

.header {
    /* background: url(../images/top-menu-bg.png) repeat-x; */
    /* background: url(../images/top-menu-bg.png) top repeat-x, url(../images/bottom-menu-bg.png) bottom repeat-x; */
    padding: 9px 0px;
    background-color: #fff;
}

.header-top {
    background: url(../images/new-top2.png) repeat-x;
    padding-bottom: 2px;
    background-size: contain;
    background-color: #1b4b7b;
    padding: 15px 0px;
}

.header-top-right ul {
    list-style: none;
    text-align: right;
    margin: 0px;
    display: inline-block;
}

.header-top-right ul li {
    display: inline-block;
}

.header-top-right ul li a {
    color: #fff;
    padding: 3px;
}


#decrease, #reset, #increase {
    font-size: 13px;
	border: 1px solid #a10400;
	padding: 3px 6px;
}

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

.header-top-left p {
    margin: 0px;
    color: #fff;
    font-weight: 600;
}

.header-right ul {
    list-style-type: none;
    margin: 0px;
}

.header-right ul li {
    display: inline-block;
}

.header-right ul li img {
    /* width: 45px; */
}

.header-right ul li a {
    font-size: 19px;
    color: #a10400;
    font-weight: 700;
}

/* .logo img {
    width: 517px;
} */

/*.head-alumni img {
    width: 307px;
}*/
.head-alumni p{
	margin-bottom: 0px;
}
.skip{
	font-size: 15px !important;
}
.head-contact img {
    width: 67px;
}

.main-menu {
    background: #00477F;
    z-index: 9999;
	height:10px;
}

.menu-list {
    list-style-type: none;
    margin: auto;
    position: relative;
}

.menu-list li {
    display: inline-block;
}

.menu-list li a {
    display: block;
    font-size: 14.2px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.4s;
    padding: 12px 10px;
    margin: 0 6px;
}

.menu-active {
    background-color: #ffffff !important;
    padding: 12px 10px !important;
    color: #A10400 !important;
    border-top: 2px solid #29467c;
}

.menu-list li a:hover {
    background-color: #ffffff;
    color: #A10400;
    padding: 12px 10px;
}

.mobile-menu {
    position: relative;
    display: none;
}

.mobile-menu p {
    font-weight: 700;
    padding: 13px 0px;
    margin: 0;
}

.mobile-menu a {
    position: absolute;
    top: 7px;
    color: #fff;
    border-radius: 4px;
    width: 77px;
    display: none;
}

.mobile-menu a:hover {
    color: #fff;
}

#myHeader {
    left: -1200px;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

#myHeader.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 0px 4px 1px #ccc;
}

.slider {
    position: relative;
    height: 60vh;
    width: 100%;
}

.slider-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 0;
}

.slider-panel {
    position: absolute;
    bottom: 0;
    /* display: none; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: initial;
    color: rgba(255, 255, 255, 0.82);
    z-index: 20;
}

.slider-panel__navigation {
    margin: 0 auto;
    padding: 10px;
    width: 70%;
    text-align: center;
}

.slider-panel__navigation i {
    margin: 0 3%;
    font-size: 15px;
}

.slider-panel__navigation i:hover,
.slider-panel__navigation i:active {
    color: white;
    cursor: pointer;
}

.slider-panel__controls {
    padding: 17px 27px;
    width: min-content;
    background: #a10400;
}

.slider-panel__controls i {
    margin: 5px 0px;
    font-size: 40px;
    /* color: #fdea51; */
}

.slider-panel__controls i:hover,
.slider-panel__controls i:active {
    color: white;
    cursor: pointer;
}

.active {
    z-index: 10;
    -webkit-animation: 0.2s blur ease-in;
    animation: 0.2s blur ease-in;
}

@-webkit-keyframes circle {
    0% {
        -webkit-clip-path: circle(75%);
        clip-path: circle(75%);
    }
    100% {
        -webkit-clip-path: circle(0%);
        clip-path: circle(0%);
    }
}

@keyframes circle {
    0% {
        -webkit-clip-path: circle(75%);
        clip-path: circle(75%);
    }
    100% {
        -webkit-clip-path: circle(0%);
        clip-path: circle(0%);
    }
}

@-webkit-keyframes blur {
    0% {
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }
    100% {
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@keyframes blur {
    0% {
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }
    100% {
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

.our-vision-main {
    /* background: #f9f9f9; */
    padding-bottom: 47px;
    padding-top: 47px;
}

.title {
    position: relative;
    position: relative;
    font-weight: 700;
    font-size: 33px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 14px;
    margin-bottom: 27px;
}

.title span {
    border-bottom: 5px solid #a10400;
    padding-bottom: 13px;
}

.our-vision-image {
    padding: 5px;
    background: #fff;
    box-shadow: 0px 0px 22px 8px #e3e3e3;
    position: relative;
    z-index: 1;
    width: 100%;
}

.right-image {
    background-image: url(../images/university-gate.jpg);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.our-vision-box {
    width: 98%;
    height: 248px;
    position: absolute;
    left: 57px;
    top: 41px;
    border: 5px solid #dbd9d9;
}

.read-more {
    margin-left: 7px;
    font-weight: 700;
}

.footer-bottom {
    padding: 35px 0px 25px;
    color: #fff;
    border-top: 1.5px solid #d2d2d2;
    background: url(../images/top-menu-bg.png) top repeat-x;
    background-color: #f9f7ed;
}

.footer-bottom p {
    margin: 0px;
    color: #000;
}

.powered-by {
    text-align: right;
}

.powered-by p a {
    /* color: #fba751; */
}

.powered-by p a:hover {
    text-decoration: underline;
}

.alumni-association {
    padding-bottom: 57px;
}


/* login-box in banner */

.login-user,
.login-password {
    position: relative;
}

.login-user:before {
    content: "\f007";
    position: absolute;
    font-family: FontAwesome;
    top: 8px;
    left: 10px;
    color: #e19809;
}

.login-password:before {
    content: "\f084";
    position: absolute;
    font-family: FontAwesome;
    top: 8px;
    left: 10px;
    color: #e19809;
}

.login-wrap {
    position: absolute;
    margin: 0 auto;
    background: #ecf0f1d1;
    width: 350px;
    border-radius: 5px;
    /* box-shadow: 3px 3px 10px #333; */
    box-shadow: 3px 3px 10px #d0d0d0;
    padding: 26px 50px 15px;
    z-index: 17;
    top: 50%;
    left: 50%;
    transform: translate(57%, -50%);
}

.login-wrap h2 {
    text-align: center;
    font-weight: 200;
    font-size: 2em;
    margin-top: 10px;
    color: #34495e;
}

.login-wrap .form {
    padding-top: 20px;
}

.login-wrap .form input[type="text"],
.login-wrap .form input[type="password"],
.login-wrap .form button {
    width: 100%;
    margin-left: 0%;
    margin-bottom: 25px;
    height: 40px;
    border-radius: 5px;
    outline: 0;
    -moz-outline-style: none;
}

.login-wrap .form input[type="text"],
.login-wrap .form input[type="password"] {
    border: 1px solid #bbb;
    padding: 0 0 0 32px;
    font-size: 14px;
}

.login-wrap .form input[type="text"]:focus,
.login-wrap .form input[type="password"]:focus {
    border: 1px solid #3498db;
}

.login-wrap .form a {
    text-align: center;
    font-size: 10px;
    color: #3498db;
}

.login-wrap .form a p {
    padding-bottom: 10px;
    font-size: 15px;
    color: #124179;
}

.login-wrap .form button {
    background: #a10400;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 200;
    cursor: pointer;
    transition: box-shadow .4s ease;
}

.login-wrap .form button:hover {
    box-shadow: 1px 1px 5px #555;
}

.login-wrap .form button:active {
    box-shadow: 1px 1px 7px #222;
}

.login-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: -webkit-linear-gradient(left, #27ae60 0%, #27ae60 20%, #8e44ad 20%, #8e44ad 40%, #3498db 40%, #3498db 60%, #e74c3c 60%, #e74c3c 80%, #f1c40f 80%, #f1c40f 100%);
    background: -moz-linear-gradient(left, #27ae60 0%, #27ae60 20%, #8e44ad 20%, #8e44ad 40%, #3498db 40%, #3498db 60%, #e74c3c 60%, #e74c3c 80%, #f1c40f 80%, #f1c40f 100%);
    height: 5px;
    border-radius: 5px 5px 0 0;
}


.button {
    background: #a10400;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 200;
    cursor: pointer;
    transition: box-shadow .4s ease;
	padding: 5px 30px;
	cursor:pou
	;
}

.button:hover {
    box-shadow: 1px 1px 5px #555;
}
div.pagination {
	padding:0;
	margin:0;
	text-align:center;
	font-size:15px;
	float: left;
}
div.pagination a {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #00477F;;	
	text-decoration: none; 
	color: #00477F;
}
div.pagination a:hover, div.pagination a:active {
	border:1px solid #00477F;
	color: #FFF;
	background-color:#00477F;
}
div.pagination span.current {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #00477F;
	font-weight: bold;
	background-color: #00477F;
	color: #FFF;
}
div.pagination span.disabled {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #B8DDEF;
	color: #B8DDEF;
}
.input-1::before {
    content: "/f007";
    position: absolute;
    font-family: FontAwesome;
}


/*animated menu button*/

.menu {
    cursor: pointer;
    margin: 0 auto;
    padding-left: 1.25em;
    position: absolute;
    width: 31px;
    height: 40px;
    right: 11px;
    top: 7px;
}

.menu-global {
    backface-visibility: hidden;
    position: absolute;
    left: 0;
    border-top: 3px solid #264261;
    width: 100%;
    transition: 0.55s;
}

.menu-top {
    top: 7px;
}

.menu-middle {
    top: 18px;
    width: 87%;
}

.menu-bottom {
    top: 28px;
}

.menu-top-click {
    backface-visibility: hidden;
    top: 15px;
    transform: rotate(50deg);
    transition: 0.55s 0.5s;
}

.menu-middle-click {
    opacity: 0;
}

.menu-bottom-click {
    backface-visibility: hidden;
    top: 15px;
    transform: rotate(-410deg);
    transition: 0.55s 0.5s;
}

.footer-top {
    background: url(../images/top-menu-bg.png) top repeat-x;
    background-color: rgba(0, 0, 0, 0);
    padding: 60px 0px 30px;
    background-color: #fbfaf4;
}

.footer-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 17px;
}

.footer-photo {
    list-style: none;
}

.footer-photo li {
    display: inline-flex;
    margin-bottom: 8px;
    margin-right: 4px;
    width: 107px;
    height: 67px;
}

.footer-photo li a img {
    width: 100%;
    border-radius: 3px;
    box-shadow: 2px 2px 0px 0px #9b9b9b;
    height: 100%;
}

.footer-events {
    list-style: none;
}

.footer-events li {
    border: 1px solid #ddd;
    padding: 10px 10px 10px 24px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 2px -2px 0px 0px #eceaea;
    position: relative;
}

.footer-events li:before {
    content: "\f0a9";
    font-family: FontAwesome;
    position: absolute;
    position: absolute;
    left: -7px;
    font-size: 21px;
    top: 6px;
    color: #8a1210;
}

.footer-events li a {
    color: #133356;
}

.mobile-login-form {
    display: none;
}

.inner-page-banner {
    background-image: url(../images/banner_3.jpg);
    background-position: top;
    background-size: cover;
    padding: 77px 0px;
}

.inner-page-banner-title {
    text-align: right;
}

.inner-page-banner-title span {
    padding: 21px 41px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 31px;
}

.inner-page-title {
    background: #5294b9;
    background-image: url(../images/7T9364v.gif);
    background-position: right;
    width: 100%;
    animation: main-div-move 1s;
    transition-timing-function: ease-in-out;
}

@keyframes main-div-move {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.inner-page-title h1 {
    color: #fff;
    width: max-content;
    background: #119bc1;
    font-size: 20px;
    font-weight: 700;
    padding: 17px 27px;
    margin: 5px;
    display: inline-block;
    position: relative;
    animation: title-move 3s;
    transition-timing-function: ease-in-out;
}

@keyframes title-move {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #119bc1;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translate(0%, -50%);
    animation: title-move-arrow 4s;
    transition-timing-function: ease-in;
}

@keyframes title-move-arrow {
    from {
        right: 0px;
    }
    to {
        right: -10px;
    }
}

.rightside-menu {
    padding: 37px 0px;
}

.rightside-menu ul {
    list-style-type: none;
}

.rightside-menu ul li {
    position: relative;
}

.rightside-menu ul li a {
    padding: 7px 15px;
    display: block;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-left: 34px solid #133356;
    color: #133356;
}

.rightside-menu ul li a:hover {
    background: #133356;
    color: #fff;
    border-bottom: 1px solid #133356;
    border-top: 1px solid #133356;
}

.rightside-menu ul li a::before {
    content: "\f18e";
    font-family: FontAwesome;
    position: absolute;
    left: 9px;
    color: #ffeded;
}


/* registration page */

.registration-form {
    padding: 0px 15px;
}

.reg-form-row .col-md-12,
.reg-form-row .col-md-4 {
    margin-bottom: 1.5em;
}

.reg-form-row-right .row {
    margin-bottom: 1.5em;
}

.reg-form-row label,
.reg-form-row-right,
.reg-form-row-add label {
    font-weight: 600;
    color: #133356;
}

.registration-form input,
.registration-form select {
    border: navajowhite;
    background: #e6e6e6;
    border-radius: 0px;
}

.image-desc {
    margin-bottom: 0px !important;
}

.image-desc p {
    color: #28476f;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 0px;
}

.reg-form-row-add .col-md-4,
.reg-form-row-add .col-md-6,
.reg-form-row-add .col-md-12 {
    margin-bottom: 10px;
}

.reg-form-row-add {
    border: 10px solid #666666;
    padding: 57px 20px 27px;
    margin-top: 27px;
    position: relative;
}

.address {
    position: absolute;
    top: -30px;
    background: #fff;
    padding: 17px 27px;
    border: 10px solid #666666;
}

.address p {
    margin: 0px;
    color: #a10400;
    text-transform: uppercase;
    font-weight: 700;
}


/* alumni list */

.pagination {
    margin: 0;
}

.pagination li:hover {
    cursor: pointer;
}

.header_wrap {
    /* padding: 30px 0; */
    width: 100%;
}

.num_rows {
    width: 20%;
    float: left;
}

.tb_search {
    width: 20%;
    float: right;
}

.pagination-container {
    width: 70%;
    float: left;
}

.rows_count {
    width: 20%;
    float: right;
    text-align: right;
    color: #999;
}

.ft-thead {
    background: #3f6fa2;
    color: #fff;
}


/* profile page */

.user-bg {
    position: relative;
    height: 100px;
    background-color: #407d99;
    background-image: url(../images/alumni-bg.png);
}

.profile-pic-main {
    display: flex;
}

.profile-pic {
    position: relative;
    top: -50%;
	height: 120px;
	width: 120px;
    overflow: hidden;
    border-radius: 50%;
    border: 6px solid #fff;
}

.profile-pic img {
    width: 100%;
}

.user-main-menu {
    background: #fff;
    height: 73px;
}

.user-main-menu-list {
    text-align: right;
}

.user-main-menu-list ul {
    list-style-type: none;
    margin: 0px;
}

.user-main-menu-list ul li {
    display: inline-block;
}

.user-main-menu-list ul li a {
    padding: 17px 12px 10px;
    display: block;
    color: #133356;
    border-bottom: 5px solid #fff;
    position: relative;
}

.user-main-menu-list ul li a i {
    margin-left: 7px;
}

.user-main-menu-list ul li a span {
    position: absolute;
    top: 6px;
    color: #fff;
    font-weight: 700;
    background: #a10400;
    min-width: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    right: 1px;
}

.user-main-menu-list ul li a:hover,
.user-main-menu-list ul li a:active {
    border-bottom: 5px solid #133356 !important;
}

.user-body {
    background: #f8f8f8;
    padding: 0px 0px;
}

.user-profile-info h2 {
    font-weight: 700;
    font-size: 23px;
    color: #a10400;
    padding: 21px;
}

.user-profile-info h2 span {
    font-size: 13px;
    color: #133356;
}

.user-info-sidebar {
    background: #fff;
    box-shadow: 0px 0px 4px 0px #e8e8e8;
}

.user-info-sidebar-list {
    list-style: none;
}

.user-info-sidebar-list-first-div {
    display: block;
    padding: 10px 20px;
    color: #fff;
    position: relative;
    border: 1px solid #133356;
    background: #133356;
    margin: 0px;
}

.user-info-sidebar-list-first-div i {
    margin-right: 5px;
}

#user-info {
    float: right;
    cursor: pointer;
    padding: 0px 10px;
    display: none;
}

.user-info-sidebar-list li {}

.user-info-sidebar-list li a {
    display: block;
    padding: 10px 20px;
    color: #133356;
    position: relative;
    border-top: 1px solid #ececec;
}

.user-info-sidebar-list li a i {
    margin-right: 10px;
}

.user-info-sidebar-list li a span {
    position: absolute;
    right: 10px;
    background: #a10400;
    min-width: 23px;
    border-radius: 7px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    padding-bottom: 2px;
    font-size: 13px;
}

.user-info-sidebar-list li a:hover {
    background: #133356;
    color: #fff;
}

.user-info-sidebar-list-active {
    background: #133356;
    color: #fff !important;
    transform: scale(1.05);
    border-left: 5px solid #2e7d9e;
}

.user-info-main-body {
    background: #fff;
    box-shadow: 0px 0px 4px 0px #e8e8e8;
    padding: 20px;
    min-height: 96%;
}

.user-info-main-body-title {
    color: #133356;
    font-size: 21px;
    font-weight: 700;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 20px;
}

.desc-box {
    padding: 42px 33px 18px;
    position: relative;
    border: 1px solid #e6e6e6;
    margin: 37px 0px;
}

.desc-box span {
    position: absolute;
    top: -23px;
    background: #FFF;
    padding: 10px 20px;
    border: 1px solid #e6e6e6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desc-box h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.desc-box p {
    font-size: 15px;
    margin-bottom: 0px;
}

.desc-box .row {
    margin-bottom: 10px;
}

.inbox-close {
    display: flex;
    width: 100%;
    margin: 15px 15px 0px;
    box-shadow: 0px 0px 5px 1px #eee;
    padding: 10px;
    cursor: pointer;
}

.inbox-close:hover {
    background: #f3fcff;
}

.inbox-open {
    display: none;
}

.inbox-close p {
    margin: 0px;
}

.inbox-close i {
    padding: 5px 7px;
    background: #a10400;
    color: #fff;
    border-radius: 5px;
}

.checkout-step-body {
    padding: 14px;
    border: 1px solid #ccc;
}

.checkout-step-body p {
    margin-bottom: 4px;
}

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


/* blog page */

.blog-box {
    border: 1px solid rgba(0, 0, 0, .125);
    padding: 0px;
    margin-top: 17px;
}

.blog-box-header {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.blog-box-header h3 {
    font-size: 18px;
    margin-top: 4px;
}

.blog-box-header p {
    margin: 0px;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: #133356;
}

.blog-box-header p span {
    background: #a10400;
    color: #fff;
    padding: 5px 14px;
    position: absolute;
    top: -11px;
    right: -20px;
}

.blog-box-body {
    padding: 10px 20px;
}

.blog-box-footer {
    padding: 14px 20px;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .125);
}

.blog-box-footer-right {
    float: right;
    display: flex;
}

.blog-box-footer-right a {
    display: grid;
    text-align: center;
    margin-left: 15px;
    color: #133356;
    font-weight: 700;
}

.blog-box-footer-right a i {
    color: #a10400;
}


/* birthdaypage */

.birthday-box {
    padding: 20px;
    border-bottom: 1px solid #e1e1e1;
}

.birthday-box-name {
    font-weight: 700;
    font-size: 17px;
}

.birthday-box-name span:first-child {
    margin: 0px 10px;
    font-size: 14px;
    color: #0cac84;
}

.birthday-box-name span:first-child i,
.birthday-box-name span:nth-child(2) i {
    font-size: 18px;
    margin-right: 3px;
}

.birthday-box-name span:nth-child(2) {
    margin: 0px 3px;
    font-size: 14px;
    color: #0c5e97;
}

.birthday-person-dp {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

.friends-dp {
    width: 100%;
    border-radius: 50%;
}

.unfriend {
    color: #a10400;
    float: right;
}


/* image gallery */

.demo-gallery>ul {
    margin-bottom: 0;
}

.demo-gallery>ul>li {
    margin-bottom: 15px;
    width: 180px;
    display: inline-block;
    margin-right: 15px;
    list-style: outside none none;
}

.demo-gallery>ul>li a {
    border: 3px solid #FFF;
    border-radius: 3px;
    display: block;
    overflow: hidden;
    position: relative;
    float: left;
}

.demo-gallery>ul>li a>img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}

.demo-gallery>ul>li a:hover>img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery>ul>li a:hover .demo-gallery-poster>img {
    opacity: 1;
}

.demo-gallery>ul>li a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.demo-gallery>ul>li a .demo-gallery-poster>img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.demo-gallery>ul>li a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .justified-gallery>a>img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}

.demo-gallery .justified-gallery>a:hover>img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery .justified-gallery>a:hover .demo-gallery-poster>img {
    opacity: 1;
}

.demo-gallery .justified-gallery>a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.demo-gallery .justified-gallery>a .demo-gallery-poster>img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.demo-gallery .justified-gallery>a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .video .demo-gallery-poster img {
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    opacity: 0.8;
    width: 48px;
}

.demo-gallery.dark>ul>li a {
    border: 3px solid #04070a;
}


/* alumni events accordion */

.card {
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    background-color: #fff;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 15px;
    border: none;
}

.card-header:first-child {
    border-radius: 0;
}

.card-header {
    background-color: #fff !important;
    margin-bottom: 0;
    padding: 20px 1.25rem;
    border: none;
}

.card-header a i {
    float: left;
    font-size: 12px;
    padding: 5px 0;
    margin: 0 25px 0 0px;
    color: #195C9D;
}

.card-header i {
    float: right;
    font-size: 21px;
    width: 1%;
    margin-top: 0px;
    margin-right: 10px;
    position: absolute;
}

.card-header a {
    width: 97%;
    float: left;
    color: #565656;
}

.card-header p {
    margin: 0;
}

.card-header h3 {
    margin: 0 0 0px;
    font-size: 17px;
    font-weight: bold;
    color: #3fc199;
    padding-left: 27px;
}

.card-block {
    -moz-box-flex: 1;
    flex: 1 1 auto;
    padding: 20px;
    color: #232323;
    box-shadow: inset 0px 4px 5px rgba(0, 0, 0, 0.1);
    border-top: 1px soild #000;
    border-radius: 0;
}
.showing {
	float:left;
	display:inline-block;	
	margin-bottom: 10px;
	margin-right:10px;
}
div.pagination {
	padding:0;
	margin:0;
	text-align:center;
	font-size:15px;
	float: right;
}
div.pagination a {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #000000;	
	text-decoration: none; 
	color: #000000;
}
div.pagination a:hover, div.pagination a:active {
	border:1px solid #000000;
	color: #000000;
	background-color:#666666;
}
div.pagination span.current {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #000000;
	font-weight: bold;
	background-color: #333;
	color: #FFF;
}
div.pagination span.disabled {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #999999;
	color: #ccc;
}
#msg {
	display:none;
	z-index:200;
	border:2px solid #924949;
	position:absolute;
}
#msgcontent {
	display:block;
	background:#f3e6e6;
	padding:5px;
	min-width:150px;
	max-width:250px;
	font-size:12px;
	position:relative;
}
#msgimg {
	position:absolute;
	width: 37px;
	height: 7px;
	left:0;
	top:-7px;
	background:url(../images/msg_arrow_top.png) no-repeat;
}
.succ {
	border-top:2px solid #090;
	border-bottom:2px solid #090;
	color:#090;
	padding:5px 0;
	width:100%;
	display:inline-block;
	font-weight:bold;
	text-align:center;
	background:#E0F9DF;
	margin:5px 0;
	-webkit-animation: shake .5s ease-in-out;
	-moz-animation: shake .5s ease-in-out;
	-ms-animation: shake .5s ease-in-out;
	-o-animation: shake .5s ease-in-out;
	animation: shake .5s ease-in-out;
}
.err {
	border-top:2px solid #C30;
	border-bottom:2px solid #C30;
	color:#C30;
	padding:5px 0;
	width:100%;
	display:inline-block;
	font-weight:bold;
	text-align:center;
	background:#FDE9E8;
	margin:5px 0;
	-webkit-animation: shake .5s ease-in-out;
	-moz-animation: shake .5s ease-in-out;
	-ms-animation: shake .5s ease-in-out;
	-o-animation: shake .5s ease-in-out;
	animation: shake .5s ease-in-out;
}
.lbl { margin-bottom:0 !important; }
/* executive body */

@media only screen and (max-width: 800px) {
    /* Force table to not be like tables anymore */
    #no-more-tables table,
    #no-more-tables thead,
    #no-more-tables tbody,
    #no-more-tables th,
    #no-more-tables td,
    #no-more-tables tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #no-more-tables thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #no-more-tables tr {
        border: 1px solid #ccc;
    }
    #no-more-tables td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 40%;
        white-space: normal;
        text-align: left;
        font-size: 14.5px;
    }
    #no-more-tables td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        font-size: 14.5px;
    }
    .table-bordered {
        border: none !important;
    }
    /*
	Label the data
	*/
    #no-more-tables td:before {
        content: attr(data-title);
    }
}

@media only screen and (max-width: 320px) {
    #no-more-tables td:before {
        font-size: 13px;
    }
    #no-more-tables td {
        font-size: 13px;
    }
    .header-top-left p {
        font-size: 12px;
        text-align: center;
    }
}

.cf tr {
    background: #119bc1;
    color: #fff;
}

.cf tr th {
    padding: 10px !important;
}

.bf tr td {
    padding: 10px;
}

.bf tr td strong {
    font-size: 13px;
    color: #3a756f;
}

.bf tr td:first-child {
    text-align: center;
    font-weight: 700;
    color: #3a756f;
}


/* responsive */

@media (max-width:1200px) and (min-width:992px) {
    .menu-list li a {
        font-size: 13px;
        margin: 0 0px;
    }
}

@media (max-width:1100px) and (min-width:992px) {
    .login-wrap {
        left: 39%;
    }
}

@media (max-width:991px) and (min-width:768px) {
    .login-wrap {
        left: 27%;
    }
    .logo img {
        width: 374px;
    }
    .head-alumni img {
        width: 132px;
    }
    .head-contact img {
        width: 43px;
    }
    .header-right ul li a {
        font-size: 14px;
    }
}

@media (max-width:991px) {
    .inner-page-banner-title {
        text-align: center;
    }
    .inner-page-banner-title span {
        background: rgba(1, 29, 50, 0.36);
    }
    .mobile-menu {
        display: block;
    }
    .menu-list {
        list-style-type: none;
        margin: auto;
        position: absolute;
        z-index: 9999;
        background: #f2eeee;
        left: 0px;
        width: 67%;
        display: none;
    }
    .menu-list li {
        display: block;
        text-align: center;
    }
    .menu-list li a {
        padding: 10px 10px;
        margin: 8px 10px;
    }
    .login-form-box {
        margin: 27px 0px;
        top: 0px;
    }
    .inbox-close {
        flex-wrap: wrap;
    }
    .inbox-close p {
        padding: 2px 0px 10px;
    }
}

@media (max-width:767px) {
    .right-image {
        height: 200px;
    }
    .header-right {
        display: none;
    }
    .slider {
        display: none;
    }
    .mobile-login-form {
        display: block;
        background-image: url(../images/university-gate.jpg);
        background-size: cover;
        padding: 47px 0px;
    }
    .login-wrap {
        position: relative;
        top: 0%;
        left: 0%;
        transform: none;
    }
    .our-vision-main {
        padding: 40px 0px;
    }
    .powered-by {
        text-align: center;
    }
    .footer-bottom {
        text-align: center;
    }
    .profile-pic {
        top: 0px;
        height: 70px;
        width: 70px;
    }
    .user-info-sidebar-list {
        display: none;
    }
    .user-body {
        padding: 17px 0px;
    }
    .user-info-main-body-title {
        display: none;
    }
    #user-info {
        display: block;
    }
}

@media (max-width: 640px) {}

@media (max-width: 575px) {
    .inbox-close {
        flex-wrap: initial;
    }
    .inbox-status {
        text-align: right;
    }
    .inbox-close p {
        padding: 0px;
    }
}

@media (max-width: 480px) {
    .user-profile-info h2 {
        padding: 16px;
    }
    .user-profile-info h2 {
        font-size: 16px;
    }
    .logo img {
        width: 317px;
    }
    .birthday-box {
        padding: 0px;
        margin-bottom: 20px;
    }
    .birthday-box-name {
        font-size: 14px;
    }
}

@media (max-width: 414px) {
    .profile-pic {
        width: 87px;
    }
}

@media (max-width: 384px) {
    .profile-pic {
        top: 10px;
        height: 50px;
        width: 70px;
        overflow: hidden;
    }
    .input-msg {
        width: 123% !important;
        left: -30%;
    }
    .birthday-person-dp {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 320px) {
    .logo img {
        width: 263px;
    }
}