@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
  font-family: 'Poppins', sans-serif, arial, Verdana, Helvetica, sans-serif;
  color: #585858;
  font-size: 14px;
  line-height: 24px;
}

a {
  color: #ba3720;
}

a:hover {
  color: #0b6bd3;
  text-decoration: none;
}
p {
	text-align:justify;
}
h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: 'Poppins', sans-serif, arial, Verdana, Helvetica, sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #ba3720;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #ee7843;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0 0 0;
  background: #fff;
  border-top: solid 2px #ba3720;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #7a6960;
  text-decoration: none;
}

#header .logo {
	margin-top:0px;
	margin-bottom:3px;
}
#header .logo img {
  padding: 0;
  margin: 0;
  width:360px;
  /*max-height: 56px;*/
}

#main {
  margin-top: 72px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #FFF;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 15px;
  font-family: 'Poppins', sans-serif, arial, Verdana, Helvetica, sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #FFF;
  text-decoration: none;
}


.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #656565;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ba3720;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #ba3720;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #ffe9df;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #f39e7a;
  text-decoration: none;
}

.mobile-nav .get-started a {
  background: #ba3720;
  color: #fff;
  border-radius: 50px;
  margin: 15px;
  padding: 10px 25px;
}

.mobile-nav .get-started a:hover {
  background: #ee7843;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 22px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #7a6960;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(78, 64, 57, 0.9);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 0 0 30px 0;
    color: #7a7a7a;
    font-size: 12px;
    background: #e6e6e6;
}

#footer .footer {
  padding: 50px 0;
  background: #fef8f5;
  text-align: center;
  font-size: 15px;
}

#footer .footer h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #4e4039;
}

#footer .footer form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer form input[type="email"] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
}

#footer .footer form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ba3720;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer form input[type="submit"]:hover {
  background: #c54811;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #efefef;
  border-bottom: solid 1px #d8d8d8;
}
.footer-top a, .footer-top p, .footer-top h3 {
	color:#7a7a7a;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif, arial, Verdana, Helvetica, sans-serif;
  color: #5c5c5c;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 400;
    color: #7a7a7a;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f39e7a;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul li i {
	color: #7a7a7a;
}
#footer .footer-top .footer-links ul li a {
    color: #7a7a7a;
    transition: 0.3s;
    font-size: 12px;
    display: inline-block;
    line-height: 1;
}
#footer .footer-top .footer-links p {
	font-size:12px;
	line-height:30px;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ba3720;
}

#footer .footer-top .social-links a {
    font-size: 15px;
    display: inline-block;
    background: #7a7a7a;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 15px;
    border-radius: 5px;
    text-align: center;
    width: 30px;
    height: 30px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ba3720;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 12px;
    color: #7a7a7a;
}

#footer .credits a {
  color: #ba3720;
}

@media (max-width: 575px) {
  #footer .copyright, #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}

/*Custom CSS*/
.nav-bg {    
	background: #ba3720;
    min-height: 42px;
	margin-top:5px;
}
.panel {
    border: solid 1px #ba3720;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.panel-heading {
    background: #ba3720;
    padding: 9px 11px;
    font-size: 15px;
    color: #fff;
}
.panel-body {
	padding:10px;
}
.tabs {
  margin: 0 auto;
}
#tab-button {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
#tab-button li {
  display: table-cell;
  width: 20%;
}
#tab-button li a {
  display: block;
  padding: 10px 10px;
  background: #f6a705;
  border: 1px solid #FFF;
  text-align: center;
  color: #FFF;
  text-decoration: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#tab-button li:not(:first-child) a {
  border-left: none;
}

#tab-button .is-active a {
  border: solid 1px #f6a705;
  border-bottom: none;
  background: #fff;
}
#tab-button li a:hover {
	background: #fbae10;
}
#tab-button .is-active a {
	color:#f6a705;
}
#tab-button .is-active a:hover {
	color:#f6a705;
	background: #fff;
}
.tab-contents {
  padding:10px;
  border: 1px solid #ddd;
  border-top: solid 1px #fff !important;
}

.tab-button-outer {
  display: none;
}
.tab-contents {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .tab-button-outer {
    position: relative;
    z-index: 2;
    display: block;
  }
  .tab-select-outer {
    display: none;
  }
  .tab-contents {
    position: relative;
    top: -1px;
    margin-top: 0;
  }
}

.carousel-item {
	height: 320px;
    background-size: cover !important;
    border-radius: 10px;
}
.chancellor-panel {
	height:320px;
}
.carousel-caption {
    right: 0;
    bottom: 0;
    left: 0;
    color: #ba3720;
    /*background: #ffffff59;*/
	padding-top: 10px;
    padding-bottom: 10px;
	text-shadow: 1px 1px 1px #fff;
}
.carousel-caption h3 {
	font-weight:300;
}
.carousel-caption p {
	text-align:center;
	margin-bottom:0;
}
.no-gutter > [class*='col-' ] {
    padding-right:5px;
    padding-left:5px;
}
.home-gallery .panel-body {
	padding: 10px 5px 10px 5px;
}
.quick-links ul {
	margin: 0;
    padding: 0;
    list-style: none;
}
.quick-links ul li a {
    color: #585858;
    display: block;
    padding-bottom: 3px;
    border-bottom: solid 1px #e8e8e8;
    margin-bottom: 2px;
}
.quick-links ul li a:hover {
	text-decoration:underline;
}
.notification-home ul {
	margin:0;
	padding:0;
	list-style-type:none;
}
.notification-home li {
	padding-bottom: 6px;
    border-bottom: solid 1px #e8e8e8;
    margin-bottom: 6px;
}
.notification-home li a {
	color:#585858;
}
.notification-home li span {
	color:#a3a3a3;
	font-size: 11px;
	margin-left: 15px;
}
.ovrflw {
	height: 330px;
}
.ovrflw .form_ul {
	height: 332px;
	overflow:auto;
}
.ovrflw .form_ul::-webkit-scrollbar {
	width: 5px;
	height: 8px;
	background-color: #e2e2e2;
}
.ovrflw .form_ul::-webkit-scrollbar-thumb {
	background: #a2a2a2;
}
/*--------------------------------------------------------------
# gallery
--------------------------------------------------------------*/
.gallery-home .portfolio-item {
  margin-bottom:0px;
}

.gallery-home #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.gallery-home #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #212529;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.gallery-home #portfolio-flters li:hover, .gallery-home #portfolio-flters li.filter-active {
  color: #ba3720;
}

.gallery-home #portfolio-flters li:last-child {
  margin-right: 0;
}

.gallery-home .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.gallery-home .portfolio-wrap::before {
  content: "";
  background: rgba(122, 105, 96, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.gallery-home .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.gallery-home .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.gallery-home .portfolio-wrap .portfolio-links a {
  color: #ba3720;
  margin: 0 4px;
  font-size: 18px;
  line-height: 1;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.gallery-home .portfolio-wrap .portfolio-links a i {
  line-height: 1;
}

.gallery-home .portfolio-wrap .portfolio-links a:hover {
  background: #ba3720;
  color: #fff;
}

.gallery-home .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.gallery-home .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.gallery-home .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.gallery-home .portfolio-wrap:hover::before {
  left: 0;
}

.gallery-home .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.gallery-home .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}
/*Mega Menu*/
.navbar .dropdown-menu div[class*="col"] {
    margin-bottom: 0;
}

.navbar .dropdown-menu {
    border: none;
    background-color: rgb(239, 239, 239) !important;
    margin-top: 8px
}

.navbar {
    padding-top: 0px;
    padding-bottom: 0px
}

.navbar .nav-item {
    padding: .1rem .5rem;
    margin: 0 .25rem
}

.navbar .dropdown {
    position: static
}

.navbar .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    top: 34px
}

.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown .dropdown-menu:hover {
    display: block !important
}

.navbar .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, .15);
    background-color: #fff
}

a.i {
    margin-top: -20px;
    font-weight: 400;
    color: white
}

a.catogary {
    margin-left: -20px;
    color: white
}

button.srch {
    padding: 0px
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
    input.srch {
        padding: 0px;
        width: 100%
    }
}

a.nav-link.active {
    font-weight: 500;
    background-color:transparent;
    color: white
}

a.navbar-brand {
    color: white
}

span.navbar-toggler.icon {
    color: black
}
/*custom mega menu css */
.navbar {
    padding: 0rem;
}
.dropdown-menu .nav-item a {
	font-size:12px;
	color:#333333 !important;
}
.dropdown-menu .nav-item a:hover {
	color: #ba3720 !important;
}	
.dropdown-menu .container {
	padding:5px 0;
}
.custom-col-menu {
	padding-left:5px;
	padding-right:5px;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
}
.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
    color: #FFF !important;
    font-weight: 500;
	font-size:14px;
}
.dropdown-menu .nav .nav-link.active {
	color:#ba3720 !important;
}
.no-full-width-image {
	float:left;
}
.accordion .card-header:after {
    font-family: 'FontAwesome';  
    content: "\f068";
    float: right; 
	color:#ba3720;
}
.accordion .card-header.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\f067"; 
}
.card {
    border:1px solid rgb(208, 208, 208);
}
.card-header {
    background-color: rgb(224, 224, 224);
    border-bottom: 1px solid rgb(255, 255, 255) !important;
}
.card-title {
    color: #ba3720 !important;
	cursor:pointer;
}
.card-body {
    padding: .8rem;
}
.inside-page-container .quick-links ul li a i {
	color: #ba3720;
}
.accordion>.card>.card-header {
    margin-bottom: 0px;
    font-weight: 600;
}
.inside-page-container .panel-heading {
    background: #e0e0e0;
    color: #ba3720;
    font-weight: 600;
}
.inside-page-container .panel {
    border: solid 1px #c7c7c7;
}
.gallery-main-thumb {
    box-shadow: 1px 1px 12px #bfbfbf70;
    padding: 10px;
    border-radius: 5px;
}
.clearfix {
	clear:both;
}
.table th {
    font-size: 13px;
    font-weight: 600;
}
.table td {
	font-size:13px;
}
.inside-page-mainheading {
    font-size: 15px;
    color: #ba3720;
    border-bottom: dotted 1px #ba3720;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.inside-page-container strong {
	font-weight:500;
	font-size:13px;
}
.inside-page-container .extra-bold {
	font-weight:700;
}
.date-time {
    font-size: 16px;
    font-weight: 500;
    text-align: right;
    padding-top: 10px;
    margin-right: 15px;
}
.date-time span {
	font-weight:900;
}
.custom-image-thumb-home-gallery {
	height:74px;
}
.profesor-list {
    box-shadow: 2px 2px 9px #ccc;
    border: dotted 1px #ccc;
    padding: 10px;
    border-radius: 6px;
	margin-bottom: 15px;
}
.profesor-list p {
	margin-bottom:0;
}
.profesor-list-main {
	padding-left:20px;
	padding-right:20px;
}
.inside-main-head-banner {
	background:#ececec;
}
.inside-mainheading {
    font-weight: 700;
    font-size: 19px;
    text-align: left;
    text-transform: uppercase;
    padding: 20px 0 20px 0;
    color: #636363;
    letter-spacing: 0.5px;
	margin-left: -10px;
}