/*
    Template Name    : St.Thomas School - Indirapuram
	Description		 : Responsive HTML5 Education and Multipurpose Template.
    Version          : 1.0
*/

/*
================================================
/* Table of Content
==================================================

1. Fonts
2. Common CSS
3. Loader CSS
4. Top Wrapper
5. Logo Bar 
6. Navigation
7. Banner Wrapper
8. Theme Bg
9. Callouts
10. Satisfied-wrapper
11. Team Wrapper
12. Signup Wrapper
13. Testimonials Wrapper 
14. Inner Page Banner
15. Tables
16. Tabs
17. Accordions us Page
18. Forms Page
19. Buttons
20. Typography
21. About us Page
22. Services Page
23. 404 Page
24. Classes Page
25. Gallery Page
26. Blog Page
27. Contact us page
28 .Footer
29. Media Quries 

/*
================================================
1. Fonts - Raleway and Opensans
================================================
*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Raleway:300,400,600,700');
/*
================================================
2. Common CSS
================================================
*/
* {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1.57143;
	font-weight: 400;
	color: #2d2e2e;
	background-image: url(images/background.jpg);
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', sans-serif;
	margin-top: 0;
}
a {
	color: #2d2e2e;
	transition: all 0.3s ease 0s;
}
a:hover {
	color: #002e48;
	text-decoration: none;
}
a, a:hover, a:active {
	outline: none;
}
.no-padding {
	padding: 0 !important;
}
.btn, .btn * {
	transition: all 0.3s ease 0s;
}
.btn {
	border-width: 2px;
	margin-bottom: 7px;
	margin-top: 7px;
	padding: 8px 22px;
	z-index: 1;
}
.btn:hover {
	color: #2d2e2e;
}
i {
	transition: all 0.4s ease-in-out 0s;
}
.offset-top-30 {
	margin-top: 30px;
}
.offset-top-60 {
	margin-top: 60px;
}
.offset-top-80 {
	margin-top: 80px;
}
.inset-right-30 {
	padding-right: 30px;
}
.inset-left-30 {
	padding-left: 30px;
}
.space-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.light-bg {
	background: #f6f7f8 none repeat scroll 0 0;
	fill: #f6f7f8;
}
.light-bg h3 {
	color: #2d2e2e;
}
#scrool-top {
	background: #002e48 none repeat scroll 0 0;
	border: 0 none;
	border-radius: 50%;
	bottom: 50px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
	color: #fff;
	height: 40px;
	line-height: 40px;
	position: absolute;
	right: 40px;
	text-align: center;
	transition: opacity 0.2s ease-out 0s;
	width: 40px;
	z-index: 9999;
}
#scrool-top i {
	color: #fff;
}
.center {
	text-align:center;
}

.left{float:left;}
.right{float:right;}

/*
================================================
3. Loader CSS
================================================
*/
#dvLoading {
	background: url(../images/loader.gif) no-repeat center center #fff;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999999;
}
/*
================================================
4. Top Wrapper
================================================
*/
header {
	width: 100%;
	z-index: 99;
}
.top-wrapper {
	padding: 0;
	background: #860e42;
}
.top-wrapper ul {
	margin: 0;
}
.header-social-icons {
	padding:10px 0;
}
.top-wrapper ul li {
	display: inline-block;
	margin: 0 0 0 7px;
	padding: 8px 0 8px 10px;
	color: #fff;
}
.top-wrapper ul li a {
	color: #fff;
	font-size:16px;
}
.top-wrapper ul li a:hover {
	opacity: 0.8;
}
.top-wrapper ul li:first-child {
	border: none;
	margin: 0;
}
.top-wrapper ul li i {
	
    font-size: 22px;
    background: #fff;
    height: 40px;
    width: 40px;
    color: #002e48;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}

.top-wrapper ul li:nth-child(1) i {color: blue;}

.top-wrapper .header-social-icons li {
	padding:0;
}
.top-wrapper .header-social-icons li i {
	font-size: 0px;
	width: 30px;
	height: 30px;
	line-height:30px;
	padding:0;
	border-radius: 50%;
	text-align: center;
	position: relative;
	z-index: 1;
	color: #fff;
	background:#406585;
	-webkit-transition: background 0.2s, color 0.2s;
	-moz-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}
.top-wrapper .header-social-icons li i::before {
 font-size: 13px;
 display: block;
 -webkit-font-smoothing: antialiased;
}
.top-wrapper .header-social-icons li i:hover {
	background:#860e42;
	color:#fff;
}
.top-wrapper .header-social-icons li i:hover:before {
	-webkit-animation: toRightFromLeft 0.2s forwards;
	-moz-animation: toRightFromLeft 0.2s forwards;
	animation: toRightFromLeft 0.2s forwards;
}
@-webkit-keyframes toRightFromLeft {
 49% {
 -webkit-transform: translate(100%);
}
 50% {
 opacity: 0;
 -webkit-transform: translate(-100%);
}
 51% {
 opacity: 1;
}
}
@-moz-keyframes toRightFromLeft {
 49% {
 -moz-transform: translate(100%);
}
 50% {
 opacity: 0;
 -moz-transform: translate(-100%);
}
 51% {
 opacity: 1;
}
}
@keyframes toRightFromLeft {
 49% {
 transform: translate(100%);
}
 50% {
 opacity: 0;
 transform: translate(-100%);
}
 51% {
 opacity: 1;
}
}
.top-wrapper ul li i.fa-search {
	cursor: pointer;
}
.top-wrapper .top-right {
	margin:0;
}
#search-form {
	position: absolute;
	right: 0;
	top: -10px;
	z-index: 10;
}
.top-wrapper ul li.search #search-form.open #search {
	width: 350px;
}
#search-submit {
	display: none;
}
.top-wrapper ul li.search #search-form #search {
	background-color: #f7f7f7;
	color: #878787;
	height: 50px;
	padding: 0 40px 0 25px;
	transition: all 0.3s ease 0s;
	width: 0;
	border: none;
	margin:0;
}
.top-wrapper ul li.search #search-form .close {
	color: #878787;
	cursor: pointer;
	opacity: 1;
	padding: 0;
	position: absolute;
	right: 13px;
	top: 8px;
}
.register-form, .login-form {
	background: #ffffff;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14);
	padding: 20px;
	position: absolute;
	right: 0;
	text-align: left;
	top: 50px;
	transform: rotateX(90deg);
	transform-origin: center top 0;
	transition: all 0.6s ease 0s;
	visibility: hidden;
	width: 368px;
	z-index: -99;
}
.register:hover .register-form, .login:hover .login-form {
	margin-top: 0;
	transform: rotateX(0deg);
	visibility: visible;
	z-index: 99999;
}
.top-wrapper h4 {
	border-bottom: 1px solid #f0f0f0;
	margin-bottom: 10px;
	padding-bottom: 10px;
	color: #333;
	font-weight: 600;
}
.top-wrapper input {
	color: #ababab;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	padding-left: 5%;
	width: 100%;
	border: 1px solid #e5e5e5;
	margin: 0 0 10px;
}
.top-wrapper .btn {
	background: #002e48;
	border: 0 none;
	color: #ffffff;
	float: right;
	font-size: 14px;
	line-height: 28px;
	padding: 0 15px;
	transition: all 0.3s ease 0s;
}
.top-wrapper span {
	color: #333;
	margin: 0 0 10px;
	display: inline-block;
}
/*
================================================
5. Logo Bar 
================================================
*/
.logo-bar {
	float: left;
	/*padding: 20px 0;*/
	width: 100%;
	background: #fff;
}
.affix .logo-bar {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.118);
}
.contact-info {
	/*margin:5px 0 0 0;*/
}
.contact-info li {
	color: #999;
	display:table-row;
	font-size: 12px;
	padding: 0 10px;
	vertical-align: top;
	
}
.contact-info li i {
	color: #ff0909;
	margin-right: 10px;
/*	border:solid 1px #c3c3c3;*/
	padding:5px 6px;
	font-size:18px;
}
.contact-info li p {
	color: #666;
	font-size: 13px;
	font-weight: 400;
	line-height: 15px;
	display:inline-block;
	vertical-align:middle;
	line-height:18px;
}
.contact-info li p span {
	color:#7e7e7e;
	font-weight:600;
}
/*
================================================
6. Navigation
================================================
*/
.affix.fadeInDown {
	animation-delay: 0s;
	animation-direction: normal;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-name: fadeInDown !important;
	animation-play-state: running;
	animation-timing-function: ease;
}
.fadeInDown {
	animation-name: none !important;
}
.affix.navigation {
	box-shadow:0 2px 10px -3px #808080;
}
.navigation {
	padding: 0;
	float:left;
	width:100%;
	background-color: #860e42;
	z-index:99;
	top:0;
}
.navbar-default {
	background-color: inherit;
	border-color: inherit;
}
.navbar {
	border-radius: 0;
	min-height: auto;
	margin: 0;
	border: none;
}
.navbar-brand {
	padding:11px 0 0;
	height: auto;
	display:none;
}
.navbar-brand img {
	width: 200px;
}
.navbar-nav > li:first-child {
	padding: 0;
}
.navbar-default .navbar-nav > li > a {
	color: #fff;
	font-size: 13.5px;
	text-transform: uppercase;
	font-weight: 600;
}
.navbar-default .navbar-nav > li > a > i {
	margin-left: 5px;
}
.navbar-nav > li > a {
	padding: 10px 18px;
	border-left:0px solid #fff;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
	background-color: #cc9704;
	color: #fff;
}
.navbar-default .navbar-nav > li.mega-menu {
	color: #fff;
	position: inherit;
}
.navbar-default .navbar-nav > li.mega-menu ul.dropdown-menu {
	background-color: #002e48;
	padding: 0 15px;
	margin: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.navbar-default .navbar-nav > li.mega-menu .list-unstyled {
	padding: 0 0 15px;
}
.navbar-default .navbar-nav > li.mega-menu ul.dropdown-menu li a {
	color: #fff;
	display: block;
	line-height: 23px;
	margin: 0;
	padding: 7px 15px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transform: translateZ(0px);
	transition-duration: 0.3s;
	transition-property: transform;
}
.navbar-default .navbar-nav > li.mega-menu ul.dropdown-menu li a:hover, .navbar-default .navbar-nav > li.mega-menu ul.dropdown-menu li a:focus {
	transform: translateX(8px);
}

.mega-menu .menu-icon {
	padding: 0 10px 0 0;
}
.navbar-default .navbar-nav > li.mega-menu > ul {
	max-width: 100%;
	width: 100%;
}
.navbar-default .navbar-nav > li.mega-menu div.row div > ul > li > span {
	color: #860e42;
	display: block;
	font-weight: 600;
	padding: 6px 15px 15px;
}
.navbar-default .navbar-nav > li.mega-menu div.row div {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	display: table-cell;
	float: none;
	margin: 0;
	padding: 15px 0 0;
	vertical-align: top;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
	background-color: inherit;
	color: #002e48;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
	background-color: #cc9704;
	color: #fff;
}
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
	color: #fff;
	background-color: #cc9704;
}
.navbar-default .navbar-nav > ul > li > a:hove ul.dropdown {
 display:none !important;
}
.dropdown-menu > li > a {
	color: #fff;
	display: block;
	line-height: 23px;
	margin: 0;
	padding: 7px 15px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
}
.dropdown-menu {
	top: 100%;
	padding: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	font-size: 16px;
	text-transform: uppercase;
	border-radius: 0;
	background: #005aab;
	border: none;
}
.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
	background: #cc9704;
	color: #fff;
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0px;
    margin-left: 0px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.style{margin:0 0 10px 10px;}
ul.style li{list-style:disc; margin-left:30px;}
ol.style li{list-style:decimal; margin-left:30px;}


#gallerynav { display: inline; }
#galleryselect { display: none; }
/*
================================================
7. Banner Wrapper
================================================
*/
.banner-wrapper {
	width: 100%;
	float: left;
	position: relative;
}
.banner-wrapper .fade-carousel {
	position: relative;
	height: 400px;
}
.banner-wrapper .fade-carousel .carousel-inner .item {
	height: 400px;
}
.banner-wrapper .fade-carousel .carousel-indicators > li {
	margin: 0 2px;
	background-color: none;
	border-color: #fff;
	border-width: 2px;
	border-style: solid;
	width: 12px;
	height: 12px;
}
.banner-wrapper .fade-carousel .carousel-indicators > li.active {
	width: 12px;
	height: 12px;
}
.hero {
	position: absolute;
	bottom: 5%;
	left: 25%;
	color: #fff;
	text-align: left;
	text-transform: uppercase;
	-webkit-transform: translate3d(-50%, -50%, 0);
	-moz-transform: translate3d(-50%, -50%, 0);
	-ms-transform: translate3d(-50%, -50%, 0);
	-o-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	opacity: 0;
}
.banner-wrapper .carousel .item.active .hero {
	opacity: 1;
}
.hero h1 {
	font-size: 30px;
	font-weight: 600;
	margin: 0 0 8px 0;
	display:inline-block;
	;
	padding: 10px;
	font-family: 'Open Sans', sans-serif;
	background:rgba(202, 21, 18, 0.8);
	color:#fff;
}
.hero h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 10px;
	background:rgba(7, 10, 12, 0.8);
	color:#fff;
	text-transform:capitalize;
}
.banner-wrapper .carousel .item.active .animated1 {
	animation: 1s ease-in 500ms normal both 1 running flipInX;
}
.banner-wrapper .carousel .item.active .animated2 {
	animation: 1s ease-in-out 100ms normal both 1 running bounceInLeft;
}
/* Slides backgrounds */
.fade-carousel .slides .slide-1, .fade-carousel .slides .slide-2, .fade-carousel .slides .slide-3, .fade-carousel .slides .slide-4, .fade-carousel .slides .slide-5, .fade-carousel .slides .slide-6, .fade-carousel .slides .slide-7, .fade-carousel .slides .slide-8, .fade-carousel .slides .slide-9 {
	height: 100%;
	background-size: cover;
	background-position: left center;
	background-repeat: no-repeat;
}
.fade-carousel .slides .slide-1:before, .fade-carousel .slides .slide-2:before, .fade-carousel .slides .slide-3:before, .fade-carousel .slides .slide-4:before, .fade-carousel .slides .slide-5:before, .fade-carousel .slides .slide-6:before, .fade-carousel .slides .slide-7:before, .fade-carousel .slides .slide-8:before, .fade-carousel .slides .slide-9:before {
	background: #000 none repeat scroll 0 0;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
}
/*.fade-carousel .slides .slide-1 {
	background-image: url(../userfiles/images/banner.jpg);
}
.fade-carousel .slides .slide-2 {
	background-image: url(../userfiles/images/banner1.jpg);
}
.fade-carousel .slides .slide-3 {
	background-image: url(../userfiles/images/banner2.jpg);
}*/


.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}




/*
================================================
8. Inner Page Banner
================================================
*/
.inner-banner::before {
 background: #000;
 bottom: 0;
 content: "";
 left: 0;
 opacity: 0.8;
 position: absolute;
 right: 0;
 top: 0;
 z-index: -1;
}
.inner-banner {
	background-image: url(../images/cta-bg.jpg);
	background-position: center center;
	background-size: cover;
	float: left;
	padding: 55px 0 50px;
	position: relative;
	width: 100%;
	z-index: 2;
	text-align:center;
}
.inner-banner h2 {
	color: #fff;
	font-size: 30px;
	margin: 0 0 30px 0;
	font-weight:600;
}
.inner-breadcrumb ul li:first-child::before {
 display: none;
 font-size: 0;
}
.inner-breadcrumb ul li::before {
 color: #fff;
 content: "/ ";
 font-family: fontawesome;
 font-size: 12px;
 font-weight: normal;
 left: 0;
 line-height: normal;
 margin-top: -7px;
 position: absolute;
 top: 50%;
}
.inner-breadcrumb ul li {
	display: inline-block;
	padding: 0 8px 0 14px;
	position: relative;
	color: #fff;
	font-size: 14px;
	line-height: 14px;
}
.inner-breadcrumb ul li:last-child {
	font-weight:600;
	color:#ccc;
}
.inner-breadcrumb ul li a {
	color: #fff;
	display: block;
	font-size: 14px;
	line-height: 14px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out 0s;
}
.inner-breadcrumb ul li a:hover {
	color: #002e48;
}
/*
================================================
9. About Section
================================================
*/
.about-us {
	padding:30px 0 35px;
	width:100%;
	float:left;
}
.about-us h2 {
	border-bottom: 1px solid #860e42;
	padding:0 0 10px 0;
	margin:0 0 30px 0;
	position:relative;
	color:#860e42;
}
.about-us h2 span {
	color:#444444;
}
.about-us h2::before {
 background: #860e42;
 bottom: 0;
 content: "";
 display: inline-block;
 height: 1px;
 position: absolute;
 width: 80px;
}
.about-us img {
	width:100%;
	height:auto;
}
.about-us p {
	margin:0 0 12px 0;
	font-size:14px;
}
.about-us a {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	padding:8px 20px;
	margin:10px 0 0 0;
	font-size:14px;
	color:#002e48;
	border:solid 1px #002e48;
}
.about-us a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #860e42;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.about-us a:hover, .about-us a:focus, .about-us a:active {
	color: #fff;
}
.about-us a:hover:before, .about-us a:focus:before, .about-us a:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/*
================================================
10. Callouts
================================================
*/
.callouts-wrapper {
	padding: 0px 0 20px;
	width: 100%;
	float: left;
	background:#ccc;
}
.callouts-wrapper h2::after {
 background-color: #002e48;
 content: "";
 display: block;
 height: 2px;
 margin: 14px auto 0;
 width: 80px;
}
.callouts-wrapper h2 {
	color: #002e48;
	font-weight: 600;
	margin: 0 0 30px 0;
	padding: 0;
	text-align: center;
	position: relative;
}
.callouts-wrapper h2 span {
	color:#444444;
}
.callouts-wrapper p {
	margin: 0;
	padding: 0 0 5px;
	font-size: 16px;
}
.callouts-wrapper .callouts {
	margin: 30px 0 0 0;
	padding:0;
	background:#fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	float:left;
}
.callouts-wrapper .callouts p {
	font-size: 14px;
	line-height: 23px;
	margin:0;
	padding: 0;
}
.callouts-wrapper .callouts:hover h3 {
	color: #002e48;
}
.callouts-wrapper .callouts .icon {
	display:table-cell;
	vertical-align:middle;
	padding:20px;
	border-right:1px dashed #d7d7d7;
}
.callouts-wrapper .callouts .content {
	display:table-cell;
	vertical-align:middle;
	padding:20px;
    width:100%;
    background-color: #860e42;
}
.callouts-wrapper .callouts i {
	color: #002e48;
	font-size: 30px;
	text-align: center;
	vertical-align: middle;
}
.callouts-wrapper .callouts h3 {
	font-size: 18px;
	font-weight: 600;
	color: #2d2e2e;
}
/*
================================================
11. Satisfied-wrapper
================================================
*/
.satisfied-wrapper {
	padding: 30px 0 38px;
	width: 100%;
	float: left;
	text-align: center;
}
.satisfied-wrapper h2 {
	text-align: center;
	color: #860e42;
	margin: 0 0 30px 0;
	padding: 0;
	position: relative;
	font-weight: 600;
}
.satisfied-wrapper h2 span {
	color:#444444;
}
.satisfied-wrapper h2:after {
	background-color: #860e42;
	content: "";
	display: block;
	height: 2px;
	margin: 14px auto 0;
	width: 80px;
}
.satisfied-wrapper .counter .number {
	font-size: 40px;
	margin: 0;
	padding: 0;
	color: #002e48;
	font-weight: 700;
}
.satisfied-wrapper .counter i {
	width:100px;
	height:100px;
	line-height:100px;
	border-radius:100px;
	font-size:32px;
	color:#002e48;
	border:solid 1px #860e42;
}
.satisfied-wrapper .counter p {
	font-size: 16px;
	margin: 0;
	padding: 0;
	color: #002e48;
}
.satisfied-wrapper .statistics {
	float: left;
	margin: 35px 0 0;
	width: 100%;
}
/*
================================================
12. Call to Action
================================================
*/
.call-to-action {
	padding: 110px 0 116px;
	width: 100%;
	float: left;
	clear: both;
	background-image: url(../images/cta-bg.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: 9;
	position: relative;
	border-top: 1px solid #dedede;
	text-align:center;
}
.call-to-action:before {
	background: #000;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0.8;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.call-to-action h3 {
	color: #fff;
	font-size: 30px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 600;
}
.call-to-action p {
	margin-bottom: 40px;
	color:#fff;
}
.call-to-action a {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	padding: 15px 40px;
	font-size:20px;
	color:#fff;
	text-transform:uppercase;
	background: #002e48;
}
.call-to-action a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #444;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.call-to-action a:hover, .call-to-action a:focus, .call-to-action a:active {
	color: #fff;
}
.call-to-action a:hover:before, .call-to-action a:focus:before, .call-to-action a:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/*
================================================
13. Team Wrapper
================================================
*/
.team-wrapper {
	padding: 20px 0 10px;
	width: 100%;
	float: left;
	text-align: center;
}
.team-wrapper h2::after {
 background-color: #860e42;
 content: "";
 display: block;
 height: 2px;
 margin: 14px auto 0;
 width: 80px;
}
.team-wrapper h2 {
	color: #002e48;;
	font-weight: 600;
	margin: 0 0 20px;
	padding: 0;
	position: relative;
	text-align: center;
	font-size: 36px;
}
.team-wrapper h2 span {
	color:#444444;
}
.team-wrapper .img-box h4 {
	margin: 0 0 15px 0;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	text-transform:uppercase;
}
.team-wrapper .img-box p {
	margin: 0 0 10px 0;
	color: #fff;
}
.team-wrapper img {
	/*width: 100%;*/
	height: auto;
}
.team-wrapper .img-box {
	opacity: 1;
	display: block;
	position: relative;
	margin: 0 0 15px 0;
}
.team-wrapper .img-box:before {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	bottom: 100%;
	content: '';
	background-color: rgba(47, 80, 108, 0.9);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}
.team-wrapper .img-box:hover:before {
	bottom: 10px;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.team-wrapper .img-box .text-center {
	position: absolute;
	z-index: 2;
	top:0;
	bottom: 0;
	left:0;
	right:0;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	padding:0 30px;
}
.team-wrapper .img-box:hover .text-center {
	opacity: 1;
}
.team-wrapper .owl-carousel .item {
	margin:0 15px;
}
.team-wrapper .owl-theme .owl-controls .owl-buttons .owl-prev {
	background: url(../images/arrow-prev.jpg) no-repeat left top;
	border-radius: 0;
	font-size: 0;
	border-radius: 0;
	height: 40px;
	margin: 0 2px 0 0;
	opacity: 1;
	padding: 0;
	width: 40px;
	position:absolute;
	top:50%;
	left:0;
}
.team-wrapper .owl-theme .owl-controls .owl-buttons .owl-next {
	background: url(../images/arrow-next.jpg) no-repeat left top;
	border-radius: 0;
	font-size: 0;
	border-radius: 0;
	height: 40px;
	margin: 0;
	opacity: 1;
	padding: 0;
	width: 40px;
	position:absolute;
	top:50%;
	right:0;
}
.team-wrapper .owl-pagination {
	display: none;
}
/*
================================================
14. Testimonials Wrapper 
 ================================================
*/
.testimonials-wrapper {
	padding: 25px 0 20px;
	width: 100%;
	float: left;
	clear: both;
	background-image: url(../images/testimonials-bg.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: 9;
	position: relative;
	border-top: 1px solid #dedede;
}
.testimonials-wrapper:before {
	background: #000;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0.8;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.testimonials-wrapper p {
	text-align: center;
	margin: 0 0 20px;
	color: #c8c8c8;
	line-height: 22px;
	font-size:14px;
}
.testimonials-wrapper p:before {
	content: "\f10d";
	font-family: 'Fontawesome';
	float: left;
	margin-right: 10px;
}
.testimonials-wrapper p:after {
	content: "\f10e";
	font-family: 'Fontawesome';
	display: inline-block;
	margin-left: 10px;
}
.testimonials-wrapper h2::after {
 background-color: #fff;
 content: "";
 display: block;
 height: 2px;
 margin: 14px auto 0;
 width: 80px;
}
.testimonials-wrapper h2 {
	color: #fff;
	font-weight: 600;
	margin: 0 0 40px;
	padding: 0;
	position: relative;
	text-align: center;
}
.testimonials-wrapper .item {
	text-align: center;
	margin:0 15px;
}
.testimonials-wrapper .item img {
	text-align: center;
	width: 100px;
	height: 100px;
	text-align: center;
	line-height: 100px;
	color: #fff;
	font-size: 40px;
	border: 2px solid #fff;
	margin: 0 0 20px;
	padding: 0;
	border-radius: 50%;
}
.testimonials-wrapper h3 {
	text-align: center;
	margin: 0 0 20px;
	color: #e6e6e6;
	font-size: 18px;
	font-weight: 600;
}
.testimonials-wrapper h3 span {
	font-size: 13px;
	color: #777;
}
.testimonials-wrapper .owl-buttons {
	display: none;
}
/*
================================================
15. Sponsers
================================================
*/
.sponsers {
	padding: 30px 0 25px;
	width: 100%;
	float: left;
	text-align:center;
}
.sponsers h2::after {
 background-color: #860e42;
 content: "";
 display: block;
 height: 2px;
 margin: 14px auto 0;
 width: 80px;
}
.sponsers h2 {
	color: #860e42;
	font-weight: 600;
	margin: 0 0 60px;
	padding: 0;
	position: relative;
	text-align: center;
}
.sponsers h2 span {
	color:#444444;
}
.sponsers .owl-buttons {
	display: none;
}
/*
================================================
16. Ineer Wrapper
================================================
*/
.inner-wrapper {
	float: left;
	width: 100%;
	background: #fff;
	/*padding: 10px 0;*/
}
.inner-wrapper h2::after {
 background-color: #860e42;
 content: "";
 display: block;
 height: 2px;
 margin: 14px auto 0;
 width: 80px;

}
.inner-wrapper h2 {
	color: #002e48;;
	font-weight: 600;
	/*margin: 0 0 50px 0;*/
	padding: 0;
	text-align: center;
	position: relative;
	margin-top: 25px;
}
.inner-wrapper span {
	color:#444444;
}
.inner-wrapper p {
	margin: 0;
	/*padding: 0 0 5px;*/
	line-height: 24px;
	font-size: 14px;
	/*font-weight: 600;*/
}
.inner-wrapper .inner-wrapper-main {
	width: 100%;
	padding: 0;
    text-align: justify;
}
/*
================================================
17. Tables
================================================
*/
.table-custom {
	width: 100%;
}
.table-custom tbody tr:first-child {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	border-color: -moz-use-text-color -moz-use-text-color #2d2e2e;
	border-image: none;
	border-style: none none solid;
	border-width: medium medium 1px;
}
.table-custom th, .table-custom td {
	padding: 13px 23px;
}
.table-custom tbody tr {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	border-color: #e5e5e5 -moz-use-text-color;
	border-image: none;
	border-style: solid none;
	border-width: 1px medium;
}
.table-custom tbody tr:hover {
	background: #f5f5f5;
}
.striped tr:nth-child(even) {
 background-color: #f5f5f5
}
table.striped tr:hover {
	background: none;
}
table.striped tr:hover:nth-child(even) {
 background-color: #f5f5f5
}
.table-custom.table-dark tr th {
	background: #002e48;
	color: #fff;
}
.table-custom.table-color tr th {
	background: #860e42;
	color: #fff;
}
.table-custom.border, .border td, .border th {
	border: 1px solid #eee;
}
.table-custom.border tr:hover {
	background: none;
}



.table_style{border:1px solid #DDDDDD; margin-bottom:20px; width:100%; font-size:12px; text-align:center;}
.table_style table{border:1px solid #FFFFFF; border-collapse:collapse; margin:0; padding:0; text-align:left; width:100%;}
.table_style tbody{background:none repeat scroll 0 0 #F9F9F9;}
.table_style th{background-color:#EEEEEE; border-bottom:dotted 1px #c8c8c8; color:#555555; font-size:13px; font-weight:normal; padding:8px 10px; font-weight:bold; text-align:center;}
.table_style td{border-top:1px dashed #D5D5D5; color:#666666; padding:5px 10px;}
.table_style tfoot{background-color:#F3F3F3;}
.table_style tfoot td{padding:8px;}

.table_stylen{border:1px solid #DDDDDD; margin-bottom:20px;  font-size:12px; text-align:center;}
.table_stylen table{border:1px solid #FFFFFF; border-collapse:collapse; margin:0; padding:0; text-align:left; }
.table_stylen tbody{background:none repeat scroll 0 0 #F9F9F9;}
.table_stylen th{background-color:#EEEEEE; border-bottom:dotted 1px #c8c8c8; color:#555555; font-size:13px; font-weight:normal; padding:8px 10px; font-weight:bold; text-align:center;}
.table_stylen td{border-top:1px dashed #D5D5D5; color:#666666; padding:5px 10px;}
.table_stylen tfoot{background-color:#F3F3F3;}
.table_stylen tfoot td{padding:8px;}






/*
================================================
18. Tabs
================================================
*/
/* Classic Tabs */
.classic-tab-panel {
	padding: 0 10px 5px;
}
.classic-tab-panel .tabbable-line > .nav-tabs {
	border: none;
	margin: 0px;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li {
	margin: 0 28px 2px 0;
	transition: all 0.2s ease-in 0s;
	position:relative;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li:after {
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	top: 100%;
	transition: all 0.35s ease-in 0s;
	width: 0;
	z-index: 2;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li:hover:after {
	background:#002e48;
	left: 0;
	width: 100%;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li > a {
	border: 0;
	margin-right: 0;
	color: #2d2e2e;
	font-size: 18px;
	padding: 0 10px 5px;
	border-radius: 0;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li > a > i {
	color: #a6a6a6;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li.open > a, .classic-tab-panel .tabbable-line > .nav-tabs > li:hover > a {
	border: 0;
	background: none !important;
	color: #333333;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li.open > a > i, .classic-tab-panel .tabbable-line > .nav-tabs > li:hover > a > i {
	color: #a6a6a6;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li.open .dropdown-menu, .classic-tab-panel .tabbable-line > .nav-tabs > li:hover .dropdown-menu {
	margin-top: 0px;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li.active {
	border-bottom: 1px solid #860e42;
	position: relative;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li.active > a {
	border: 0;
	color: #002e48;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li.active > a > i {
	color: #404040;
}
.classic-tab-panel .tabbable-line > .tab-content {
	margin-top: -3px;
	background-color: #fff;
	border: 0;
	border-top: 1px solid #eee;
	padding: 15px 0;
}
.portlet .classic-tab-panel .tabbable-line > .tab-content {
	padding-bottom: 0;
}
.classic-tab-panel .btn {
	background: #002e48;
	color: #fff;
}
.classic-tab-panel .btn:hover {
	color: #fff;
}
/* Classic vertical tabs Tabs */	
div.classic-vertical-tab-panel .nav > li > a {
	padding: 3px 20px 3px 0;
	font-size: 18px;
}
div.classic-vertical-tab-panel .nav > li > a:hover, div.classic-vertical-tab-panel .nav > li > a:focus {
	background: none;
}
div.classic-vertical-tab-panel .nav > li+ li {
	margin-top: 16px;
}
div.classic-vertical-tab-panel .nav > li:after {
	height: 0;
	left: 100%;
	margin-left: -1px;
	top: 50%;
	content: "";
	position:absolute;
	transition: all 0.35s ease-in 0s;
	z-index: 2;
}
div.classic-vertical-tab-panel .nav > li:hover:after {
	background: #002e48;
	height: 100%;
	left: 100%;
	top: 0;
	width: 1px;
}
div.classic-vertical-tab-panel .nav-sidebar {
	margin-left: -3px;
	background-color: #fff;
	border: 0;
	border-right: 1px solid #eee;
	padding: 0;
	margin: 0 10px 0 0;
}
div.classic-vertical-tab-panel .nav > li.active {
	border-right: 1px solid #002e48;
}
div.classic-vertical-tab-panel .nav > li.active > a {
	border: 0;
	color: #002e48;
}
/* button tab panel */

.button-tab-panel .tabbable-line > .tab-content {
	margin-top: -3px;
	background-color: #fff;
	border: none;
	padding: 15px 0;
}
.button-tab-panel .tabbable-line > .nav-tabs > li {
	margin: 0 2px 2px 0;
}
.button-tab-panel .nav > li > a {
	display: block;
	padding: 10px 32px;
	position: relative;
	font-size: 16px;
	background: none;
	color: #2d2e2e;
	border-radius: 8px;
	border: 2px solid #2d2e2e;
}
.button-tab-panel .tabbable-line > .nav-tabs > li {
	margin-right: 22px;
}
.button-tab-panel .tabbable-line > .nav-tabs > li:last-child {
	margin: 0;
}
.button-tab-panel .nav-tabs > li.active > a, .button-tab-panel .nav-tabs > li.active > a:focus, .button-tab-panel .nav-tabs > li > a:hover {
	background-color: #002e48;
	border-color: #860e42;
	border-image: none;
	border-style: solid;
	border-width: 2px;
	color: #fff;
}
.button-tab-panel .tabbable-line > .nav-tabs > li.active {
	border-bottom: 0px solid #002e48;
	position: relative;
}
div.classic-vertical-tab-panel .nav > li.active > a {
	border: 0 none;
	color: #002e48;
}
/* button vertical tab panel */
.button-vertical-tab-panel .nav > li {
	margin: 0 0 10px;
}
.button-vertical-tab-panel .nav > li > a {
	text-align: center;
	border: 2px solid #2d2e2e;
	border-radius: 8px;
}
.button-vertical-tab-panel .nav > li.active > a, .button-vertical-tab-panel .nav > li > a:hover {
	background-color: #002e48;
	color: #fff;
	text-align: center;
	border: 2px solid #860e42;
}
/*
================================================
19. Accordions us Page
================================================
*/
/* Modern Accordion  */
#accordion-first .accordion-group {
	margin-bottom: 10px;
	background:#f7f7f7;
	padding:10px;
	border-left: 2px solid #e3e3e3;
}
.accordion-inner {
	padding: 6px 0 0;
}
#accordion-first .accordion-heading {
	border-bottom: 0px none;
	font-size: 16px;
}
#accordion-first .accordion-heading .accordion-toggle {
	display: block;
	cursor: pointer;
	padding: 5px 0px !important;
	color: #860e42;
	outline: medium none !important;
	text-decoration: none;
	font-weight: 600;
}
#accordion-first .accordion-heading .accordion-toggle.active {
	color: #002e48;
}
#accordion-first .accordion-heading .accordion-toggle > em {
	color: #860e42;
	font-size: 14px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	width: 32px;
	float:right;
}
/* Classic Accordion  */
#accordion-first .classic .accordion-group {
	border: 1px solid #d7d7d7;
	background:none;
}
#accordion-first .classic .accordion-heading .icon-fixed-width {
	margin-top: -5px;
}
#accordion-first .classic .accordion-heading .accordion-toggle {
	padding: 0 !important;
}
/*
================================================
20. Forms Page
================================================
*/
/* Quick Contact */
.form {
	border-radius: 7px;
	padding: 6px 6px 6px 0;
}
.txt[type="text"], .txt[type="password"] {
	border: 1px solid #ccc;
	margin: 10px 0;
	padding: 10px 0 10px 5px;
	width: 100%;
}
.txt_3[type="text"] {
	margin: 10px 0 0;
	padding: 10px 0 10px 5px;
	width: 100%;
}
.txt2[type="submit"] {
	background: #002e48;
	border: 1px solid #860e42;
	border-radius: 6px;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	line-height: 35px;
	margin: 10px 0;
	padding: 0;
	text-transform: uppercase;
	width: 30%;
}
.txt2:hover {
	background: #fff;
	color: #2d2e2e;
	transition: all 0.5s ease 0s;
}
/* Newsletter Subscribe  */
.subscirbe .sub {
	color: #333;
	font-size: 15px;
	padding: 20px 0 8px;
	text-align: center;
}
.subscirbe .sub span {
	color: #002e48;
	font-weight: 600
}
.subscirbe .form input.form-control {
	background: none;
	border: 1px solid #ccc;
	border-radius: 0;
	color: #666!important;
	font-family: Lato, sans-serif;
	font-size: 15px;
	font-weight: 400;
	height: 40px;
	line-height: 40px;
	margin: 0 0 17px;
	padding: 0 0 0 3%;
	text-align: left;
	width: 70%;
	float: left
}
.subscirbe .form input.bttn {
	background: #002e48;
	border: 1px solid #16a085;
	border-radius: 0 4px 4px 0;
	color: #fff;
	float: left;
	font-size: 16px;
	margin: 0 0 0 -2px;
	padding: 7px 10px 6px;
	text-align: center;
	width: 30%;
	cursor: pointer;
}
.form .social-icons {
	display:inline-block;
}
.form p {
	display:inline-block;
	margin:0 10px;
}
.form .social-icons li {
	list-style:none;
	display:inline-block;
	margin:0 3px;
}
.form .social-icons li i {
	font-size: 0px;
	width: 30px;
	height: 30px;
	line-height:30px;
	padding:0;
	border-radius: 50%;
	text-align: center;
	position: relative;
	z-index: 1;
	color: #fff;
	background:#406585;
	-webkit-transition: background 0.2s, color 0.2s;
	-moz-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}
.form .social-icons li i::before {
 font-size: 13px;
 display: block;
 -webkit-font-smoothing: antialiased;
}
.form .social-icons li i:hover {
	background:#860e42;
	color:#fff;
}
.form .social-icons li i:hover:before {
	-webkit-animation: toRightFromLeft 0.2s forwards;
	-moz-animation: toRightFromLeft 0.2s forwards;
	animation: toRightFromLeft 0.2s forwards;
}
/*
================================================
21. Buttons
================================================
*/
.btn-shapes {
	text-align: center;
}
.btn-shapes .btn-primary {
	background: #002e48;
	border: solid 1px #860e42;
	margin-right: 15px;
	padding:12px 22px;
}
.btn-shapes .btn-primary:last-child {
	margin-right: 0;
}
.btn-shapes .btn-primary:hover {
	background: #2d2e2e;
	color: #fff;
}
.btn-shapes .btn-primary.btn-rectangle {
	border-radius: 0;
}
.btn-shapes .btn-primary.btn-roundcorner {
	border-radius: 8px;
}
.btn-shapes .btn-primary.btn-elipse {
	border-radius: 20px;
}
.btn-shapes .btn-primary.btn-small {
	padding:6px 22px;
}
.btn-shadow {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.18);
}
.btn-shapes .btn-primary i {
	padding: 0 3px;
}
.btn-shapes .social-buttons li {
	list-style:none;
	display:inline-block;
	margin:0 3px;
}
.btn-shapes .social-buttons li i {
	font-size: 0px;
	width: 40px;
	height: 40px;
	line-height:40px;
	padding:0;
	border-radius: 50%;
	text-align: center;
	position: relative;
	z-index: 1;
	color: #fff;
	background:#406585;
	-webkit-transition: background 0.2s, color 0.2s;
	-moz-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}
.btn-shapes .social-buttons li i::before {
 font-size: 14px;
 display: block;
 -webkit-font-smoothing: antialiased;
}
.btn-shapes .social-buttons li i:hover {
	background:#860e42;
	color:#fff;
}
.btn-shapes .social-buttons li i:hover:before {
	-webkit-animation: toRightFromLeft 0.2s forwards;
	-moz-animation: toRightFromLeft 0.2s forwards;
	animation: toRightFromLeft 0.2s forwards;
}
/*
================================================
22. Lists
================================================
*/
.lists h2 {
	text-align:left;
	font-size:20px;
}
.lists h2:after {
	margin:14px 0;
}
.lists ul {
	margin:0 !important;
}
.lists ol {
	margin:0 0 0 18px !important;
}
.unordered-list ul li {
	list-style: none;
}
.unordered-list ul li::before {
 color: #000;
 content: "\f061";
 font-family: "FontAwesome";
 font-size: 14px;
 padding: 0 10px 0 0;
}
.unordered-list ul li + li {
	margin: 10px 0 0 0;
}
.ordered-list ol li {
	padding: 0 0 0 6px;
}
.ordered-list ol li + li {
	margin: 10px 0 0 0;
}
.lists .unordered-list.default-list ul {
	margin:0 0 0 18px !important;
}
.lists .default-list li {
	list-style:disc;
}
.lists .default-list li::before {
 content:"";
 padding-right:5px;
}
/*
================================================
23. Typography
================================================
*/
.inner-wrapper .typo hgroup h1, .inner-wrapper .typo hgroup h2, .inner-wrapper .typo hgroup h3, .inner-wrapper .typo hgroup h4, .inner-wrapper .typo hgroup h5, .inner-wrapper .typo hgroup h6 {
	margin: 0 0 20px 0;
}
.inner-wrapper .typo h4 {
	font-size: 20px;
}
.inner-wrapper .typo h5 {
	font-size: 18px;
}
.inner-wrapper .typo h6 {
	font-size: 16px;
}
.inner-wrapper .typo h1, .inner-wrapper .typo h2, .inner-wrapper .typo h3, .inner-wrapper .typo h4, .inner-wrapper .typo h5, .inner-wrapper .typo h6 {
	text-align: left;
	margin: 0 0 10px 0;
	font-weight: 600;
	color: #000;
}
.inner-wrapper .typo h2:after {
	background:none;
	margin:0;
}
.inner-wrapper .typo p {
	margin: 0 0 20px 0;
}
.inner-wrapper-main.html-elements p {
	font-size:16px;
}
inner-wrapper-main.html-elements mark {
	background:#860e42;
	color:#fff;
}
.inner-wrapper-main.html-elements .hover {
	color:#860e42;
}
.inner-wrapper-main.html-elements .active {
	color:#a7a7a7;
}
.inner-wrapper-main.html-elements .underline {
	text-decoration:underline;
}
.inner-wrapper-main.html-elements .strike {
	text-decoration:line-through;
}
.inner-wrapper-main.image-styles {
	text-align:center;
}
.inner-wrapper-main.image-styles p {
	text-align:left;
	margin-bottom:15px;
}
.inner-wrapper-main.image-styles.img-center img {
	width:auto;
	margin:0 0 15px 0;
}
.inner-wrapper-main.image-styles img {
	width:100%;
	height:auto;
}
/*
================================================
24. Courses
================================================
*/
.inner-wrapper .courses {
	box-shadow:0 0 5px rgba(0, 0, 0, 0.15);
	float:left;
	position:relative;
	margin:0 0 30px;
}
.inner-wrapper .courses .course-thumb {
	padding:0;
}
.inner-wrapper .courses .course-cnt {
	padding:20px 20px 0;
}
.inner-wrapper .courses .course-cnt i {
	color:#860e42;
	padding:0 3px 0 0;
}
.inner-wrapper .courses .course-thumb img {
	-webkit-transition:350ms ease all;
	transition:350ms ease all;
	width:100%;
	height:auto;
}
.inner-wrapper .courses:hover .course-thumb img {
	-webkit-filter:grayscale(100%);
	filter:grayscale(100%);
}
.inner-wrapper .courses:hover .course-cnt h3 {
	color:#860e42;
}
.inner-wrapper .courses .course-cnt h3 {
	margin:0 0 15px 0;
	font-weight:600;
	font-size:18px;
	text-transform:uppercase;
}
.inner-wrapper .courses .course-cnt li {
	list-style:none;
	display:inline-block;
}
.inner-wrapper .courses .course-cnt .area-period {
	margin:0 0 22px 0;
}
.inner-wrapper .courses .course-cnt .area-period li {
	border:solid 1px #c2c2c2;
	padding:5px 10px;
	border-radius:5px;
	margin:0 10px 0 0;
}
.inner-wrapper .courses .course-cnt .price-and-seats {
	background:#f7f7f7;
	padding:15px;
	margin:20px -20px 0;
	border-bottom:solid 2px #860e42;
}
.inner-wrapper .courses.new::before {
 background-color: #002e48;
 color: #fff;
 content: "NEW";
 font-size: 12px;
 height: 45px;
 padding: 25px 5px 5px;
 position: absolute;
 right: 10px;
 text-align: center;
 top: 0;
 width: 40px;
 z-index: 2;
}
.inner-wrapper .courses.new::after {
 border-color: #002e48 transparent transparent;
 border-style: solid;
 border-width: 12px 20px 0;
 content: "";
 height: 0;
 position: absolute;
 right: 10px;
 top: 45px;
 width: 0;
 z-index: 2;
}
.course-pagination {
	text-align:center;
}
.inner-wrapper .pagination {
	margin:0;
}
.inner-wrapper .pagination li {
	display:inline-block;
	margin:0 5px 0 0;
}
.inner-wrapper .pagination li a {
	padding:10px 16px;
}
.inner-wrapper .pagination > li > a:focus, .inner-wrapper .pagination > li > a:hover, .inner-wrapper .pagination > li > span:focus, .inner-wrapper .pagination > li > span:hover, .inner-wrapper .course-pagination a:hover span {
	background-color: #860e42;
	color:#fff;
}
/*
================================================
25. Course Details
================================================
*/
.inner-wrapper .courses.course-details {
	box-shadow: none;
}
.inner-wrapper .courses.course-details .course-cnt {
	padding:0 0 0 20px;
}
.inner-wrapper .courses.course-details .course-cnt p {
	padding:0 0 12px 0;
}
.inner-wrapper .courses.course-details .course-cnt ul {
	border-top:1px solid #c2c2c2;
	border-bottom:1px solid #c2c2c2;
	padding:10px 0;
}
.inner-wrapper .courses.course-details .course-cnt ul li {
	border: medium none;
	border-right:1px solid #c2c2c2;
	border-radius: 0;
	margin: 0;
	padding: 0 12px;
	vertical-align:middle;
}
.inner-wrapper .courses.course-details .course-cnt ul li strong {
	display:block;
	color:#860e42;
}
.inner-wrapper .courses.course-details .course-cnt ul li:last-child {
	border:none;
}
.inner-wrapper .courses.course-details .course-cnt ul li a {
	background:#002e48;
	padding:10px 30px;
	color:#fff;
}
.progress {
	height: 35px;
}
.progress .skill {
	line-height: 35px;
	padding: 0;
	margin: 0 0 0 20px;
	text-transform: uppercase;
	color:#fff;
}
.progress .skill .val {
	float: right;
	font-style: normal;
	margin: 0 20px 0 0;
}
.progress-bar {
	text-align: left;
	transition-duration: 3s;
}
.inner-wrapper .download-services {
	margin:0;
	padding: 60px 0;
	width: 100%;
	float: left;
	clear: both;
	background-image: url(../images/cta-bg.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: 9;
	position: relative;
	text-align: center;
}
.inner-wrapper .download-services::before {
 background: #000 none repeat scroll 0 0;
 bottom: 0;
 content: "";
 left: 0;
 opacity: 0.8;
 position: absolute;
 right: 0;
 top: 0;
 z-index: -1;
}
.inner-wrapper .download-services h3 {
	color:#fff;
	font-size:24px;
	margin:0 0 20px 0;
}
.inner-wrapper .download-services a {
	background:#f5f5f5;
	color:#333;
	padding:5px 15px;
}
/*
================================================
26. News
================================================
*/
.inner-wrapper .news-info {
	margin:0 0 30px 0;
	background:#f7f7f7;
	border-bottom: 2px solid #860e42;
}
.inner-wrapper .news-info:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.inner-wrapper .news-info .news-thumb {
	margin:0 0 20px 0;
}
.inner-wrapper .news-info .news-thumb img {
	-webkit-transition:350ms ease all;
	transition:350ms ease all;
	width:100%;
	height:auto;
}
.inner-wrapper .news-info:hover .news-thumb img {
	-webkit-filter:grayscale(100%);
	filter:grayscale(100%);
}
.inner-wrapper .news-info .news-cnt {
	padding:0 20px 20px;
}
.inner-wrapper .news-info h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 15px;
	text-transform: uppercase;
}
.inner-wrapper .news-info:hover h3 {
	color:#860e42;
}
.inner-wrapper .news-info .news-tags {
	width:100%;
	margin:0 0 10px 0;
	float:left;
}
.inner-wrapper .news-info ul.time {
	margin:12px 0 0 0;
}
.inner-wrapper .news-info ul {
	display:inline-block;
}
.inner-wrapper .news-info ul.tags li {
	border: 1px solid #c2c2c2;
	border-radius: 5px;
	margin: 0 10px 0 0;
	padding: 5px 10px;
}
.inner-wrapper .news-info ul.tags li:hover {
	background:#002e48;
}
.inner-wrapper .news-info ul.tags li:hover a {
	color:#fff;
}
.inner-wrapper .news-info li {
	display: inline-block;
	list-style: outside none none;
	margin:0 6px 0 0;
}
.inner-wrapper .news-info li i {
	padding:0 3px 0 0;
}
.news-pagination {
	text-align:center;
}
.inner-wrapper .news-pagination a:hover span {
	color:#fff;
}
.inner-wrapper .news h2::before {
 background: #860e42 none repeat scroll 0 0;
 bottom: 0;
 content: "";
 display: inline-block;
 height: 1px;
 position: absolute;
 width: 80px;
}
.inner-wrapper .news h2::after {
 background:none;
}
.inner-wrapper .news h2 {
	/*border-bottom: 1px solid #ccc;*/
	color: #860e42;
	font-size: 25px;
	font-weight: 600;
	margin: 0 0 20px;
	padding: 0;
	position: relative;
	text-align:left;
}
.inner-wrapper .news img {
	width:100%;
}
.inner-wrapper .news .meta {
	font-size:12px;
}
.inner-wrapper .news h3 {
	font-size:14px;
	color: #002e48;;
	margin:0 0 5px 0;
}
.inner-wrapper .sidebar #custom-search-input {
	padding: 3px;
	border: solid 1px #E4E4E4;
	border-radius: 6px;
	background-color: #fff;
	margin:0 15px 24px 15px;
}
.inner-wrapper .sidebar #custom-search-input input {
	border: 0;
	box-shadow: none;
}
.inner-wrapper .sidebar #custom-search-input button {
	margin: 2px 0 0 0;
	background: none;
	box-shadow: none;
	border: 0;
	color: #fff;
	padding: 0 8px 0 10px;
}
.inner-wrapper .sidebar #custom-search-input span.input-group-btn {
	background:#002e48;
	border-radius: 0 6px 6px 0;
}
.inner-wrapper .sidebar #custom-search-input .glyphicon-search {
	font-size: 23px;
}
.inner-wrapper .news .latest-blogs {
	margin:0 0 10px 0;
}
.inner-wrapper .news .latest-blog {
	border-bottom: 1px solid #c1c1c1;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.inner-wrapper .news .latest-blog:last-child {
	border:none;
}
.inner-wrapper .news .meta-info {
	padding:0;
	margin:5px 0 0 0;
}
.inner-wrapper .news .meta-info h3 a {
	color:#002e48;
}
.inner-wrapper .sidebar .meta-info h3 a:hover {
	color:#333;
}
.inner-wrapper .sidebar .unordered-list {
	float:left;
	width:100%;
}
.inner-wrapper .sidebar .unordered-list ul {
	margin:0 0 30px 0;
}
.inner-wrapper .sidebar .unordered-list ul li a:hover {
	color:#333;
}
.inner-wrapper .news .unordered-list ul li::before {
 content: "\f105";
}
.inner-wrapper .sidebar .unordered-list ul li {
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	transition-duration: 0.3s;
	transition-property: transform;
    list-style-position: inside;
    text-indent: -1em;
    padding-left: 1em;
    
}
.inner-wrapper .sidebar .unordered-list ul li a:hover, .inner-wrapper .sidebar .unordered-list ul li a:focus {
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	-ms-transform: translateX(10px);
	-o-transform: translateX(10px);
	transform: translateX(10px);
}
.inner-wrapper .sidebar .tags {
	float:left;
	width:100%;
}
.inner-wrapper .sidebar .tags li {
	display:inline-block;
	list-style:none;
	background:#f5f5f5;
	padding:5px 12px;
	margin:0 5px 5px 0;
}
.inner-wrapper .sidebar .tags li:hover {
	background:#002e48;
}
.inner-wrapper .sidebar .tags li:hover a {
	color:#fff;
}
.inner-wrapper .sidebar .download-services {
	margin:5px 0 30px;
	padding: 60px 0;
	width: 100%;
	float: left;
	clear: both;
	background-image: url(../images/testimonials-bg.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: 9;
	position: relative;
	text-align: center;
}
.inner-wrapper .sidebar .download-services::before {
 background: #000 none repeat scroll 0 0;
 bottom: 0;
 content: "";
 left: 0;
 opacity: 0.8;
 position: absolute;
 right: 0;
 top: 0;
 z-index: -1;
}
.inner-wrapper .sidebar .download-services h3 {
	color:#fff;
	font-size:24px;
	margin:0 0 20px 0;
}
.inner-wrapper .sidebar .download-services a {
	background:#f5f5f5;
	color:#333;
	padding:5px 15px;
}
.inner-wrapper .grid-news .news-info .news-cnt ul.time {
	margin:0 0 10px 0;
}
/*News Post*/
.inner-wrapper .news-post .news-info {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: medium none;
}
.inner-wrapper .news-post .news-info:hover {
	box-shadow:none;
}
.inner-wrapper .news-post .news-info h3 {
	font-size: 24px;
}
.inner-wrapper .news-post .news-info .news-cnt {
	padding:0 0 20px;
}
.inner-wrapper .news-post .comments {
	margin: 0 0 30px;
}
.news-post .btn:hover {
	background: #002e48 none repeat scroll 0 0;
	color: #fff;
}
/*
================================================
27. About us Page
================================================
*/
.about-edu h2 {
	text-align:left;
	margin-bottom:30px;
}
.about-edu h2::after {
margin:14px 0 0;
}
.about-edu p {
	margin:0 0 15px 0;
}
.about-edu .unordered-list {
	margin:20px 0 0 0;
}
.about-edu img {
	width:100%;
	height:auto;
}
.about-edu .about-callouts {
	margin:60px 0 0 0;
	float:left;
	width:100%;
}
.about-edu .about-callout {
	text-align:center;
	padding:60px;
	background:#f7f7f7;
	border: 1px solid #f7f7f7;
}
.about-edu .about-callout.white {
	background:#fff;
}
.about-edu .about-callout h4 {
	color:#860e42;
}
.about-edu .no-space-right {
	padding-right:0;
}
.about-edu .no-space-left {
	padding-left:0;
}
/*
================================================
28. Comming Soon
================================================
*/
body.comming-soon {
	background-image:url(../images/comming-soon-bg.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width:100%;
	height:100%;
	text-align:center;
}
.comming-soon .logo-bar {
	text-align:center;
}
.comming-soon .cmg-bg {
	background:#fff;
	margin:80px 0;
	padding:40px 20px;
	border:solid 3px #860e42;
	float:left;
	width:100%;
}
.comming-soon h3 {
	font-size:30px;
	color:#860e42;
	font-weight:600;
}
.comming-soon p {
	font-size:18px;
	margin:0 0 10px 0;
}
.comming-soon ul li {
	display:inline-block;
	list-style:none;
	font-size:20px;
	margin:0 10px 0 0;
	padding:0;
}
.comming-soon ul li span {
	display:inline-block;
	color:#860e42;
	font-size:50px;
}
.comming-soon .social-buttons {
	margin:30px 0 30px 0;
}
.comming-soon .social-buttons li i {
	font-size: 0px;
	width: 40px;
	height: 40px;
	line-height:40px;
	padding:0;
	border-radius: 50%;
	text-align: center;
	position: relative;
	z-index: 1;
	color: #fff;
	background:#406585;
	-webkit-transition: background 0.2s, color 0.2s;
	-moz-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}
.comming-soon .social-buttons li i::before {
 font-size: 14px;
 display: block;
 -webkit-font-smoothing: antialiased;
}
.comming-soon .social-buttons li i:hover {
	background:#860e42;
	color:#fff;
}
.comming-soon .social-buttons li i:hover:before {
	-webkit-animation: toRightFromLeft 0.2s forwards;
	-moz-animation: toRightFromLeft 0.2s forwards;
	animation: toRightFromLeft 0.2s forwards;
}
.comming-soon .subscirbe {
	border-top:solid 1px #ccc;
}
.comming-soon .subscirbe p.sub {
	margin:0;
}
.count-down .countdown-row {
	width: 100%;
}
.count-down .countdown-row.countdown-show4 .countdown-section {
	width: 25%;
}
.count-down .countdown-row.countdown-show3 .countdown-section {
	width: 33%;
}
.count-down .countdown-row.countdown-show2 .countdown-section {
	width: 50%;
}
.count-down .countdown-row.countdown-show1 .countdown-section {
	width: 100%;
}
.count-down .countdown-row .countdown-section {
	display: inline-block;
}
.count-down .countdown-row .countdown-amount {
	font-size: 60px;
	font-weight: bold;
	display: block;
	margin-bottom: -20px;
	color:#860e42;
}
.count-down .countdown-row .countdown-period {
	font-size: 18px;
}
/*
================================================
29. 404 Page
================================================
*/
.not-found {
	text-align:center;
}
.not-found h1 {
	color:#e5e5e5;
	font-size:100px;
	font-weight:700;
	font-family:"Open Sans", sans-serif;
}
.not-found h2 {
	color:#444444;
}
.not-found a {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	padding:12px 30px;
	margin:10px 0 0 0;
	font-size:14px;
	color:#002e48;
	border:solid 1px #002e48;
	text-transform:uppercase;
	font-weight:600;
}
.not-found a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #860e42;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.not-found a:hover, .not-found a:focus, .not-found a:active {
	color: #fff;
}
.not-found a:hover:before, .not-found a:focus:before, .not-founda:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/*
================================================
30. Gallery Page
================================================
*/
.gal-container {
	padding: 12px;
}
.gal-item {
	overflow: hidden;
	padding: 3px;
	position:relative;
}
.gal-item::before {
 background: rgba(42, 47, 80, 0.8) none repeat scroll 0 0;
 bottom: -20px;
 content: "";
 left: -20px;
 opacity: 0;
 position: absolute;
 right: -20px;
 top: -20px;
 transition: all 0.35s ease-out 0.2s;
 visibility: hidden;
 z-index: 1;
}
.gal-item:hover::before {
 opacity: 1;
 transition-delay: 0s;
 visibility: visible;
}
.gal-item .caption {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	padding-left: 15px;
	padding-right: 15px;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(-10%);
	transition: all 0.35s ease-out 0s;
	visibility: hidden;
	z-index: 2;
	text-align:center;
	color: #d3d3d3;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gal-item:hover .caption, .gal-item:hover .caption {
	opacity: 1;
	transform: translateY(0px);
	visibility: visible;
}
.gal-item .caption::before, .gal-item .caption::before {
 bottom: 10px;
 content: "";
 left: 10px;
 position: absolute;
 right: 10px;
 top: 10px;
 transition: all 0.35s ease-out 0s;
}
.gal-item:hover .caption::before, .gal-item:hover .caption::before {
 bottom: 20px;
 left: 20px;
 right: 20px;
 top: 20px;
}
.gal-item .box {
	height: 350px;
	overflow: hidden;
}
.box img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
.gal-item a:focus {
	outline: none;
}
.gal-item a i {
	color:#fff;
	font-size:30px;
}
.modal-open .gal-container .modal {
	background-color: rgba(0, 0, 0, 0.4);
}
.modal-open .gal-item .modal-body {
	padding: 0px;
}
.modal-open .gal-item button.close {
	position: absolute;
	width: 25px;
	height: 25px;
	background-color: #000;
	opacity: 1;
	color: #fff;
	z-index: 999;
	right: -12px;
	top: -12px;
	border-radius: 50%;
	font-size: 15px;
	border: 2px solid #fff;
	line-height: 25px;
	-webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
}
.modal-open .gal-item button.close:focus {
	outline: none;
}
.modal-open .gal-item button.close span {
	position: relative;
	top: -3px;
	font-weight: lighter;
	text-shadow: none;
}
.gal-container .modal-dialogue {
	width: 80%;
}
.gal-container .description {
	position: relative;
	height: 40px;
	top: -40px;
	padding: 10px 25px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	text-align: left;
}
.gal-container .description h4 {
	margin: 0px;
	font-size: 15px;
	font-weight: 300;
	line-height: 20px;
}
.gal-container .modal.fade .modal-dialog {
	-webkit-transform: scale(0.1);
	-moz-transform: scale(0.1);
	-ms-transform: scale(0.1);
	transform: scale(0.1);
	top: 100px;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.gal-container .modal.fade.in .modal-dialog {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transform: translate3d(0, -100px, 0);
	transform: translate3d(0, -100px, 0);
	opacity: 1;
}
/* Full Width Gallery  */
.gal-container.full-width {
	padding: 0;
	float:left;
}
.full-width .gal-item {
	padding: 0;
}
/* Masonry Gallery  */
.gal-container.masonry .gal-item .box {
	height:auto;
}
/*
================================================
31. Contact us page
================================================
*/
.inner-wrapper.contact-wrapper {
	padding:30px 0 0;
}
.contact-address {
	margin:60px 0 0 0;
	float:left;
	width:100%;
}
.contact-address .contact {
	text-align:center;
	padding:40px 30px;
	background:#f7f7f7;
	border: 1px solid #f7f7f7;
	min-height:234px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.contact-address .contact.white {
	background:#fff;
}
.contact-address .contact h4 {
	color:#860e42;
}
.contact-address .contact i {
	font-size:32px;
	color:#860e42;
	margin:0 0 20px 0;
}
.contact-address .contact span {
	text-transform:uppercase;
	font-size:12px;
}
.contact-address .no-space-right {
	padding-right:0;
}
.contact-address .no-space-left {
	padding-left:0;
}
.contact-address .form::before {
 background: #000;
 bottom: 0;
 content: "";
 left: 0;
 opacity: 0.8;
 position: absolute;
 right: 0;
 top: 0;
 z-index: -1;
}
.contact-address .form {
	background-image: url(../images/cta-bg.jpg);
	background-position: center center;
	background-size: cover;
	float: left;
	padding:30px;
	position: relative;
	width: 100%;
	z-index: 2;
	text-align:center;
}
div#google-map {
	width: 100%;
	margin:40px 0 0 0;
}
div#google-map iframe {
	height: 300px;
	width: 100%;
	border:none;
}
/*
================================================
32 .Footer
================================================
*/
footer {
	background: #860e42;
	margin: 0;
	padding: 20px 0 0px;
	width: 100%;
	float: left;
}
footer img {
	/*width:100%;*/
	height:auto;
}
footer .subscirbe-form {
	padding-right: 0
}
footer h2 {
	border-bottom: 1px solid #ccc;
	padding:0 0 10px 0;
	margin:0 0 20px 0;
	position:relative;
	font-size:18px;
	color:#002e48;
	font-weight:600;
}
footer h2::before {
 background: #002e48;
 bottom: 0;
 content: "";
 display: inline-block;
 height: 1px;
 position: absolute;
 width: 80px;
}
footer .contactus {
	margin-right:40px;
	margin-top: 35px;
}
footer .contactus ul li {
	list-style:none;
	padding:0 0 15px 0;
}
footer .contactus ul li i {
	font-size:18px;
	color:#002e48;
	padding:0 15px 0 0;
}
footer .contactus ul li a {
	color:#2d2e2e;
}
footer .contactus ul li a:hover {
	color:#002e48;
}
footer .subscirbe .sub {
	color: #333;
	font-size: 15px;
	padding: 0;
	font-family: Raleway, sans-serif;
	text-align: left;
}
footer .subscirbe .sub span {
	color: #002e48;
	font-weight: 600
}
footer .subscirbe .form input.form-control {
	background: #2d2e2e643;
	border: 1px solid #000;
	border-radius: 4px 0 0 4px;
	color: #666!important;
	font-family: Lato, sans-serif;
	font-size: 15px;
	font-weight: 400;
	height: 36px;
	line-height: 36px;
	margin: 0 0 17px;
	padding: 0 0 0 3%;
	text-align: left;
	width: 68%;
	float: left
}
footer .subscirbe .form input.bttn {
	background: #002e48;
	border: 1px solid #002e48;
	border-radius: 0 4px 4px 0;
	color: #fff;
	float: left;
	font-size: 16px;
	margin: 0 0 0 -2px;
	padding: 5px 10px 4px;
	text-align: center;
	width: 30%;
	cursor: pointer;
}
div.footer-wrapper {
	background: #860e42;
	padding: 25px 0;
	width: 100%;
	float: left;
	position:relative;
}
div.footer-wrapper p {
	color: #ccc;
	text-align: center;
	padding: 0;
	margin:0;
}
/*
================================================
33. Media Quries 
================================================
 */
@media (min-width: 768px) {

.gal-container .modal-dialog {
 width: 55%;
 margin: 50 auto;
}
}
@media (max-width: 768px) {
    
#gallerynav { display: none; }
#galleryselect { display: inline-block; }
    
.gal-container .modal-content {
height: 250px;
}

#bannerid {
	height: 100px;
}

}
@media (min-width: 768px) and (max-width: 991px) {

#gallerynav { display: none; }
#galleryselect { display: inline-block; }    
    
.logo-bar img {
height: auto;
width: 165px;
margin: 0;
}
    
.navbar-nav > li > a {
padding: 12px;
}

.navbar-default .navbar-nav > li > a {
font-size:12px;
}
.navbar-default .navbar-nav > li.mega-menu ul.dropdown-menu li a {
font-size:12px;
}
.abt-univ-des {
margin-bottom: 30px;
}
.hero {
left:35%;
}
.satisfied-wrapper .counter p {
margin: 0 0 40px;
}
footer .contactus {
margin-right:0;
}
.grid-wrapper [class*="col-"] p {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
}
.inner-wrapper .courses .course-cnt .area-period li {
margin: 0 5px 0 0;
padding: 5px 8px;
font-size:13px;
}
.inner-wrapper .courses.course-details .course-cnt ul li:last-child {
display: block;
margin: 33px 0 14px;
text-align: center;
}
.inner-wrapper .download-services h3 {
font-size:18px;
}
.inner-wrapper .news-info ul.time {
margin:0 0 20px 0;
}
.inner-wrapper .news-info ul.tags {
float:left !important;
}
.about-edu .no-space-right {
padding:0;
}
.about-edu .no-space-left {
padding:0;
}
.contact-address .no-space-right {
padding:0;
}
.contact-address .no-space-left {
padding:0;
}
.count-down .countdown-row .countdown-amount {
font-size: 42px;
margin-bottom: -10px;
}
.count-down .countdown-row .countdown-period {
font-size: 18px;
}
}
@media (max-width: 767px) {
.logo-bar img {
height: auto;
width: 165px;
margin: 0;
}
.navigation {
background-color: #fff;
padding: 0;
}
.navbar {
margin: 0;
}
.navbar-brand {
padding: 20px 0 20px 15px;
display:block;
}
button.navbar-toggle {
display: block;
margin: 26px 15px 0 0;
}
.navbar-nav > li {
padding: 0;
}
.navbar-nav > li > a {
padding: 0 0 10px;
display: inline-block;
}
header .navbar-default li.open > ul.dropdown-menu {
display: block !important;
margin: 0 0 15px;
background: #002e48;
}
.navbar-default .navbar-nav > li.mega-menu div.row div {
display: inherit;
}
.navbar-default .navbar-nav > li.mega-menu ul.dropdown-menu {
margin: 0 0 15px;
}
header .navbar-default .navbar-nav li.open > ul.dropdown-menu > li > a {
position: relative;
text-transform: none;
color: #fff;
padding: 7px 15px;
}
header .navbar-default .navbar-nav li.open > ul.dropdown-menu > li > a:hover {
background-color: #002e48 !important;
color: #fff !important;
}
header .navbar-collapse, header.affix .navbar-collapse {
max-height: 300px;
}
.navbar-collapse {
background-color: #860e42;
float: none;
padding-bottom: 5px;
padding-top: 15px;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
background-color: inherit;
}
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
background-color: inherit;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
background-color: inherit;
}
.navbar-nav {
margin: 0;
width: 100%;
}
.navbar-default .navbar-nav li a:hover ul.dropdown-menu {
display: none !important;
}
.callouts-wrapper h2::after {
left: 40%;
}
.about-us img {
margin-top:30px;
}
.about-us h2 {
font-size:24px;
}
.satisfied-wrapper {
padding: 60px 0 20px;
}
.satisfied-wrapper .counter p {
margin: 0 0 40px;
}
.hero {
display: none;
}
.team-wrapper-inner {
margin: 0;
}
.banner-wrapper .fade-carousel {
height: 200px;
}
.banner-wrapper .fade-carousel .carousel-inner .item {
height: 200px;
}
.banner-wrapper .fade-carousel .slides .slide-1, .banner-wrapper .fade-carousel .slides .slide-2, .banner-wrapper .fade-carousel .slides .slide-3, .banner-wrapper .fade-carousel .slides .slide-4, .banner-wrapper .fade-carousel .slides .slide-5, .banner-wrapper .fade-carousel .slides .slide-6, .banner-wrapper .fade-carousel .slides .slide-7, .banner-wrapper .fade-carousel .slides .slide-8, .banner-wrapper .fade-carousel .slides .slide-9 {
height: 100%;
}
.callouts {
text-align: center;
}
.callouts i {
margin: 0 0 10px;
}
.signup-wrapper h2 {
font-size: 25px;
}
footer .footer-nav ul {
width: 100%;
margin-left: 0;
}
footer .subscirbe .form input.form-control {
width: 60%;
}
footer .subscirbe .form input.bttn {
width: 38%;
}
footer img {
margin-bottom:30px;
}
footer .contactus {
margin-bottom:15px;
margin-right:0;
}
.inner-banner-heading {
width: 100%;
}
.abt-univ-des {
margin-bottom: 30px;
}
div#google-map iframe {
height: auto;
}
.grid-wrapper [class*="col-"] {
padding-left: 5px;
padding-right: 5px;
}
.grid-wrappe [class*="col-"] {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.classic-vertical-tab-panel .tab-content {
padding-top: 40px;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li {
margin-right:15px;
}
.classic-tab-panel .tabbable-line > .nav-tabs > li > a {
font-size:14px;
font-weight:600;
padding: 0 6px 5px;
}
.btn-shapes .btn-primary {
 min-width: 180px;
}
.btn-shapes .btn-primary:last-child {
margin-right: 15px;
}
.button-tab-panel .tabbable-line > .nav-tabs > li {
margin-right:6px;
}
.button-tab-panel .nav > li > a {
padding:10px 12px;
font-size:14px;
}
.services .callouts h2 {
text-align: center;
margin: 0 0 5px 0;
}
.affix .top-wrapper {
margin-top: -42px;
}
.top-wrapper .pull-right {
float:none !important;
text-align:center;
}
.inner-wrapper-main.image-styles img {
margin-bottom:20px;
}
.course-pagination .pagination li a {
padding: 4px 8px;
}
.inner-wrapper .courses.course-details .course-cnt ul {
padding:0;
}
.inner-wrapper .courses.course-details .course-cnt ul li {
display:inline-block;
width:100%;
text-align:center;
border-right:none;
border-bottom:solid 1px #c2c2c2;
margin:0;
padding:10px 0;
}
.inner-wrapper .courses.course-details .course-cnt ul li:last-child {
 padding: 20px 0;
}
.inner-wrapper .courses.course-details .course-cnt {
padding:20px 0 0 0;
}
.inner-wrapper .news-info ul.tags li {
 margin: 0 4px 0 0;
 padding: 5px 8px;
}
.inner-wrapper .news-info ul.time {
 margin:0 0 20px 0;
}
.inner-wrapper .news-info ul.tags {
float:left !important;
}
.inner-wrapper-main.image-styles.img-center img {
width:100%;
}
.lists h2 {
margin:0 0 30px 0;
}
.lists .unordered-list {
 margin: 0 0 50px;
}
.inner-wrapper .news .meta-info {
padding: 5px 15px;
}
.inner-wrapper .news .latest-blog {
border:none;
}
.inner-wrapper .sidebar #custom-search-input {
margin-top:15px;
}
.about-edu .no-space-right {
padding:0;
}
.about-edu .no-space-left {
padding:0;
}
.comming-soon ul li {
margin: 0 5px 0 0;
}
.contact-address .no-space-right {
padding:0;
}
.contact-address .no-space-left {
padding:0;
}
.count-down .countdown-row .countdown-amount {
font-size: 32px;
margin-bottom: -10px;
}
.count-down .countdown-row .countdown-period {
font-size: 12px;
}
}


/* -- main-content */

.main-content {
	width: 100%;
	float: left;
	/*margin-bottom: 55px;*/
	border: 0px solid #f00;
}
.main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5 {
	font-weight: bold;
	color: #333;
	/*text-transform: uppercase;*/
}
.main-content-block-typography h1, .main-content-block-typography h2, .main-content-block-typography h3, .main-content-block-typography h4, .main-content-block-typography h5 {
	width: 100% !important;
	float: left;
	margin-bottom: 40px !important;
}
.main-content-block {
	margin-top: -15px;
	width: 100%;
	float: left;
}
.main-content-block-tabs h2 {
	margin-bottom: 40px !important;
}
.main-content-block-toggle h2 {
	margin-bottom: 0px !important;
}
.main-content-block > .magnis-toggle {
	margin-top: 0px;
}
.main-content-block-entry {
	width: 100%;
	float: left;
}
.main-content-2 {
	margin-bottom: 0px;
}
.main-content h2, .main-content-block h2 {
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	/*text-transform: uppercase;*/
	color: #333;
	margin-bottom: 20px;
	width: auto;
	float: left;
}
.main-content h3 {
	font-size: 18px;
	line-height: 18px;
	font-weight: bold;
	text-transform: uppercase;
	color: #333;
	margin-bottom: 20px;
	width: auto;
	float: left;
}
.main-content h2 span {
}
.main-content p, .main-content-block p, .main-content-block ul  {
	margin-top: 0px;
	list-style:inherit;
	/*float: left;
	text-align:justify;*/
}
.main-content-block ul li {
	line-height: 31px;
	list-style:inherit;
}
.main-content blockquote {
	width: auto;
	float: left;
	font-style: italic;
	margin: 0px;
	margin-bottom: 20px;
	margin-top: 40px;
	-moz-box-sizing: border-box;
	color: #333;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 25px;
	border-left-style: solid;
	border-left-width: 1px;
	margin-left: 55px;
}
.main-content small {
	font-size: 12px;
	line-height: 18px;
	margin-top: 20px;
	float: left;
	width: 100%;
	color: #333;
}

.gbox{
	width:100%;
	height:280px;
	border:1px #838383 solid;
	padding: 10px;
	margin: 2px;
	background-color: #838383;
	border-radius:5px;
	text-align: left;
}


.vission_box {margin:25px 0;}
.vission_box img {width:100%; margin:15px 0;}

.vission_box h3 {background:#002e48; padding:10px 15px; color:#fff; border-radius:5px; font-weight:700;}
.vission_box h4 {margin-top:15px; font-style:italic; font-weight:bold;}

.vission_box li {list-style:disc; margin:10px 22px;}
.vission_box ul {margin:30px 0;}

.project-item {
    height: auto;
    position: relative;
    padding: 0px;
    margin: 0px;
    float: left;
    overflow: hidden;
	width:100%;
}

.vission_box table {margin:30px 0;}

.vission_box table th {background:#002e48; color:#fff;}


.list_new li {list-style: disc!important; margin-left: 15px;}



.content {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 99%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 1;
}

.content-image{
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h4{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details p{
  color: #fff;
  font-size: 0.8em;
}

.blink{
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}

  @-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}

.text-red {
  color: red;
}
.blink-hard {
  animation: blinker 1s step-end infinite;
}
.blink-soft {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.blink-btn{
	border: none;
-webkit-animation: glowing 1000ms infinite;
  -moz-animation: glowing 1000ms infinite;
  -o-animation: glowing 1000ms infinite;
  animation: glowing 1000ms infinite;
}
.blink-btn:hover{color: #fff;}

@-webkit-keyframes glowing {
  0% { background-color: #1b145b;}
  50% { background-color: #e31f25; color: #fff;}
  100% { background-color: #1b145b;}
}

@-moz-keyframes glowing {
  0% { background-color: #fff;}
  50% { background-color: #e31f25; color: #fff;}
  100% { background-color: #1b145b;}
}

@-o-keyframes glowing {
  0% { background-color: #1b145b;}
  50% { background-color: #e31f25; color: #fff;}
  100% { background-color: #1b145b;}
}

@keyframes glowing {
  0% { background-color: #1b145b;}
  50% { background-color: #e31f25; color: #fff;}
  100% { background-color: #1b145b;}
}


/* sudhir contact section reach us */
table.sudhir tbody tr.table-active td{ border: 0px !important; }
.text_alig{ text-align: left; }

/* Satya  */

.left-button-section.nav-tabs {
   border-radius: 12px;
   /* box-shadow: 0px 0px 10px 0px #ccc; */
}

.left-button-section a {background-color: #002e48; text-align: center!important;}

.left-button-section.nav-tabs a {
   border-radius: 12px 12px;
   width: 100%;
   color: #fff;
   padding: 10px;
   text-align: left;
   font-weight: 600;
   font-size: 15px;
   margin: 1px 6px!important;
}

/*.left-button-section.nav-tabs a:hover {
   background: #002e48;
   text-shadow: 1px 2px grey;
}*/

.new_img {text-align: center!important;}


.new_img img {height: 150px; width: 150px;}
.new_img strong {text-align: center;}

.reach {min-height: 460px; margin: 0px!important;}

.vission_box table.chnge-space{ margin: 10px 0 30px 0;} 
h4.chnge-space { text-align: center;  } 

.my_row {width: 90%!important; margin: 0 auto;}

.col-meh{ color: #002e48 !important; font-weight: bold;  }
.col-blk{ color: #000000 !important; display: block; padding-bottom: 10px;  }

@media only screen and (min-width: 1501px) and (max-width: 1920px) {
.pattern-bg img {width: 100%!important;}

}
.footer_logo {width: 65%!important; margin: 0 auto;}


@media only screen and (min-width: 320px) and (max-width: 425px) {
	.recent-l-img img {min-height: 225px; max-height: 225px;}

	.alliance_class {margin-top: 100px!important;}
 }

 .zoom {
  
  
  transition: transform .2s;
  margin: 0 auto;
}

.side_vertical_barlink {
    position: absolute;
    padding: 10px;
    width: 388px;
    background: rgb(112, 26, 34);
    /* background: rgba(255, 174, 0, 0.9); */
    right: 0px;
    top: 250px;
    z-index: 999!important;
    font-family: verdana;
    font-size: 12px;
    border-radius: 20px 0px 0 25px;
}
.Investiture_img {width: 100%; margin: 15px 0; border-radius: 10px; box-shadow: 0px 0px 10px 0px #66666670;}  
.zoom:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1); }

  .testimonials-info{margin-top: 30px;}
  	.testimonials-info .item{background: none;}
  .testimonials-info .carousel-inner h4{color: #1b135b; font-weight: 700;}
  .testimonials-info .carousel-inner h3{font-size: 18px; font-weight: 600; margin-top: 10px;}
  .testimonials-info .carousel-inner h3 span {width: 100%; display: inline-block; font-size: 14px;}

  @media only screen and (min-width: 992px) {
  	.testimonials-info .item{width: 60%;}
  	.left-button-section.nav-tabs {display: flex;}
  }



  .facilities{margin-top: 30px;}
  	.facilities .item{background: none;}
  .facilities .carousel-inner h4{color: #1b135b; font-weight: 700;}
  .facilities .carousel-inner h3{font-size: 18px; font-weight: 600; margin-top: 10px;}
  .facilities .carousel-inner h3 span {width: 100%; display: inline-block; font-size: 14px;}

  @media only screen and (min-width: 992px) {
  	.facilities .item{width: 60%;}
  	.left-button-section.nav-tabs {display: flex;}
  }


  .achievements{margin-top: 30px;}
  	.achievements .item{background: none;}
  .achievements .carousel-inner h4{color: #1b135b; font-weight: 700;}
  .achievements .carousel-inner h3{font-size: 18px; font-weight: 600; margin-top: 10px;}
  .achievements .carousel-inner h3 span {width: 100%; display: inline-block; font-size: 14px;}

  @media only screen and (min-width: 992px) {
  	.achievements .item{width: 60%;}
  	.left-button-section.nav-tabs {display: flex;}
  }




  @media only screen and (max-width: 767px) {
  	.top-wrapper ul li a{font-size: 13px;}
  	.side_vertical_barlink{width: 92%!important; position: relative!important; top: auto!important; margin: 0!important; border-radius: 25px 25px 25px 25px; right: -15px; z-index: 9!important;}
  	.side_vertical_barlink span{font-size: 13px!important; top: 0!important;}
  }







@media screen and (max-width: 767px) and (min-width: 320px) { 
.sudhir-b-co {min-height: 100%!important; max-height: 100%!important;}
.inner-wrapper .news img {/*width: 25%!important;*/}
.enquiry_tab {text-align: center!important;}
}


.top-wrapper ul.header-social-icons li.a-right,
.top-wrapper ul.header-social-icons li.a-right,
.top-wrapper ul.header-social-icons li.a-right  { display: none; }


@media screen and (max-width: 767px) and (min-width: 320px) { 

.top-wrapper ul.header-social-icons li { margin: 0 0 0 1px !important; }
.top-wrapper ul.header-social-icons li.right-h { display: none; }
.top-wrapper ul.header-social-icons li.a-right { float: right; display: inline-block;}

.top-wrapper ul.header-social-icons li {margin: 0 0px 0 1px !important;}
.top-wrapper ul.header-social-icons li.right-h { display: none; }
.top-wrapper ul.header-social-icons li.a-right {float: right;display: flex;padding: 0px 0px 10px 0px;margin: -3px 5px 0px 0px !important;}


.top-wrapper ul.header-social-icons li.a-right i { background: #fff; }
.top-wrapper ul.header-social-icons li.a-right i.fa.fa-facebook { color: blue; }
.top-wrapper ul.header-social-icons li.a-right i.fa.fa-youtube-play { color: #002e48; }
.top-wrapper ul.header-social-icons li.a-right i.fa.fa-instagram { color: #002e48; }


.top-wrapper ul.header-social-icons li.a-right .instagram { margin: -3px 0px 0px 0px !important; }
}

.faculty_new {text-align: center;}
.faculty_new h1 {font-weight: 700; margin:20px 0;}
.faculty_new p {
	text-align: justify;
}

.faculty_new  img {
	margin: 20px 0;
}
.modal.in .modal-dialog {
	margin-top: 55px!important;
}

.modal-dialog {
	width: 800px!important;
}


.study-area {
    background-image: url(../images/custom/sports.jpeg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    position: relative;
    z-index: 1;
}
.pt-70 {
    padding-top: 70px;
}
.pb-5 {
    padding-bottom: 3rem!important;
}
.study-area .section-title {
    margin-left: 0;
    text-align: left;
}
.section-title.white-title h2 {
    color: var(--white-color);
}
.section-title h2 {
    font-size: 45px;
    margin-bottom: 15px;
    position: relative;
}
.section-title.white-title p {
    color: var(--white-color);
}
.justify-content-center {
    justify-content: center!important;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
}
.section-padding {
    padding: 50px 0;
    position: relative;
    float: left;
    width: 100%;
}
.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    border: 8px solid #860e42;
}
.portfolio-sin-item {
    background-color: #000;
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    margin: 0;
}

    .portfolio-sin-item * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }

    .portfolio-sin-item:before, .portfolio-sin-item:after {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
        background-color: #000;
        content: "";
        opacity: 0.5;
        z-index: 1;
    }

    .portfolio-sin-item:before {
        -webkit-transform: skew(45deg) translateX(-155%);
        transform: skew(45deg) translateX(-155%);
    }

    .portfolio-sin-item:after {
        -webkit-transform: skew(45deg) translateX(155%);
        transform: skew(45deg) translateX(155%);
    }

    .portfolio-sin-item img {
        backface-visibility: hidden;
        width: 100%;
        vertical-align: top;
    }

    .portfolio-sin-item figcaption {
        top: 50%;
        left: 50%;
        position: absolute;
        z-index: 2;
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
        -webkit-box-shadow: 0 0 10px #000000;
        box-shadow: 0 0 10px #000000;
    }

    .portfolio-sin-item:hover > img, .portfolio-sin-item.hover > img {
        opacity: 0.5;
    }

    .portfolio-sin-item:hover:before, .portfolio-sin-item.hover:before {
        -webkit-transform: skew(45deg) translateX(-45%);
        transform: skew(45deg) translateX(-45%);
    }

    .portfolio-sin-item:hover:after, .portfolio-sin-item.hover:after {
        -webkit-transform: skew(45deg) translateX(55%);
        transform: skew(45deg) translateX(55%);
    }

    .portfolio-sin-item:hover figcaption, .portfolio-sin-item.hover figcaption {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    .portfolio-sin-item figcaption .port-icon a {
        position: relative;
        color: #fff;
    }

        .portfolio-sin-item figcaption .port-icon a.icon-ho {
            -webkit-transition: background 0.2s, color 0.2s;
            -moz-transition: background 0.2s, color 0.2s;
            transition: background 0.2s, color 0.2s;
        }

    .portfolio-sin-item figcaption .port-icon .icon-ho {
        border: 1px solid #fff;
        background: #fff;
        display: inline-block;
        color: #333;
        font-size: 15px;
        text-align: center;
        margin: 0 5px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        z-index: 1;
    }

    .portfolio-sin-item figcaption .port-icon a.icon-ho:hover {
        background: white;
        color: #333;
    }

    .portfolio-sin-item figcaption .port-icon a.icon-ho:after {
        top: -7px;
        left: -7px;
        padding: 7px;
        box-shadow: 0 0 0 4px #fff;
        -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
        -webkit-transform: scale(0.8);
        -moz-transition: -moz-transform 0.2s, opacity 0.2s;
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transition: transform 0.2s, opacity 0.2s;
        transform: scale(0.8);
        opacity: 0;
    }

    .portfolio-sin-item figcaption .port-icon .icon-ho:after {
        pointer-events: none;
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        content: "";
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .portfolio-sin-item figcaption .port-icon a.icon-ho:hover:after {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    .portfolio-sin-item figcaption h3 {
        background-color: #000;
        border: 2px solid #fff;
        color: #fff;
        font-size: 1em;
        font-weight: 600;
        letter-spacing: 1px;
        margin: 0;
        padding: 5px 10px;
        text-transform: uppercase;
    }

.portfolio-filter-menu ul li {
    display: inline-block;
    cursor: pointer;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 25px;
    padding: 8px 10px;
    position: relative;
    background-color: #f5f5f5;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

    .portfolio-filter-menu ul li:hover, .portfolio-filter-menu ul li.active {
        color: #fff;
        background-color: #234e70;
    }

    .portfolio-filter-menu ul li:before {
        position: absolute;
        content: "";
        background-color: #234e70;
        height: 2px;
        width: 15px;
        opacity: 0;
        top: 21px;
        left: 0;
        -webkit-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
    }

    .portfolio-filter-menu ul li.active:before, .portfolio-filter-menu ul li:hover:before {
        left: -25px;
        opacity: 1;
    }

    .portfolio-filter-menu ul li:after {
        position: absolute;
        content: "";
        background-color: #234e70;
        height: 2px;
        width: 15px;
        top: 21px;
        right: 0;
        opacity: 0;
        -webkit-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
    }

    .portfolio-filter-menu ul li.active:after, .portfolio-filter-menu ul li:hover:after {
        right: -25px;
        opacity: 1;
    }

.port-btn {
    color: #234e70;
    font-size: 20px;
}
.section-title h2 {
    position: relative;
    margin-bottom: 20px;
}
.section-title {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 60px;
    margin-top: 0;
    text-align: center;
    position: relative;
    letter-spacing: 1px;
}
.message-box {
   /* padding: 15px;*/
}

    .message-box .message {
        border: solid 2px #234e70;
        padding: 15px;
        margin-bottom: 15px;
    }

@media (max-width: 450px) {
    .message-box .message {
        text-align: center;
    }
}

@media (min-width: 450px) {
    .message-box .message {
    }
}

.message-box .message .read-more {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
    margin: 5px;
    display: inline;
}

@media (min-width: 450px) {
    .message-box .message .featured-img {
        display: table-cell;
        padding-right: 15px;
    }
}

.message-box .message .featured-img img {
    max-width: 140px;
}

.message-box .message .content {
    vertical-align: middle;
    text-align: justify;
}

@media (min-width: 450px) {
    .message-box .message .content {
        display: table-cell;
    }
}

.message-box .message .content p {
    font-size: 13px;
    color: #000;
}

.message-box .message .featured-img .name {
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

.message-box .message .featured-img .designation {
    color: black;
    text-align: center;
}
.bluebox-border {
    border-bottom:solid 4px #3c3d41;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border-left:solid 1px #dedede;
    border-right:solid 1px #dedede;
    text-align:justify;
}
.bluebox {
    position: relative;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size:24px;
    padding: 0px 15px;
    color: #FFFFFF;
    background: #3c3d41;
    background: -moz-linear-gradient(left, #3c3d41 0%, #d90a00 100%);
    background: -webkit-linear-gradient(left, #3c3d41 0%, #d90a00 100%);
    background: linear-gradient(to right, #3c3d41 0%, #d90a00 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c3d41', endColorstr='#d90a00', GradientType=1 );
    text-align:center;
    -moz-border-radius-topleft: 15px;
    -webkit-border-top-left-radius: 15px;
    border-top-left-radius: 15px;
    -moz-border-radius-topright: 15px;
    -webkit-border-top-right-radius: 15px;
    border-top-right-radius: 15px;
}
.arrow-blue {
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid;
    border-top-color: currentcolor;
    border-top-color: currentcolor;
    border-top-color: #403c3f;
    margin: auto;
    position: absolute;
    background: #3c3d41;
    background: -moz-linear-gradient(left, #3c3d41 0%, #d90a00 100%);
    background: -webkit-linear-gradient(left, #3c3d41 0%, #d90a00 100%);
    background: linear-gradient(to right, #3c3d41 0%, #d90a00 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c3d41', endColorstr='#d90a00', GradientType=1 );
}
.download-icons-n {
    text-align: center;
}
.download-box {
    /*width: 48%;*/
    /*float: left;*/
    text-align: center;
}
.downloadimg {
    margin-bottom: 25px;
}
@media only screen and (max-width: 989px)
.masterMain {
    margin-top: 30px!important;
}
@media only screen and (max-width: 1024px)
.aboutUs .boxIn, .masterText {
    padding: 0px 5px;
}
.academicHead tr td img {
    border: 0px solid #eaeaea;
    -webkit-box-shadow: 1px 2px 5px 0px rgb(0 0 0 / 30%);
    -moz-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.30);
    box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 30%);
}
.academicHead tr td {
    vertical-align: top;
    width: 33.33%;
}
.academicHead {
    width: 100%;
    text-align: center;
}
.masterText .m-0 {
    margin: 0;
}
.masterText {
    width: 100%;
    float: left;
    line-height: 24px;
    color: #555151;
    min-height: 320px;
    margin-top: 20px;
}
.gobottom {border-radius: 50%;cursor:pointer; text-align:center;  background-image: -moz-linear-gradient( 90deg, rgb(30,209,124) 0%, rgb(47,93,212) 100%);background-image: -webkit-linear-gradient( 90deg, rgb(30,209,124) 0%, rgb(47,93,212) 100%); background-image: -ms-linear-gradient( 90deg, rgb(30,209,124) 0%, rgb(47,93,212) 100%);width: 41px;height: 41px; display:inline-block; margin-top:92px;}
.gobottom img { margin-top:12px;    }



.master-hdr {
  width: 100%;
  height: 148px;
  background: url(../images/masterH.jpg) top center no-repeat;
    background-size: auto;
  float: left;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  background-size: cover;
}
.master-heading {
  margin-top: 53px;
}
.innerImg {
  float: left;
  margin-left: -19px;
}

.accordionHeader_Y{background: #005387  url(./images/ajax-arrow1.png) 99% center no-repeat;padding: 10px 10px;cursor: pointer;text-transform: uppercase;font-weight: 600;margin-top:10px;color:#fff}
.accordionHeaderSelected{color: #fff;background: #005387  url(./images/ajax-arrow.png) 99% center no-repeat;padding: 10px 10px;cursor: pointer;text-transform: uppercase;font-weight: 600;margin-top:10px; color:#fff}      
.accordionHeader_Selected{color: #fff;background: #005387  url(./images/ajax-arrow.png) 99% center no-repeat;padding: 10px 10px;cursor: pointer;text-transform: uppercase;font-weight: 600;margin-top:10px; color:#fff}      
.accordionContent_Y {background-color: #fff;padding: 25px;padding-top: 0px;border: 1px solid #223c93;}
.innerTbl {
    width: 100%;
    border-collapse: collapse;
}
.innerTbl tr th, .innerTbl tr td {
    border: 1px solid #dee2e6;
    padding: 5px;
}
.inner-wrapper p {
    margin: 0;
    padding: 0 0 5px;
    line-height: 24px;
    font-size: 14px;
    font-weight: 600;
}