/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slider-caption {
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    padding: 11px 15px;
    background: rgba(0,0,0,.5);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.3);
    font-size: 14px;
    line-height: 18px;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
    width: 100%;
    display: block;
    height: 400px;
    margin-top: 0px;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0;
  position: relative;
  zoom: 1;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  border: 0;
  outline: 0;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  bottom: 0;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}

.flex-direction-nav .flex-prev {
  left: -36px;
  text-align: center;
}

.flex-direction-nav .flex-next {
  right: -36px;
  text-align: center;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
}

.flex-direction-nav a:before {
  font-family: "FontAwesome";
  font-size: 18px;
  display: inline-block;
  content: '\f104';
}

.flex-direction-nav a.flex-next:before {
  content: '\f105';
  margin-left: 4px;
}

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
.flex-direction-nav .flex-next {
    bottom: 0;
    opacity: 1 !important;
    color: #fff;
}

.flex-direction-nav .flex-prev {
  bottom: 0;
  opacity: 1 !important;
  color: #fff;
}

.alllist {
    display: inline-block;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #fff;
  color: #444;
  text-shadow: none;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 5px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../images/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: rgba(0, 0, 0, 0.9);
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../images/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url("../images/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}

/*===== school title =====*/
.school-title {
    margin-top: 35px;
}
.school-title h2 {
    color: #9C0A0D;
    font-weight: 900;
     text-align: center;
    font-size: 40px;
}
.language {
    margin: 15px;
    color: #fff !important;
    background: #294a70;
    border: none;
}

.school-title ul {
    margin: 0px auto;
    padding: 0px;
    display: table;
}
.school-title h3 {
    text-align: center;
    margin: 0;
    font-style: italic;
    font-size: 18px;
    color: #EE9F36;
    font-weight: 700;
}

.school-title ul li{
  float: left;
  list-style: none;
  color: #fff;
  margin-right: 15px;
}
.school-title ul li strong{}

.site-header{
  position: relative;
}
ul.top-menu {
    display: flex;
    margin: 0;
    /*position: absolute;*/
    /*top: 10px;*/
    /*right: 6%;*/
    background: #294a70;
    /*background: #f4a024;*/
    padding: 3px 15px;
    list-style: none;
    /*border-radius: 10px 0px;*/
    z-index:9999;
}
.language_div{
  position: absolute;
  top: 80px;
  right: 5%;
}

ul.top-menu li{
  margin-right: 5px;
  display: inline;
}

ul.top-menu li a {
    color: #fff;
  font-weight:700;
  font-size: 14px;
}

.opening-time {
    display: block;
    padding-top: 30px;
}
.opening-time {
    display: inline-block;
    padding-top: 50px;
    color: #fff;
}
.opening-time ul{
  list-style: none;
}

.opening-time ul li{
  font-size: 14px;
}

.language-btn {
    background: white;
    margin-bottom: 0px;
    color: #428bca;
}

.custom-btn{
    width: 110px;
}

.main-menu li ul li a:hover{
  color: #fff;
  background: #f4a024;
}


.person-info{
  text-align: center;
}
.person-info p {
    margin: 0;
    color: #000;
    font-weight: 700;
    line-height: 21px;
}

.person-info img {
    min-height: 200px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 15px;
}
.person-title {
    background: #294a70 none repeat scroll 0 0;
    border-bottom: 0 solid #ffab1f;
    border-left: 5px solid #ffab1f;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    padding: 5px 15px;
    position: relative;
    margin-bottom: 20px;
}
.person-title::after {
    border-left: 9px solid rgba(0, 0, 0, 0);
    border-right: 9px solid rgba(0, 0, 0, 0);
    border-top: 9px solid #294a70;
    bottom: -20px;
    content: "";
    display: block;
    height: 21px;
    left: 5%;
    margin: 0 auto;
    position: absolute;
    width: 13px;
    z-index: 9999;
}

.request-information{
  margin-top: 20px;
  background: #fff;
}

.person-info-wrapper{
  margin-top: 30px;
}

.recent-news-list li{
  float: left;
  list-style: none;
}

.recent-news {
    background: #f1f1f1;
    color: #fff;
    display: inline-block;
    width: 100%;
    margin-top: 8px;
}

.news-update {
    border-left: 3px solid #294a70;
}
.news-update {
    width: 12%;
    float: left;
}
ul.street-location h2 {
    font-size: 20px;
    font-weight: 700;
}
ul.street-location li i {
    font-size: 23px;
    margin-right: 8px;
    color: #365899;
}

ul.street-location li {
    margin-bottom: 6px;
    color: black;
}

.news-update p {
    margin: 0;
    text-align: left;
    margin-top: 6px;
    color: #294a70;
    margin-left: 7px;
}

.recent-news-list li a {
    color: #294a70;
    font-size: 12px;
}

.recent-activity {
    display: inline-block;
    padding: 15px 0px;
}

.recent-activity img{
  height: 150px;
}
.recent-activity-inner {
    display: inline-block;
    margin-right: 15px;
    background: #fff;
}
.recent-activity-content h2 {
    font-size: 16px;
    margin: 0;
    padding-top: 10px;
    font-weight: 700;
}
.recent-activity-content p {
    line-height: 17px;
    text-align: justify;
    padding: 10px 0px;
    margin: 0;
    padding-bottom: 0px;
}
.recent-activity-content a {
    display: block;
    background: #f4a024;
    text-align: center;
    margin-top: 10px;
    padding: 3px 9px;
    display: inline-block;
    color: #fff;
    border-radius: 2px;
    font-size: 12px;
}

.section-wrapper {
    /* border: 12px solid #fbfbfb; */
    border-bottom: 0px;
    /* border-radius: 18px; */
    margin: 25px 0px;
    /* box-shadow: 0px 5px 10px rgba(0,0,0,.4); */
    border-top: 2px solid whitesmoke;
    background: #fff;
    display: inline-block;
    width: 100%;
}

.googlemap iframe{
  width: 100%;
  height: 270px;
}

.news .welcome-text {
    text-align: left;
    margin: 0px;
}

.notice ul li {
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #ececec;
    list-style: none;
}

.importantlink {
    margin: 10px 0px;
}

.importantlink-list li{
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #ececec;
}

.academic-info {
    background: #f8f8f8;
    overflow: hidden;
    margin: 0px;
    width: 49%;
    float: left;
    min-height: 200px;
    background: #ffffff;
    /* border: 1px solid #ccc; */
    /* box-shadow: 1px 1px 1px 1px #ccc; */
    margin-top: 15px;
}

.margin-15 {
    margin-right: 15px;
}
.academic-info h4 {
    padding: 9px 20px;
    font-size: 16px;
    margin: 0;
    color: #fff;
    font-weight: 700;
    background: #294a70;
    display: inline-block;
    width: 100%;
    border-left: 5px solid #f4a024;
    text-align: left;
}
.academic-thumb {
    width: 32%;
    float: left;
    padding: 20px;
}
.academic-list {
    padding-left: 20px;
    padding-top: 20px;
}
.academic-list ul li a i{
  margin-right: 10px;
}
.academic-list ul li a {
    font-size: 14px;
    margin-bottom: 7px;
    display: inline-block;
    font-weight: 600;
    color: #294a70;
}

ul.timing {
    padding-bottom: 20px;
}

footer {
    background: #fdf9f9;
    padding: 33px 10px;
    padding-bottom: 0px;
    border-top: 2px solid #a54f4d;
    display: inherit;
    margin-top: 20px;
}

footer h5 {
    font-weight: normal;
    font-size: 18px;
    margin-top: 0px;
    color: #000;
}
footer h5 span {
    color: #ab4745;
    font-weight: 900;
}

.stellarnav.light {
    background: #294a70;
}
.stellarnav > ul > li > a {
    padding: 10px 10px;
}
.stellarnav.light li a {
    color: #fff;
}

.stellarnav > ul > li {
    display: inline-block;
    border-right: 1px solid white;
}
.stellarnav > ul > li:last-child{
  border-right: 0px solid white;
}

.submenu{
  background: #294a70 !important;
}
.submenu li{}
.submenu li{
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d2d2d2;
    padding: 0;
}
.submenu li a {
    padding: 0px;
    display:block;
    padding: 7px 10px;
}

.stellarnav li.active a, .stellarnav li a:hover, .site-footer a:hover,
 .event-container .event-time {
    color: #fff;
    background: #f4a024;
}

.stellarnav li a .submenu a:hover, .stellarnav li a:hover, .social-icons li a, .social_icons li a, .slider-caption h2 a, .flex-direction-nav a, .footer-widget-title, .footer-media-icons li a, .mainBtn, .request-information .submit_field .mainBtn, .s-month, #slider-testimonials .prev, #slider-testimonials .next, .blog-grid-thumb .cat-blog, .blog-post-meta ul li, .blog-post-meta ul li a, .tag-items a, .comment-form .mainBtn, .course-search-form .mainBtn, .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a, .main_menu a {
    color: #fff;
    background:#f4a024;
}

.stellarnav.mobile.light li a {
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    color: #000;
}

.welcome-item img {
    margin-bottom: 5px;
    width: 100%;
    padding-right: 15px;
}

.all-teacher{
  padding: 40px 0px;
}

.single-banner img {
    margin-top: 15px;
    height: 400px;
}

table{
  width: 100%;
}

.book-download {
    background: #f8f8f8;
    padding: 20px 0px;
    text-align: center;
}
.book-download h3{
  font-size: 20px;
  font-weight: 700;
}
.book-download i {
    font-size: 35px;
    padding-top: 10px;
    color: #66C0FC;
}
.book-download {
    background: #f8f8f8;
    padding: 20px 0px;
    text-align: center;
    border: 3px solid #3358a2db;
    margin-bottom: 15px;
    border-radius: 5px;
}

.facility{
  margin-bottom: 15px;
}
.facility p{
    background: #294a70;
    color: #fff;
    padding: 10px;
}

.gallery_image{
  margin-bottom: 20px;
}

ul.img_categories li {
    padding: 6px 10px;
    border-bottom: 1px solid #e8e8e8;
}

form#contact {
  padding-bottom: 20px;
  /* background: #f1f1f1; */
  padding: 20px;
  margin-bottom: 20px;
  height: 400px;
  border: 1px solid #e6e6e6;
  border-top: 0px;
  z-index: 999999999999;
}
form#contact  .col-md-12{
  display: inline-block;
  width: 100%;
}

#success{
  display: inline-block;
}

.contact_feedback input[type='text'] {
    width: 100%;
    padding: 18px 9px;
    border: 1px solid #dedede;
    margin: 6px 0px;
    border-radius: 5px;
    outline: 0;
    z-index: 9999;
}

.col-md-6 .contact_feedback input[type='text'] {
  z-index: 99999;
}

.contact_address {
    padding: 20px;
    background: #ffffff;
    margin-bottom: 30px;
    height: 400px;
    border: 1px solid #e6e6e6;
    border-top: none;
}

form#contact .custom-btn {
    margin-left: 16px;
    padding: 12px 20px;
    background: #4267b2;
    border: none;
    color: #fff;
    border-radius: 3px;
    margin-top: 10px;
    outline: 0;
}

.form-full{
  width: 100%;
}

.person-title.v2{
  margin: 0px;
  margin-top: 15px;
}
.form-field {
    display: inline;
}

.form-field textarea {
    height: 150px;
    display: inline-block;
    margin-top: 6px;
}

.biography{}
.biography img {
    margin-top: 15px;
    width: 100%;
    min-height: 200px;
    margin-bottom: 15px;
}
.biography-thumb {
    width: 25%;
    margin: 0 auto;
    text-align: center;
}
.biography-thumb p {
    margin: 0;
    font-weight: 700;
    color: #000;
    line-height: 21px;
}
.biography-discription {
    margin-top: 19px;
    color: #000000;
    font-size: 14px;
}

.required-star {
  color: red;
}

@media print {
  .hidden-on-print {
    display: none;
  }
  .print-landscape{
    @page {size: landscape}
  }
}


td.photo img {
  height: 100px;
  width: 90px;
}
table.teacher_table.table.table-bordered {
  text-align: center;
  font-size: 16px;
}


/* back to top */
.back-to-top {
    width: 5rem;
    height: 5rem;
    background-color: #365899;
    border-radius: 50%;
    position: fixed;
    bottom: 2%;
    right: 1%;
}

.back-to-top i {
    display: block;
    color: #fff;
    font-size: 2rem;
    padding: 1.3rem 1.4rem;
}
