@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Roboto+Condensed:400,500,600,700');

/*-----------------------
    Animation
-------------------------*/

/*-------------------------
    Fade
---------------------------*/
@-webkit-keyframes rs-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rs-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*---------------------------
    Fade Top
------------------------------*/
@-webkit-keyframes rs-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes rs-fade-top {
  0% {
    opacity: 0;
    transform: translateY(-60%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---------------------------
    Fade Bottom
------------------------------*/
@-webkit-keyframes rs-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes rs-fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(60%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---------------------------
    Fade Left
------------------------------*/
@-webkit-keyframes rs-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes rs-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-60%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*---------------------------
    Fade Right
------------------------------*/
@-webkit-keyframes rs-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes rs-fade-right {
  0% {
    opacity: 0;
    transform: translateX(60%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*------------------------------
   Scale Up
--------------------------------*/
@-webkit-keyframes rs-animation-scale-up {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes rs-animation-scale-up {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*---------------------------
    Scale Down
------------------------------*/
@-webkit-keyframes rs-animation-scale-down {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.6);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes rs-animation-scale-down {
  0% {
    opacity: 0;
    transform: scale(1.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*---------------------------
    Rotate
------------------------------*/
@-webkit-keyframes rs-rotate {
  0% {
    -webkit-transform: rotate(280deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rs-rotate {
  0% {
    transform: rotate(280deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*---------------------------
    Shake
------------------------------*/
@-webkit-keyframes rs-shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
  }
}
@keyframes rs-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/*-------------------
    Scale
---------------------*/
@-webkit-keyframes rs-scale {
  0% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes rs-scale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* -----------------------------------
    01. General CSS
-------------------------------------*/

*:focus {
    outline: none !important;
}

input[type="text"], textarea, select { 
     outline: none !important;
}


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

html,
body {
  font-size: 16px;
  color: #505050;
  font-family: 'Roboto Condensed', sans-serif;
  vertical-align: baseline;
  line-height: 26px;
  font-weight: 400;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
p {
      margin: 0 0 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif;
  color: #212121;
  margin: 0 0 26px;
  font-weight: 700;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
a {
  color: #ff3115;
  transition: all 0.3s ease 0s;
  text-decoration: none !important;
  outline: none !important;
}
a:active,
a:hover {
  text-decoration: none;
  outline: 0 none;
  color: #e41f05;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.redtxt{
	color: #ff3115;
}

#txtCaptcha{
	
   text-align: center;
    border: none;
    font-weight: bold;
    font-size: 14px;
    float: left;
    margin:4px 12px 0 0;
    color: red;
    padding: 2px 0;
    width: 58%;
}


#btnrefresh{
	font-family: inherit;
    font-size: 13px;
    color: #002f6b;
    border-radius: .25rem;
    font-weight: 600;
    border: 1px solid #dddddd;
    line-height: inherit;
    display: inline-block;
	 margin:4px 0 0 0;
}

.clear {
  clear: both;
}
::-moz-selection {
  background: #ff3115;
  text-shadow: none;
  color: #ffffff;
}
::selection {
  background: #ff3115;
  text-shadow: none;
  color: #ffffff;
}
.sec-spacer {
  padding: 70px 0;
}
.sec-color {
  background-color: #f9f9f9;
}
.drak-color {
  background-color: #252525;
}
.gray-color {
  background-color: #f0f0f0;
}
.primary-color {
  color: #ff3115;
}
.primary-bg {
  background: #ff3115;
}
.sec-black {
  background: #212121;
}
.bg-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* ------------------------------------
    02. Global Class
---------------------------------------*/
.drak-color .owl-nav .owl-prev,
.drak-color .owl-nav .owl-next,
.drak-color .sec-title h3 {
  color: #ffffff;
}

.primary-btn {
  display: inline-block;
  height: 40px;
  line-height: 35px;
  text-align: center;
  min-width: 136px;
  padding: 0 20px;
  border: 2px solid #ff3115;
  color: #212121;
  transition: all 0.3s ease 0s;
  font-weight: 600;
}
.primary-btn:hover {
  background: #ff3115;
  color: #ffffff;
}

/*overly border*/
.overly-border::before,
.overly-border::after {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  z-index: 1;
}
.blue-bg {
  position: relative;
}
.blue-bg .blue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 188, 212, 0.9);
}
.about-img .overly-border::before,
.about-img .overly-border::after {
  top: 50px;
  right: 50px;
  bottom: 50px;
  left: 50px;
}
.overly-border::before {
  border-top: 5px solid #ff3115;
  border-bottom: 5px solid #ff3115;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.rs-blog .blog-item.slick-current .team-content {
  opacity: 1;
  top: 0;
}
.overly-border::after {
  border-right: 5px solid #ff3115;
  border-left: 5px solid #ff3115;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.right_menu_togle .search-wrap button {
  color: #ff3115;
}
.padding-0 {
  padding: 0 !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pt-100 {
  padding-top: 100px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pb-170 {
  padding-bottom: 170px !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.sparator-15 {
  height: 15px;
  clear: both;
}
.ml-15 {
  margin-left: 15px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mt-100 {
  margin-top: 100px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.margin-remove {
  margin: 0 !important;
}
.display-table {
  display: table;
  height: 100%;
  width: 100%;
}
.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.white-color {
  color: #fff !important;
}

/* -. Owl Carousel -*/
.owl-controls .owl-nav > div {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: #444;
  color: #fff;
  transform: translateY(-50%);
  font-size: 22px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.owl-controls .owl-nav > div:hover {
  background-color: #ff3115;
}
.owl-controls .owl-nav .owl-prev {
  left: -60px;
}
.owl-controls .owl-nav .owl-next {
  right: -60px;
}
.owl-controls .owl-nav > div {
  opacity: 1;
}


.testimonials-item-carousel{
	position:relative;
	padding:10px 20px;
	height:320px;
}

.testimonials-item-carousel .owl-nav{
	position: absolute;
    right: 1px;
    bottom: 20px;
}
.testimonials-item-carousel .owl-nav .owl-prev {
  left: -62px;
}
.owl-carousel .owl-item img {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%;
    margin: 0 auto;
}


.testimonials-item-carousel .testimonial-item  .testi-img img {
    display: block;
    max-width: 100%;
	border-radius: 50%;
    height: auto;
    width: auto !important;
    margin: 0 auto;
	text-align:center;
}
.testimonials-item-carousel .testimonial-item p {
	text-align:center;
}

.testimonials-item-carousel .owl-controls .owl-nav > div {
    position: absolute;
    bottom: -27%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    right: 0;
    background-color: #444;
    color: #fff;
    transform: translateY(-50%);
    font-size: 22px;
    border-radius: 0;
    opacity: 2;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/*** other colleges ***/
.othercollege{
	display:block;
	
}

.othercollege h4 {
    font-size: 20px;
    margin: 20px 0;
    text-align: center;
	font-weight: 700;
}

.othercollege p {
   padding: 0 30px;
    font-size: 16px;
    margin: 20px 0;
    text-align: center;
}
.othercollege .othercollegeimg {
   display:block;
   width:100%;
   height:100%;
}
.othercollege .othercollegeimg img {
	
	max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
	
}

.course-item-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: -21px;
}

.course-item-carousel .owl-controls .owl-nav > div {
    position: absolute;
    bottom: -27%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    right: 0;
    background-color: #444;
    color: #fff;
    transform: translateY(-50%);
    font-size: 22px;
    border-radius: 0;
    opacity: 2;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.course-item-carousel .owl-nav .owl-prev:hover{
	background-color: #ff3115;
    color: #fff;
}

.course-item-carousel .owl-nav .owl-next:hover{
	background-color: #ff3115;
    color: #fff;
}


.facility-item-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: -17px;
}

.facility-item-carousel .owl-controls .owl-nav > div {
    position: absolute;
    bottom: -27%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    right: 0;
    background-color: #444;
    color: #fff;
    transform: translateY(-50%);
    font-size: 22px;
    border-radius: 0;
    opacity: 2;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.facility-item-carousel .owl-nav .owl-prev:hover{
	background-color: #ff3115;
    color: #fff;
}

.facility-item-carousel .owl-nav .owl-next:hover{
	background-color: #ff3115;
    color: #fff;
}



#marqueecontainer{position: relative; height: 320px; overflow: hidden;cursor:pointer;}
div#vmarquee{width:100%;} 

.ct_popular_course.gt_detail_hdg.aside_margin_bottom.newss_lt {
    background: #fff; 
}
.ct_popular_course.gt_detail_hdg.aside_margin_bottom.newss_lt h5 {
   margin: 10px;
}
.ct_popular_course.gt_detail_hdg.aside_margin_bottom.newss_lt li {
    box-shadow: 0 2px 3px #EBEBEB;
    padding:18px 10px;    margin-bottom: 0;
}

.shadow {
    height: 15px;
}
.shadow img{width:100%;}
div#bx-pager a img {
    border-radius: 50%;    border: 1px solid #7d7d7d;
}



.uv-post-inner-content {
  padding: 20px;
}

.uv-post-inner-content ul li {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.uv-post-inner-content ul li {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}


.uv-post-inner-content ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 20px;
}
.uv-post-inner-content ul li a:hover {
  color: #21b14d;
}
.uv-post-inner-content ul li a h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height:20px;
  margin-bottom: 4px;
  margin-top: 0;
  color:#e41f05;
}

ul.requirment {
	margin:0 0 0 10px;
}

ul.requirment li {
	display:block;
	padding:0 0 4px 0;
	margin:0;
	font-size:16px;
	color:#05336f;
}


/* ------------------------------------
    02. Header Start
---------------------------------------*/
.rs-header .rs-header-top {
  padding: 10px 0 15px;
}
.rs-header .rs-header-top .header-contact {
  float: right;
  float: right;
    padding: 25px 0 0 0;
}
.rs-header .rs-header-top .header-contact .widget-text {
  position: relative;
  padding-left: 55px;
}
.rs-header .rs-header-top .header-contact .widget-text i {
  position: absolute;
  border-radius: 2px;
  text-align: center;
  left: 0;
  line-height: 40px;
  color: #ff3115;
  font-size: 35px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-weight: 700;
}
.top-contact .widget-text .info-text a {
  color: #505050;
  font-weight: 400;
  font-size: 16px;
  margin-top: 12px;
}
.header-contact .widget-text .info-text a:hover {
  color: #ff3115;
}
 .top-contact .widget-text .info-text span {
  display: block;
  font-weight: 700;
  color: #101010;
  line-height: 18px;
  text-align:center;
}
.rs-header .rs-menu-toggle {
  color: #fff !important;
}
.rs-header .rs-menu-toggle:hover {
 /* color: #ff3115 !important; */
}
.rs-header .menu-area .rs-menu li.current_page_item > a,
.rs-header-2 .menu-area .rs-menu li.current_page_item > a,
.rs-header-3 .menu-area .rs-menu li.current_page_item > a,
.rs-header-4 .menu-area .rs-menu li.current_page_item > a,
.rs-header .menu-area .rs-menu li.current-menu-item > a,
.rs-header-2 .menu-area .rs-menu li.current-menu-item > a,
.rs-header-3 .menu-area .rs-menu li.current-menu-item > a,
.rs-header-4 .menu-area .rs-menu li.current-menu-item > a,
.rs-header .menu-area .rs-menu li.active > a,
.rs-header-2 .menu-area .rs-menu li.active > a,
.rs-header-3 .menu-area .rs-menu li.active > a,
.rs-header-4 .menu-area .rs-menu li.active > a,
.rs-header .menu-area .rs-menu li a:hover,
.rs-header-2 .menu-area .rs-menu li a:hover,
.rs-header-3 .menu-area .rs-menu li a:hover,
.rs-header-4 .menu-area .rs-menu li a:hover {
  color: #ff3115 !important;
}

@-moz-document url-prefix() {
  .home2 .right-bar-icon .nav-expander {
    position: relative;
    top: -1px;
  }
}
/* ----- Menu -------*/
.nav-menu > li > a {
  font-weight: 500;
  font-size: 16px;
}
.home1 .logo-area {
  padding-top: 3px;
}
.home1 .logo-dec {
    margin: -8px -43px 0;
    width: 800px;
}
@media only screen and (max-width:1024px) {
  .home1 .logo-dec {
    /*margin: -12px 10px 0;*/
    margin: -15px -20px 0;
    width: 340px;
    
}
}
.home1 .rs-menu li i {
  margin-right: 0;
  color: #ff3115;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
}
.home1 .rs-menu li i:hover {
  color: #e41f05;
}
.home1 .menu-area .rs-menu > ul > li > a {
  /*color: #bbbbbb;*/
  color: #ffffff;
}
.home1 .menu-area .rs-menu > ul > li > a:hover,
.home1 .menu-area .rs-menu li.current_page_item > a {
  color: #ff3115 !important;
}
.home1 .menu-area {
    background: #002f6b;
  /*background: #002f6b;*/
}

.home1 .rs-header .rs-header-top .col-md-4:first-child .header-contact {
  float: left;
}

.home1 .right-bar-icon,

.home1 .right-bar-icon a,

.home1 .right-bar-icon a:hover,


.home1 .right-bar-icon .nav-expander,

.home1 .right-bar-icon .nav-expander:hover,

.home1 .rs-courses .cource-item {
  border: none;
  background: #fff;
}
.inner-page .search-modal .modal-content,
.home1 .search-modal .modal-content
 {
  background: transparent;
  position: initial;
  border: 0;
}


.inner-page .modal-backdrop,
.home1 .modal-backdrop
 {
  opacity: 0.95;
}

/* ------------------------------------
    04. Sticky Menu
---------------------------------------*/
.menu-sticky.sticky {
  background: #111111;
  position: fixed !important;
  top: 0px;
  z-index: 999;
  margin: 0 auto !important;
  padding: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-name: sticky-animation;
  animation-name: sticky-animation;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.menu-sticky.sticky .main-menu {
  position: static ;
}
.rs-header-2 .menu-sticky1.sticky1 .nav-menu > li > a {
  height: 80px;
  line-height: 80px;
}
#nav-close {
  transition: all 0.3s ease 0s;
}
#nav-close:hover {
  background-color: #ff3115;
  border-color: #ff3115;
  color: #fff;
}
@-webkit-keyframes sticky-animation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes sticky-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ------------------------------------
    05. Slider
---------------------------------------*/
#rs-slider {
  position: relative;
}
#rs-slider .slide-content {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  z-index: 8;
}
#rs-slider .slide-content .slider-title {
  font-size: 60px;
  color: #fff;
  margin-bottom: 15px;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  text-transform: uppercase;
}
#rs-slider .slide-content .slider-desc {
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 20px;
}
#rs-slider .slide-content .sl-readmore-btn {
  border: 2px solid #101010;
  background: #101010;
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease 0s;
}
#rs-slider .slide-content .sl-readmore-btn:hover {
  background-color: #e41f05;
  border-color: #e41f05;
  color: rgba(255, 255, 255, 0.8);
}
#rs-slider .slide-content .sl-get-started-btn {
  background-color: #ff3115;
  border: 2px solid #ff3115;
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease 0s;
}
#rs-slider .slide-content .sl-get-started-btn:hover {
  background-color: #e41f05;
  border-color: #e41f05;
  color: rgba(255, 255, 255, 0.8);
}
#rs-slider .owl-nav {
  display: none;
}
#rs-slider .owl-dots {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}
#rs-slider .owl-dots .owl-dot {
  height: 15px;
  width: 5px;
  background-color: #ffffff;
}
#rs-slider .owl-dots .owl-dot + .owl-dot {
  margin-top: 8px;
}
#rs-slider .owl-dots .owl-dot.active {
  background-color: #ff3115;
}
.slider-overlay-1 .slide-content:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.slider-overlay-2 .slide-content:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 109, 0, 0.3);
  z-index: -1;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 109, 0, 0.3) 100%);
  background: linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 109, 0, 0.3) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 109, 0, 0.3) 100%);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 109, 0, 0.3) 100%);
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  background: -webkit-gradient(linear, right top, right bottom, color-stop(0%, rgba(0, 0, 0, 0.55)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(100%, rgba(0, 0, 0, 0.3)));
  opacity: 0.2;
}


.testimonials-item-carousel .owl-dots {display:none !important;}
/* ------------------------------------
    06. Breadcrumbs
---------------------------------------*/

.gray-bg{
	background:#bebebe;
}
.rs-breadcrumbs {
  padding: 20px 0 30px;
}
.rs-breadcrumbs .page-title {
  margin: 20px 0 20px;
  font-size: 36px;
  color: #072f6c;
  text-transform: uppercase;
  letter-spacing: 1px;
}



.border-1px {
    border: 1px solid #eeeeee !important;
}


/* ------------------------------------
    08. About Us
---------------------------------------*/
.rs-about .about-img {
  position: relative;
}
.padding40
{
	padding: 40px 0;
}
.pt-50{
	padding-top:50px;
}


.chairmain{
	float: left;
    padding: 0;
    margin: 0 30px 10px 0;
    width: 20%;
}
.chairmain img {
	max-width:100%;
	height:auto;
	display:block;
	border-radius:5px;
}

.chairman-txt{
	float: left;
    margin: 0;
    padding: 0;
    width: 75%;
}
.rs-about .about-img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(33, 33, 33, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.rs-about .about-img:hover:after {
  opacity: 1;
}
.rs-about h4 {
    font-size: 20px;
    padding: 15px 0;
    margin: 0;
}
.rs-about .about-desc {
  margin-bottom: 30px;
}
.rs-about .about-desc h2 {
  font-size: 30px;
  line-height: normal;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}
.rs-about .about-desc p {
  font-size: 16px;
    line-height: 35px;
    /*width: 623px;*/
      width: auto;
   
}
@media only screen and (max-width:1024px) {
 .rs-about .about-desc {
 margin-top: 29px;
}   
}


@media only screen and (max-width:1024px) {
    .rs-about .about-desc p {
  font-size: 16px;
    line-height: 35px;
    width: 100%;
}
}

.vision-desc p:last-child,
.about-desc p:last-child {
  /*margin-bottom: 0;*/
  /*width: 633px;*/
      margin-bottom: 0;
    /*width: 520px;*/
    /*width: 1200px;*/
    width:auto;
    line-height: 28px;
}
@media only screen and (max-width:1024px) {
 .vision-desc p:last-child,
.about-desc p:last-child {
  margin-bottom: 0;
  width: 321px;
}
}
.about-photo{
    margin-left: 214px;
}
@media only screen and (max-width:1024px) {
.info-img{
  display: none;  

}
}
@media only screen and (max-width:1024px) {
   .news-button{
       margin-top: -45px;
   } 
}
 .top-contact{
     margin-top: 6px;
 }
 @media only screen and (max-width:1024px) {
.top-contact{
    margin-top: 3px;
}
}
@media only screen and (max-width:1024px) {
.about-photo{
   margin-left: -19px;
}
}
.about-photo .home-img{
    margin-left: 37px;
}
.about-photo  .home-img2{
    margin-left: 182px;
    margin-top: -193px;
}
.about-photo  .home-img3{
   /*margin-left: -171px;*/
   margin-left: -221px;
   margin-top: 8px;
   width: 460px; 
   height: 320px;
}
.about-photo  .home-img3 .img{
  margin-left: 10px; 
  width: 460px;
  height: 320px;
  border: 16px solid #f3f3f3;
}


@media only screen and (max-width:1024px) {
  .about-photo  .home-img3{
  margin-left: -9px;
margin-top: -22px;
width: 339px;
height: 313px;
}  
}
@media only screen and (max-width:1024px) {
.about-photo  .home-img3 .img{
margin-left: 10px;
width: 460px;
height: 297px;
border: 16px solid
#f3f3f3;
}
 
}
.rs-about-2 .sec-title h3 {
  font-size: 30px;
}
.rs-about-2 .about-signature h4 {
  margin-bottom: 0;
  font-size: 20px;
}
.rs-about-2 .about-signature span {
  font-size: 14px;
}
#rs-about {
  margin-top: -30px;
}

.rs-events h4 {
    font-size: 20px;
    margin: 20px 0;
    text-align: center;
}

.rightcontact{
	float:left;
	width:100%;
	padding: 10px 49px;
	background:#ff3115;
	margin:30px 0 30px 0;
}
.admissionblock{
	float:left;
	width:100%;
	padding: 20px 49px;
	background:#002f6b;
	margin:0 0 30px 0;
}

.admissionblock h4 {
	font-size: 30px;
    color: #ffffff !important;
    padding: 0 0 0 0;
    margin: 0;
	font-weight: 700;
}

.right-testimonial{
	float:left;
	width:100%;
	padding:0;
	margin:0 0 30px 0;
}

.right-testimonial h5 {
	font-size: 22px;
    color: #ff3115;
    padding: 0 0 5px 0;
    margin: 0;
	font-weight: 700;
}
.bluetxt{
	color:#002f6b;
}


.contacttxt{
	float: left;
    width: 100%;
    padding: 10px 10px;
    background: #ff3115;
}

.contacttxt:before
{
	float: left;
    position: relative;
    font-size: 18px;
    color: #ffffff;
    background: url(images/contact_icon.html) no-repeat;
    content: "";
    width: 50px;
    height: 50px;
    top: 13px;
    left: -9px;
	
}

.contacttxt h4 {
	font-size: 20px;
    color: #f9f9f9;
    font-weight: 700;
    padding: 0 0 8px 0;
    margin: 0;
}
.contacttxt h5 {
	    font-size: 20px;
    color: #ffffff;
    padding: 0 0 8px 0;
    margin: 0;
	font-weight: 700;
}


/* ------------------------------------
    09. Popular Cources
---------------------------------------*/
.rs-courses .cource-item {
  border: 1px solid #dddddd;
}
.rs-courses .cource-item .cource-img {
  position: relative;
  margin-bottom: 22px;
}
.rs-courses .cource-item .cource-img img {
  width: 100%;
  transition: all 0.3s ease 0s;
}
.rs-courses .cource-item .cource-img .course-value {
  position: absolute;
  bottom: -25px;
  right: 25px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #ff3115;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
  z-index: 1;
}
.rs-courses .cource-item .course-body {
  text-align: center;
  padding: 0 20px;
}

.course-body-160 {
  text-align: left;
  padding: 0 20px;
  min-height: 160px;
}

.rs-courses .cource-item .course-body .course-category {
  display: inline-block;
}
.rs-courses .cource-item .course-body .course-title {
  font-size: 20px;
     margin-bottom: 21px;
}
.rs-courses .cource-item .course-body .course-title a {
  color: #212121;
}
.rs-courses .cource-item .course-body .course-title a:hover {
  color: rgba(33, 33, 33, 0.6);
}
.rs-courses .cource-item .course-body .review-wrap .rating {
  display: inline-block;
  color: #ff3115;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #ddd;
  line-height: 10px;
}
.rs-courses .cource-item .course-body .review-wrap .review {
  line-height: 10px;
  display: inline-block;
}
.rs-courses .cource-item .course-body .course-desc {
  margin-top: 10px;
}
.rs-courses .cource-item .course-body .course-desc p {
  margin: 0 0 22px;
}
.rs-courses .cource-item .course-footer {
  padding: 16px;
  background-color: #f0f0f0;
  text-align: center;
}
.rs-courses .cource-item .course-footer > div {
  display: inline-block;
  text-align: center;
  position: relative;
  line-height: 19px;
}
.rs-courses .cource-item .course-footer > div span {
  display: block;
  font-size: 14px;
  color: #212121;
  font-weight: 500;
}
.rs-courses .cource-item .course-footer > div span.label {
  font-weight: 700;
}
.rs-courses .cource-item .course-footer > div + div {
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid #ccc;
}
.rs-courses .cource-item.blue-color .course-footer {
  background: #00bcd4;
}
.rs-courses .cource-item.orange-color .course-footer {
  background: #fc7f0c;
}
.rs-courses .cource-item.purple-color .course-footer {
  background: #92278f;
}
.rs-courses .cource-item.red-color .course-footer {
  background: #e84b3a;
}
.event-item .events-details {
  margin-top: -20px;
  padding: 15px;
}
.event-item .events-details.white-bg {
  background: #fff;
}

.event-item .event-img:after,
.cource-item .event-img:after,
.event-item .cource-img:after,
.cource-item .cource-img:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
}
.event-item .event-img .image-link,
.cource-item .event-img .image-link,
.event-item .cource-img .image-link,
.cource-item .cource-img .image-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  -webkit-transform: translate(-50%, -50%) !important;
  -ms-transform: translate(-50%, -50%) !important;
  color: #ff3115;
  z-index: 11;
}
.event-item .event-img .image-link:hover,
.cource-item .event-img .image-link:hover,
.event-item .cource-img .image-link:hover,
.cource-item .cource-img .image-link:hover {
  color: #fff;
}
.event-item .event-img .image-link i,
.cource-item .event-img .image-link i,
.event-item .cource-img .image-link i,
.cource-item .cource-img .image-link i {
  font-size: 22px;
  font-weight: 400;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transition: all 0.3s ease 0s;
}
.event-item:hover .event-img:after,
.cource-item:hover .event-img:after,
.event-item:hover .cource-img:after,
.cource-item:hover .cource-img:after {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.event-item:hover .event-img .image-link i,
.cource-item:hover .event-img .image-link i,
.event-item:hover .cource-img .image-link i,
.cource-item:hover .cource-img .image-link i {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.rs-courses-list .course-item {
  margin-bottom: 40px;
}
.rs-courses-list .course-item .course-img {
  position: relative;
}
.rs-courses-list .course-item .course-img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.8);
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.rs-courses-list .course-item .course-img .image-link {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  line-height: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #ff3115;
  color: #ffffff;
  font-size: 18px;
  transform: translateX(-50%) translateY(-50%) scale(0.7);
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.rs-courses-list .course-item .course-img .image-link:hover {
  background-color: #e41f05;
}
.rs-courses-list .course-item .course-img:hover:before {
  opacity: 1;
}
.rs-courses-list .course-item .course-img:hover .image-link {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(1);
}
.rs-courses-list .course-category {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}
.rs-courses-list .course-category a {
  color: #505050;
}
.rs-courses-list .course-title {
  font-size: 24px;
  margin-bottom: 7px;
}
.rs-courses-list .course-title a {
  color: #212121;
}
.rs-courses-list .course-title a:hover {
  color: #ff3115;
}
.rs-courses-list .course-date,
.rs-courses-list .course-value {
  display: inline-block;
  font-size: 14px;
  color: #777777;
  font-weight: 600;
}
.rs-courses-list .course-value {
  margin-left: 12px;
}
.rs-courses-list .course-value span {
  color: #ff3115;
}
.rs-courses-list .course-body {
  margin-top: 12px;
}
.rs-courses-list .course-button a {
  display: inline-block;
  height: 42px;
  line-height: 42px;
  text-align: center;
  min-width: 170px;
  padding: 0 20px;
  background-color: #ff3115;
  color: #fff;
  transition: all 0.3s ease 0s;
  font-weight: 500;
}
.rs-courses-list .course-button a:hover {
  background-color: #e41f05;
}


/** form ***/
.queryform{
	display:block;
}
.queryform .form-group {
    margin-bottom: 8px;
}

.queryform .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 15px;
    line-height: 1.375em;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
*:focus {
    outline: none;
}

.notic-board{
	display:block;
	
}
.photogallery-hm{
	display:block;
	width:100%;
}
.photogallery-hm img {
	width:100%;
	height:auto;
	display:block;
}


/* ------------------------------------
    12. Upcoming Events
---------------------------------------*/
.rs-events .event-item .event-img {
  margin-bottom: 20px;
}
.rs-events .event-item .event-date {
  font-size: 14px;
  font-weight: 500;
}
.rs-events .event-item .event-date i {
  font-size: 13px;
  display: inline-block;
  margin-right: 5px;
  color: #ff3115;
}
.rs-events .event-item .event-date span {
  color: #505050;
}
.rs-events .event-item .event-title {
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 4px;
}
.rs-events .event-item .event-title a {
  color: #212121;
}
.rs-events .event-item .event-title a:hover {
  color: #ff3115;
}
.rs-events .event-item .event-meta {
  font-size: 14px;
}
.rs-events .event-item .event-meta > div {
  display: inline-block;
}
.rs-events .event-item .event-meta > div i {
  font-size: 14px;
  display: inline-block;
  margin-right: 3px;
  color: #ff3115;
}
.rs-events .event-item .event-meta .event-time {
  margin-right: 10px;
}
.rs-events .event-item .event-btn {
  margin-top: 18px;
}
.rs-events .event-item .event-btn a {
  font-weight: 500;
}


/* ------------------------------------
    34. ScrollUp
---------------------------------------*/
#scrollUp {
  text-align: center;
  bottom: 40px;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 40px;
  z-index: 999;
}
#scrollUp i {
  background-color: #ff3115;
  height: 40px;
  font-size: 24px;
  width: 42px;
  color: #ffffff;
  line-height: 36px;
  transition: all 0.3s ease 0s;
  margin-left: 2px;
}
#scrollUp i:hover {
  background-color: #e41f05;
  color: rgba(255, 255, 255, 0.7);
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
  }
  20% {
    background: #ff3115;
  }
  29.9% {
    background: #ff3115;
  }
  30% {
    -webkit-transform: perspective(200px) rotateY(-90deg);
    transform: perspective(200px) rotateY(-90deg);
    background: #e41f05;
  }
  54.999% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #e41f05;
  }
  100% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #e41f05;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
  }
  20% {
    background: #ff3115;
  }
  29.9% {
    background: #ff3115;
  }
  30% {
    -webkit-transform: perspective(200px) rotateY(-90deg);
    transform: perspective(200px) rotateY(-90deg);
    background: #e41f05;
  }
  54.999% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #e41f05;
  }
  100% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #e41f05;
  }
}
/* ------------------------------------
    37. Rs Footer
---------------------------------------*/
.rs-footer {
  color: #e8e8e8;
  margin-top:0;
}
.rs-footer .footer-title {
  margin-bottom: 40px;
  padding-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
  position: relative;
  font-weight: 600;
}
.rs-footer .footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 50px;
  background-color: #ff3115;
}
.rs-footer .container {
  position: relative;
}
.rs-footer .footer-contact-desc {
  margin: 0;
  background: #222;
  text-align: center;
  padding: 35px;
  position: absolute;
  left: 0;
  right: 0;
  margin: -100px auto 0;
  z-index: 111;
}
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner {
  border-left: 1px solid #ffffff;
}
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before,
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:after {
  content: '';
  position: absolute;
  height: calc(100% - 40px);
  width: 1px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before {
  left: 3px;
}
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:after {
  left: -5px;
}
.rs-footer .footer-contact-desc .contact-inner {
  position: relative;
}
.rs-footer .footer-contact-desc .contact-inner i {
  font-size: 28px;
  margin-bottom: 12px;
  color: #ff3115;
}
.rs-footer .footer-contact-desc .contact-inner .contact-title {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 20px;
}
.rs-footer .footer-contact-desc .contact-inner .contact-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 15px;
}
.rs-footer .footer-top {
  padding-top:70px;
}
.rs-footer .footer-top .recent-post-widget .post-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-date {
  width: 70px;
  height: 65px;
  flex: 0 0 70px;
  text-align: center;
  float: left;
  background-color: #ff3115;
  color: #ffffff;
  margin-right: 15px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-date > span {
  display: block;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-date > span:first-child {
  margin-top: 10px;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-date > span:last-child {
  font-size: 15px;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-title {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-title a {
  font-family: 'Montserrat', sans-serif;
  color: #e8e8e8;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-title a:hover,
.rs-footer .footer-top .recent-post-widget .post-item .post-title a:focus {
  color: #bbbbbb;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-category {
  font-size: 15px;
}
.rs-footer .footer-top .recent-post-widget .post-item + .post-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(102, 102, 102, 0.5);
}
.rs-footer .footer-top .sitemap-widget li {
  width: 50%;
  float: left;
  line-height: 33px;
}
.rs-footer .footer-top .sitemap-widget li a {
  color: #e8e8e8;
  display: inline-block;
  position: relative;
}
.rs-footer .footer-top .sitemap-widget li a:hover,
.rs-footer .footer-top .sitemap-widget li a:focus {
  color: #ff3115;
}
.rs-footer .footer-top .sitemap-widget li a i {
  padding-right: 10px;
}
.rs-footer .footer-top .flickr-feed li {
  display: inline-block;
  margin: 2px 3px;
  overflow: hidden;
  position: relative;
  width: 76px;
}
.rs-footer .footer-top .flickr-feed li img {
  -webkit-transition: .3s ease all;
  transition: .3s ease all;
}
.rs-footer .footer-top .flickr-feed li:hover img {
  opacity: 0.7;
}
.rs-footer .footer-top .news-form {
  position: relative;
}
.rs-footer .footer-top .news-form input {
  background: rgba(0, 0, 0, 0);
  border: 1px solid #ff3115;
  color: #ffffff;
  height: 50px;
  outline: 0 none;
  padding: 5px 15px;
  width: 100%;
}
.rs-footer .footer-top .news-form button {
  background: #ff3115;
  border: none;
  color: #ffffff;
  font-size: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.rs-footer .footer-top .news-form button:hover {
  background: #e41f05;
}
.rs-footer .footer-top .about-widget img {
  margin-bottom: 25px;
}
.rs-footer .footer-share {
  text-align: left;
  margin-top: 10px;
}
.rs-footer .footer-share ul li {
  display: inline-block;
}
.rs-footer .footer-share ul li a {
  font-size: 13px;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  line-height: 44px;
  text-align: center;
  color: #fff;
  transition: all .3s ease 0s;
  background: rgba(255, 255, 255, 0.15);
}
.rs-footer .footer-share ul li a:hover {
  background-color: #ff3115;
  color: #ffffff;
}
.rs-footer .footer-share ul li + li {
  margin-left: 5px;
}
.rs-footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0;
  margin-top: 35px;
}
.rs-footer .footer-bottom .copyright p {
  opacity: 0.95;
  margin-bottom: 0;
  font-size: 15px;
}
.rs-footer-2 .footer-share {
  margin-top: 20px;
}


/* ------------------------------------
    24. About Us Page
---------------------------------------*/
.abt-title h2 {
  font-size: 30px;
  line-height: normal;
  margin-bottom: 20px;
  padding-bottom: 16px;
  text-transform: uppercase;
  position: relative;
}
.abt-title h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 100px;
  background-color: #ff3115;
}
.abt-title.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}
.rs-vision {
	display:block;
	margin:0 0 30px 0;
	overflow:hidden;
}
.rs-vision .vision-img {
  position: relative;
}
.rs-vision .vision-img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(33, 33, 33, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.rs-vision .vision-img:hover:after {
  opacity: 1;
}
.rs-vision .vision-img .popup-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.rs-vision .vision-img .popup-youtube:after {
  position: absolute;
  font-family: FontAwesome;
  content: "\f04b";
  font-size: 36px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s ease 0s;
  display: inline-block;
  height: 80px;
  line-height: 80px;
  width: 80px;
  text-align: center;
  border: 3px solid #fff;
  border-radius: 50%;
  padding-left: 8px;
  color: #fff;
}


/*-------------------------------------
 Contact Page Section Start Here
--------------------------------------*/
.contact-page-section #googleMap {
  height: 400px;
  float:left;
  display:block;
  margin:0 0 60px 0;
  width:100%;
}
.contact-page-section .map-text {
  padding-bottom: 22px;
}
.contact-page-section .map-text h3 {
  font-size: 20px;
  margin: 0;
  padding: 25px 0 10px;
  font-weight: 600;
}
.contact-page-section .map-text p {
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.contact-page-section .contact-address-section {
  text-align: center;
  margin: 50px 0;
}
.contact-page-section .contact-address-section .contact-info {
  background: #f0f0f0;
  border: 1px solid #e1e1e1;
  padding: 25px 0 23px;
  height: 247px;
}
.contact-page-section .contact-address-section .contact-info .contact-pd {
  padding: 0 10px;
}
.contact-page-section .contact-address-section .contact-info i {
  color: #ff3115;
  font-size: 36px;
  margin: 0;
  padding: 0;
}
.contact-page-section .contact-address-section .contact-info h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #212121;
  margin: 0;
  padding: 15px 0;
}
.contact-page-section .contact-address-section .contact-info a {
  color: #505050;
  display: block;
}
.contact-page-section .contact-address-section .contact-info a:hover {
  color: #ff3115;
}
.contact-page-section .contact-address-section .contact-info p {
  color: #505050;
  margin: 0;
  padding: 0;
}

.contact-page-section .contact-comment-section {
  display:block;
  margin:0 0 40px 0;
}
.contact-page-section .contact-comment-section h3 {
  font-size: 20px;
  margin: 0;
  padding-bottom: 30px;
  text-transform: uppercase;
  font-weight: 600;
}
/* .contact-page-section .contact-comment-section form .form-group input {
  height: 43px;
  padding: 0 15px;
}
.contact-page-section .contact-comment-section form .form-group input,
.contact-page-section .contact-comment-section form .form-group textarea {
  border: none;
  background: #f5f5f5;
  border-radius: 0;
  box-shadow: none;
}
.contact-page-section .contact-comment-section form .form-group label {
  color: #505050;
  font-weight: 400;
} */
.contact-page-section .contact-comment-section form .form-group input.btn-send {
  text-transform: uppercase;
  color: #ffffff;
  background-color: #04234a;
  margin-top: 15px;
  border: none;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 600;
  padding: 0 50px;
  cursor: pointer;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
   border-radius:8px;
	  -webkit-border-radius:5px;
	  -moz-border-radius:5px;
	  -o-border-radius:5px;
}
/* .contact-page-section .contact-comment-section form .form-group input.btn-send:hover {
  background: #f30000;
  color:#ffffff;
} */

.queryform input.btn-send {
	 text-transform: uppercase;
	  color: #ffffff;
	  background-color: #04234a;
	  margin-top:8px;
	  border: none;
	  font-size:15px;
	  height:35px;
	  text-align: center;
	  font-weight: 500;
	  line-height:35px;
	  padding:0 30px;
	  cursor: pointer;
	  transition: 0.4s;
	  -webkit-transition: 0.4s;
	  -ms-transition: 0.4s;
	  border-radius:8px;
	  -webkit-border-radius:5px;
	  -moz-border-radius:5px;
	  -o-border-radius:5px;
}
.queryform input.btn-send:hover {
  background: #f30000;
  color:#ffffff;
}
.sl-get-started-btn
{
	 text-transform: uppercase;
	  color: #ffffff;
	  background-color: #04234a;
	  margin-top:8px;
	  border: none;
	  font-size:15px;
	  height:35px;
	  text-align: center;
	  font-weight: 500;
	  line-height:35px;
	  padding:0 30px;
	  cursor: pointer;
	  transition: 0.4s;
	  -webkit-transition: 0.4s;
	  -ms-transition: 0.4s;
	  border-radius:8px;
	  -webkit-border-radius:5px;
	  -moz-border-radius:5px;
	  -o-border-radius:5px;
}

.sl-get-started-btn:hover{
	 background: #f30000;
  color:#ffffff;
}
.fa-file-pdf-o {
	color: #04234a !important
}
ol.twocol{
	display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}
ol.twocol li {
	float:left;
	width:100%;
	margin:0 0 10px 0;
	padding:0 0 10px 0;
}



ol.twocol li ol {
	
    margin:15px 0 0 0;
    padding:0 0 0 15px;
	width:100%;
	}
	
ol.twocol li ol li {  
float:left;
width:100%;

}

ol.twocol li ol li .col1{
	float:left;
	margin:0 4% 0 0;
	width:46%;
	
}
ol.twocol li ol li .col1:last-child{
	margin:0;
}



/* ------------------------------------
    33. Rs Gallery
---------------------------------------*/
.rs-gallery .gallery-item {
  position: relative;
}
.rs-gallery .gallery-item .gallery-desc {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 25px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.rs-gallery .gallery-item .gallery-desc h3 {
  margin-bottom: 12px;
  font-size: 15px;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
}
.rs-gallery .gallery-item .gallery-desc h3 a {
  color: #ffffff;
}
.rs-gallery .gallery-item .gallery-desc p {
  color: #e1e1e1;
  margin-bottom: 30px;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}
.rs-gallery .gallery-item .gallery-desc .image-popup {
  display: inline-block;
  width: 50px;
  line-height: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #ff3115;
  color: #ffffff;
  font-size: 18px;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.rs-gallery .gallery-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.8);
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.rs-gallery .gallery-item:hover:before {
  opacity: 1;
}
.rs-gallery .gallery-item:hover h3,
.rs-gallery .gallery-item:hover p,
.rs-gallery .gallery-item:hover .image-popup {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}
.rs-gallery .row {
  margin-bottom: 30px;
}
.rs-gallery-section .single-gallery {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.rs-gallery-section .single-gallery:after {
  content: "";
  width: 80%;
  height: 80%;
  background: #92278f;
  position: absolute;
  top: 10%;
  left: 10%;
  display: block;
  overflow: hidden;
  opacity: 0.8;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
}
.rs-gallery-section .single-gallery .popup-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.rs-gallery-section .single-gallery .popup-icon a {
  font-size: 20px;
  display: inline-block;
  margin: 0 8px;
  color: #fff;
}
.rs-gallery-section .single-gallery:hover:after {
  opacity: 0.8;
  visibility: visible;
  transform: scale(1);
}
.rs-gallery-section .single-gallery:hover .popup-icon {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------
    13. Experienced Staffs
---------------------------------------*/

.rs-team-2 .team-item {
  margin-bottom: 30px;
}
.rs-team-2 .team-item .team-img {
  position: relative;
  overflow: hidden;
 
}
.rs-team-2 .team-item .team-img a {
	display:block;
	
}

.rs-team-2 .team-item .team-img a img {
    max-width: 100%;
    height: 352px;
    display: block;
    width: 100%;
}

.rs-team-2 .team-item .team-body {
  padding: 18px;
  text-align: center;
  background-color: #f0f0f0;
}
.rs-team-2 .team-item .team-body a{
	display:block;
}
.rs-team-2 .team-item .team-body a:hover {
	background:#505050 !important;
}
.rs-team-2 .team-item .team-body .name {
  font-size: 20px;
  margin-bottom: 2px;
  color: #212121;
  transition: all 0.3s ease 0s;
}
.rs-team-2 .team-item .team-body .name:hover {
  color: #ff3115;
}
.rs-team-2 .team-item .team-body .designation {
  font-size: 15px;
  
    padding: 5px 0 0 0;
}
.rs-team-2.team-page {
  padding-top: 93px;
}
.rs-team-2 .row.grid {
  min-height: 400px !important;
  overflow: hidden;
}
.team-all .row {
  margin-bottom: 30px;
}
.team-all .row .team-item {
  margin-bottom: 0;
}

.team-item .infra-head{
	background:#072f6c;
	color:#ffffff;
	font-size:16px;
	text-align:center;
	padding:10px 0;
	text-align:center;
	font-weight:700;
	
}


ul.pdflist{
	list-style:none;
}

ul.pdflist li {
	list-style:none;
	padding:0 0 10px 0;
}
ul.pdflist li .fa-file-pdf-o
	{
		display:inline-block;
		margin:0;
		padding:0 5px 0 0;
		font-size:15px;
		color:#002f6b;
	}


@media all {
    .featherlight {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2147483647;
        text-align: center;
        white-space: nowrap;
        cursor: pointer;
        background: #333;
        background: rgba(0, 0, 0, 0)
    }
    .featherlight:last-of-type {
        background: rgba(0, 0, 0, .8)
    }
    .featherlight:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -.25em
    }
    .featherlight .featherlight-content {
        position: relative;
        text-align: left;
        vertical-align: middle;
        display: inline-block;
        overflow: auto;
        padding: 25px 25px 0;
        border-bottom: 25px solid transparent;
        min-width: 60%;
        margin-left: 5%;
        margin-right: 5%;
        max-height: 95%;
        background: #fff;
        cursor: auto;
        white-space: normal
    }
    .featherlight .featherlight-inner {
        display: block
    }
    .featherlight .featherlight-close-icon {
           position: absolute;
			z-index: 9999;
			top: 3px;
			right: 9px;
			height: 30px;
			font-size: 20px;
			font-weight: bold;
			width: 33px;
			cursor: pointer;
			text-align: center;
			color:#ff1e00;    
			border: 1px solid #eeeeee;
			background: transparent;
    
    }
    .featherlight .featherlight-image {
        width: 100%
    }
    .featherlight-iframe .featherlight-content {
        border-bottom: 0;
        padding: 0
    }
    .featherlight iframe {
        border: 0
    }
}

@media only screen and (max-width:1024px) {
    .featherlight .featherlight-content {
        margin-left: 10px;
        margin-right: 10px;
        max-height: 98%;
        padding: 10px 10px 0;
        border-bottom: 10px solid transparent
    }
	.nav-menu > li > a {
		font-size: 14px !important; 
		text-transform: uppercase;
		font-weight: 600;
		height: 55px;
		line-height: 55px;
	}
}



/* ------------------------------------
    14. Staffs Single
---------------------------------------*/
.team-all .row {
  margin-bottom: 30px;
}
.team-all .row .team-item {
  margin-bottom: 0;
}
.rs-team-single .team-name {
  font-size: 30px;
  margin-bottom: 10px;
}
.rs-team-single .team-title {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 5px;
}
.rs-team-single .team-title span {
  display: block;
}
.rs-team-single .team-contact {
  margin-bottom: 15px;
}
.rs-team-single .team-icons {
  padding: 30px;
  text-align: center;
}
.rs-team-single .team-icons a {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #f0f0f0;
  margin-right: 15px;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
}
.rs-team-single .team-icons a:hover {
  background-color: #ff3115;
  color: #fff;
}
.rs-team-single .rs-progress {
  height: 8px;
  border: 1px solid #ff3115;
  border-radius: 0;
  overflow: visible;
  padding: 1px;
  background: #fff;
  margin-top: 25px;
}
.rs-team-single .rs-progress + .rs-progress {
  margin-top: 50px;
}
.rs-team-single .rs-progress .progress-bar {
  position: relative;
  text-align: left;
  line-height: 4px;
  border-radius: 0;
  box-shadow: none;
  background-color: #ff3115;
}
.rs-team-single .rs-progress .progress-bar .pb-label {
  position: absolute;
  left: 0px;
  top: -24px;
  color: #666;
  font-size: 15px;
  font-weight: 600;
}
.rs-team-single .rs-progress .progress-bar .pb-percent {
  position: absolute;
  right: -13px;
  font-weight: 500;
  color: #fff;
  font-size: 10px;
  top: -30px;
  background: #ff3115;
  padding: 8px 5px;
}
.rs-team-single .rs-progress .progress-bar .pb-percent:after {
  content: '';
  position: absolute;
  border: 5px solid transparent;
  left: 50%;
  border-top-color: #ff3115;
  top: 20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.experience-box{
	display:block;
	width:100%;
}

.experience-box p {
	margin:0 0 20 0;
	width:100%;
	padding:10px 10px;
	background:#ffebe8;
	color:#000000;
	
}
.experience-box p strong{
	color:#002f6b;
	font-weight:700;
	display:inline-block;
	margin:0 10px 0 0;
}
.team-photo{
	display:block;
	width:100%;
}
.team-photo img {
	height:auto;
	max-width:100%;
	width:100%;
}
.facultydetail-left
{
	display:block;
	padding:0;
	margin:0;
	width:100%;
}
.designation{
	    display: block;
    padding: 20px 0 0 0;
    color: #ff3115;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

/*** Rsmenu ***/

.rs-menu {
   float: left;
   clear: both;
   width: 100%;
   font-size: 0;
   position: relative;
  
}

.rs-menu ul,
.rs-menu li,
.rs-menu p,
.rs-menu a,
.rs-menu div,
.rs-menu i {
   border: 0;
   margin: 0;
   padding: 0;
}

.rs-menu li {
   display: block;
   vertical-align: top;
   position: relative;
}

.rs-menu a {
   display: block;
   padding: 16px;
}

.rs-menu .row {
    float: left;
    width: 100%;
    position: relative;
}


.rs-menu ul ul {
	position: absolute;
	top: 100%;
	width: 100%;
	display: none;
	/*background-color: #111111; by Vishnu Choudhary*/
	background-color: #094a86;
}
.home5 .rs-menu ul ul {
	background-color: #00bcd4; 
}
.home5 .rs-menu ul ul li {
    border-bottom:1px solid #048d9e;
}
.home5 .rs-menu a{
    color: #fff;
}
.rs-menu ul ul.visible, .rs-menu ul .rs-mega-menu ul.visible ul.sub-menu {	
	display:block;
   z-index: 17;
}


.rs-menu li:hover > ul.mega-menu > li > ul {
    position:relative;
}

.rs-menu ul ul li {
    border-bottom:1px solid #222;
}

.rs-menu ul ul li:last-child,
.rs-menu ul ul li.mega-menu-container{
    border-bottom: 0;
}

.rs-menu ul ul li:last-child {
    border-bottom:none;
}


.rs-menu .sub-menu, .mega-menu {
	-webkit-box-shadow: 0px 4px 13px -3px #232323;
    -moz-box-shadow: 0px 4px 13px -3px #232323;
    -ms-box-shadow: 0px 4px 13px -3px #232323;
    -o-box-shadow: 0px 4px 13px -3px #232323;
    box-shadow: 0px 4px 13px -3px #232323;
}
.mega-rs h2{
	position: absolute;
	bottom: 30px;
	margin: 0 !important;
	padding: 5px 28px;
	left: 25px;
	background: rgba(0,0,0,.8);
	color: #fff;
}
.mega-rs ul li a{
	position: relative;
}
#inner .rs-menu li a {
    color: #000;
}
#inner .rs-menu li li a{
	color: #fff;
}


.rs-menu a {
    color:#bbb;

	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.multi ul ul{
	background: transparent !important;
}

.multi ul li a{
	font-weight: 400 !important;
	font-size: 13px !important;
}

.nav-menu > li > a { 
	/*font-size: 16px; by Vishnu Choudhary*/
	/*text-transform: uppercase; by Vishnu Choudhary*/
	/*font-weight:600;  by Vishnu Choudhary*/
	height: 55px;
	line-height: 55px;
	font-size: 17px;
    /*text-transform: capitalize;*/
    text-transform: uppercase;
}


.rs-menu a {    
	padding: 0px 20px;
}
.inner-page .rs-menu ul.nav-menu > li > a,    
 
.home1 .rs-menu ul.nav-menu > li > a {    
	padding: 0;
}
.inner-page .rs-menu ul.nav-menu > li,

.home1 .rs-menu ul.nav-menu > li{
    /*margin-right: 40px by Vishnu Choudhary*/
    margin-right: 15px
}
.home1 .rs-menu ul.nav-menu > li:last-child{
    margin-right: 0;
}
.inner-page .rs-menu ul{
    margin-right: 13px;
}


.rs-menu li i {
	margin-right:10px;
	font-size:16px;
	transform:translate3d(0, 0, 0);    
}


.nav-menu .rs-mega-menu > a span:after, .nav-menu > .menu-item-has-children > a span:after {
    content:"\f107";
    font-family:FontAwesome;
    float:right;
    margin:2px 0 0 5px;
}

.mega-menu h1, .mega-menu h2, .mega-menu h3 {
	margin-bottom:24px;
}


.nav-menu li .mega-menu li a {    
    padding:0;
	width:auto;
	display:inline-block;
}


.rs-menu ul,
.home1 .rs-menu ul,
.home4 .rs-menu ul{
	text-align: left;
}
.rs-menu li {
    font-size:14px;
}

.rs-menu .sub-menu li a {
	padding: 10px 14px;
	color: #fff; 
	/* by vishnu choudhary */
}


.rs-menu ul ul a {   
    font-size: 16px;	
    text-align: left;
}

.mega-menu p {
	margin:12px 0;
}

.mega-menu li p a {
	font-size:16px;
    font-family: "Open Sans",sans-serif;
}

.nav-menu {
    position:relative;
}

.nav-menu .rs-mega-menu {
    position: relative;
}

.nav-menu .mega-menu {
    left:0;
    width:100%;
	position:absolute;   
}

.nav-menu .mega-menu .mega-menu-container {
	float:left;
	width:100%;
	position:relative;
    padding: 0 6px;
}

.nav-menu .mega-menu .sub-menu {
    display:block;
    position:relative;
	width:auto;
    padding:0;
    min-height:initial;
    box-shadow:none;   
}

.nav-menu .mega-menu .sub-menu a {
	padding:12px;
}

.nav-menu .mega-menu .sub-menu li, .nav-menu .mega-menu .sub-menu a {
    width:100%;
}

.nav-menu .mega-menu li div.mega-menu-img a {
	float:left;
	width:100%;
	min-height:230px;
	padding:12px;
}


.nav-menu .mega-menu li div.mega-menu-img a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.multi .sub-menu li img{
    width: 50px;
    transition: all 0.5s ease 0s;
    border-radius: 100%;
}
.multi .sub-menu li:hover img{
	transform: rotate(100deg);
}
.multi .sub-menu li{
	margin-bottom: 15px;
}
.multi .sub-menu li{
	padding-bottom: 15px;
}
.multi .col-3 .sub-menu li a{
	display: inline;
}
.nav-menu .mega-menu-img h2 {
	font-size:16px;
	margin:12px 0 0 0;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.nav-menu .mega-menu > li .mega-menu-img-meta {
    padding:0;
    width:auto;
    position:relative;
    height:auto;
    overflow:hidden;
    -webkit-backface-visibility:hidden;
}

#map {
	height:500px;
}

.nav-menu ul {
    -webkit-transition:all .3s ease-in-out;
    -moz-transition:all .3s ease-in-out;
    -ms-transition:all .3s ease-in-out;
    -o-transition:all .3s ease-in-out;
    transition:all .3s ease-in-out
}

.mega-menu-img-meta img {
    -webkit-transition:-webkit-transform .3s ease-in-out;
    -moz-transition:-moz-transform .3s ease-in-out;
    -o-transition:-o-transform .3s ease-in-out;
    -ms-transition:-ms-transform .3s ease-in-out;
    transition:transform .3s ease-in-out
}


.rs-menu .line {
	padding-bottom:12px;
	border-bottom:1px solid rgba(0, 0, 0, .05);
	margin-top: 20px;
	text-align: left;
	color: #fff;
	padding-left: 15px;
}

.rs-menu img {
	max-width:100%;	
    height:auto;
    -ms-interpolation-mode:bicubic
}

@media screen and (min-width: 500px) {
	.rs-menu h1 {
		font-size: 3.8rem;
		line-height: 1.2em;
	}

	.rs-menu h2 {
		font-size: 2rem;
		line-height: 1.2em;
	}

	.rs-menu h3 {
		font-size: 3.3rem;
	}

	.rs-menu h4 {
		font-size: 2.8rem;
	}
}

@media screen and (min-width: 992px) {
	.rs-menu {
	
		height: auto !important;
	}
	
	.rs-menu h1 {
		font-size: 3.2rem;
		line-height: 1.2em;
	}

	.rs-menu h2 {
		font-size: 2.5rem;
		line-height: 1.2em;
	}

	.rs-menu h3 {
		font-size: 2rem;
	}
	
	.rs-menu h4 {
		font-size: 1rem;
	}
	
	/* Grid */
   .rs-menu .row [class*="col-"] {
      display: block;
      width: 100%;
      min-height: 5px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      float: left;
      margin-left: 2.5%;
   }

   .rs-menu .row [class*="col-"]:first-child {
      margin-left: 0 !important;
   }

   .rs-menu .row .col-12 {
      width: 100%;
   }

   .rs-menu .row .col-11 {
      width: 91.45833333333334%;
   }

   .rs-menu .row .col-10 {
      width: 82.91666666666667%;
   }

   .rs-menu .row .col-9 {
      width: 74.375%;
   }

   .rs-menu .row .col-8 {
      width: 65.83333333333334%;
   }

   .rs-menu .row .col-7 {
      width: 57.29166666666667%;
   }

   .rs-menu .row .col-6 {
     width: 48.75%;
   }

   .rs-menu .row .col-5 {
     width: 40.208333333333336%;
   }

   .rs-menu .row .col-4 {
      width: 31.666666666666668%;
   }

   .rs-menu .row .col-3 {
      width: 23.125%;
   }

   .rs-menu .row .col-2 {
      width: 14.583333333333334%;
   }

   .rs-menu .row .col-1 {
      width: 6.041666666666667%;
   }
	/*-----------------------------------------------------------------------------------*/
	/*  RESPONSE MENU
	/*-----------------------------------------------------------------------------------*/
	.rs-menu li {
    	display:inline-block;
	}
	
	.nav-menu .rs-mega-menu {
    	position: static;
	}
	
	.rs-menu ul ul.visible {
		visibility: hidden;
    	opacity:0;
	}
	
	/* Remove arrows if not in mobile */
	.nav-menu .menu-item-has-children > span, .nav-menu .rs-mega-menu > span {
		display:none;
	}
	
	/* Remove Menu Toggle if not in mobile */	
	.rs-menu-toggle {
		display:none;
	}
	
	/* Remove Menu Close if not in mobile */
	.nav-menu div.sub-menu-close {
		display:none;
	}
	
	
	/* Show sub-menus in hover */
	.rs-menu li:active > ul, .rs-menu li:focus > ul, .rs-menu li:hover > ul, .rs-menu li:hover > ul.mega-menu > li > ul, .rs-menu li:hover ul.mega-menu .sub-menu {		
		display:block;
		z-index: 17;	
	}

	/* Adjust position the sub-menus in the left */
	.rs-menu ul ul li > ul {
		left:100%;
	}
	
	/* Adjust position the sub-menus on the top */
	.rs-menu ul ul ul {
		top: 0;
	}	
	
	.rs-menu ul ul {
		width:auto;
	}
	
	/* Sub-menus - width */
	.rs-menu ul ul a {
	    /*width:285px; by padam yadav*/
		width:330px;	/* <- Modify for width change */
	}
	
	.nav-menu .mega-menu li div.mega-menu-img a {	
		width:25%;
	}
    .nav-menu .mega-menu li div.mega-menu-innner .single-magemenu {
        width: 25%;
        float: left;
        padding: 0 12px;
    }
		
}


@media screen and (min-width:0\0) {
	.rs-menu img {
    	width:100%;    	
	}
	
    .nav-menu .menu-item-has-children a, .nav-menu .rs-mega-menu a {
        padding-right:24px
    }
	
    .nav-menu .menu-item-has-children a:after, .nav-menu .rs-mega-menu a:after {
        position:static;
        float:right;
        margin:0 -16px 0 0
    }   
}

@media only screen and (max-width: 991px) {
   .rs-menu .row [class*="col-"] {
       float: left!important;
       width: 100%!important;
       margin-left: 0!important;
       margin-right: 0!important;
    }
   
	.nav-menu > li > a {
		border-bottom: 1px dashed #86b6f3;
		color: #fff !important;
		text-align: left;
	}
	
	.nav-menu > li:last-child > a {
    	border-bottom:none;
	}
	
	.nav-menu span.rs-menu-parent i { 
		margin:0;
		font-size: 31px;
	}
	
	.nav-menu > .menu-item-has-children > span.rs-menu-parent, .nav-menu .rs-mega-menu > span.rs-menu-parent {		
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		padding: 7px 16px 8px;
		cursor:pointer;
		line-height: 15px;
		background: #ffffff;
		border-left: 1px solid #eeeeee;	
		
		/* Remove the blue Webkit background when element is tapped */
		-webkit-tap-highlight-color:rgba(0,0,0,0);    
	}	
	
	.nav-menu > .menu-item-has-children > span.rs-menu-parent:hover, .nav-menu .rs-mega-menu > span.rs-menu-parent:hover {	
		color: #fff;
	}
	
	.nav-menu > .menu-item-has-children .sub-menu .menu-item-has-children span.rs-menu-parent {		
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		padding: 20px;	
		cursor:pointer;
		line-height: 15px;
		border-left:1px solid rgba(0, 0, 0, .05);		
		
		/* Remove the blue Webkit background when element is tapped */
		-webkit-tap-highlight-color:rgba(0,0,0,0);    
	}

	/*Options Menu Closed*/
	.nav-menu div.sub-menu-close {
		display:none;
	}
	
	.nav-menu div.sub-menu-close i {		
		display:none;
	}
	
	.rs-menu .sub-menu {
		-webkit-box-shadow: 0 0 20px rgba(0,0,0,.15);
		-moz-box-shadow: 0 0 20px rgba(0,0,0,.15);
		-ms-box-shadow:  0 0 20px rgba(0,0,0,.15);
		-o-box-shadow:  0 0 20px rgba(0,0,0,.15);
		box-shadow:  0 0 20px rgba(0,0,0,.15);
	}
	
	.rs-menu-close {
    	height: 0;		
    	overflow: hidden!important;
	}
	
	/*Menu Toggle Appearance*/
	.rs-menu-toggle {      
		padding: 15px 0 20px 0;
		margin: 0 0 0 0;
		display: block;
		background: #002f6b;
		position: relative;
		cursor:pointer;		
		color: #ffffff;
		font-size: 20px;
		text-transform: uppercase;
		
		-webkit-tap-highlight-color:rgba(0,0,0,0);
	}
	
	.rs-menu-toggle i {
		margin-right:10px; 
	}
	
}

@media only screen and (max-width: 1080px) {	
	.nav-menu > li > a i {
		display:none;
	}
}


@media only screen and (min-width: 992px) {	
	.home5 .rs-menu > ul > li > a{
		padding: 0;
		height: 80px;
		line-height: 80px;
		padding-right: 20px;
	}
	.home5 .sticky4 .rs-menu > ul > li:first-child a{
		padding-left: 0;
	}
	.home5 #rs-header .middle-header-home5 .sticky4 .header-bottom-area .navbar ul li:first-child{
		margin-left: 0;
	}
	
}


.captch-box {
    background: #f0f0f0;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    display: inline-block;
    height: 43px;
}

#captcha span {
    width: 44px;
    position: relative;
    top: -28px;
    left: -12px;
    color: #ed0505;
    font-size: 16px;
    font-weight: 600;
}

#captcha input {
    background: url(../images/refresh-button.png) no-repeat scroll 0 0 transparent;
    margin: 5px 0 0;
    padding: 0;
    border: medium none;
    cursor: pointer;
    width: 15px;
}
.captcha {
	width:100%;
	margin:33px 0 0 0;
}





.queryform .captch-box {
    background: #f0f0f0;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    display: inline-block;
    height: 43px;
}

.queryform #captcha span {
   width: 44px;
    position: relative;
    top: -12px;
    left: -24px;
    color: #ed0505;
    font-size: 16px;
    font-weight: 600;
}

.queryform #captcha input {
    background: url(../images/refresh-button.png) no-repeat scroll 0 0 transparent;
    margin: 5px 0 0;
    padding: 0;
    border: medium none;
    cursor: pointer;
    width: 15px;
}
.queryform .captcha {
	
	margin:0;
	display: block;
    width: 100%;
    padding: .500rem .75rem;
    font-size: 15px;
    line-height: 1.375em;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
	
	.queryform .cap_status{
                
                padding: 10px;
                font-size: 14px;
                color:#ffffff;
				display:none;
				text-align:center;
            }
      .queryform .cap_status_error{
                background:#ffffff;  
				color:#e41f05;  
		   }
			
		.queryform .cap_status_success
			{
				background:#fff;  
				color:#e41f05;
			}
		.queryform .form-group .captcha-box 
		{ 
			float:left;
			margin:0 10px;
		}
		
		.queryform .form-group .captcha-img{
			float:left;
		}
		.queryform .form-group .captchatxt { display:block; text-align:center; font-size:14px; color:red;}
		
		
		
		#myModal{
	
	top:30%;
}

#myModal .modal-dialog .modal-content .modal-header {
    
    border-bottom:none !important;
}
#myModal .modal-dialog .modal-content .modal-header a.close {
	color:red;
	font-size:20px;
	display:inline-block;
}

#myModal .modal-dialog .modal-content .modal-body .popupdiv{
	
	position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#myModal .modal-dialog .modal-content .modal-body .popupdiv img{
	
	max-width:100%;
	height:auto;
	display:block;
	margin:0 auto;
}

#myModal .modal-dialog .modal-content .modal-body .convert-btn {
	
	display: block;
    margin: 0 auto;
    position: absolute;
    top: 62%;
    left: 29%;
    width: auto;
    /* background: #002f6b; */
    background-color: #ed1c24;
    border: 2px solid #ed1c24;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
}
#myModal .modal-dialog .modal-content .modal-body .convert-btn a {
    color: #f9f9f9;
    display: block;
    padding: 9px 22px;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
}
@media only screen and (max-width: 6000px)
{
.page-wrapper {
    overflow: hidden;
}
}
.fixed-convert {
	display:none;
}

.desktop-serviceview{
	display:block;
}

.teaching-head {
	font-size:18px;
	font-weight:600;
	color:#072f6c;
	border-bottom:1px solid #072f6c;
}
ul.openinglist{
	padding:0;
	margin:10px 0 12px 0;
}
ul.openinglist li {
	font-size:16px;
	color:#000000;
	padding:0;
	margin: 0 0 10px 0;
}
ul.openinglist li .post {
	color:#ff3115;
	font-weight:600;
}