@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Roboto+Condensed:400,500,600,700');
[class*='rs-animation-'] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.rs-animation-fade {
  -webkit-animation-name: rs-fade;
  animation-name: rs-fade;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}
.rs-animation-slide-top {
  -webkit-animation-name: rs-fade-top;
  animation-name: rs-fade-top;
}
.rs-animation-slide-bottom {
  -webkit-animation-name: rs-fade-bottom;
  animation-name: rs-fade-bottom;
}
.rs-animation-slide-left {
  -webkit-animation-name: rs-fade-left;
  animation-name: rs-fade-left;
}
.rs-animation-slide-right {
  -webkit-animation-name: rs-fade-right;
  animation-name: rs-fade-right;
}
.rs-animation-scale-up {
  -webkit-animation-name: rs-animation-scale-up;
  animation-name: rs-animation-scale-up;
}
.rs-animation-scale-down {
  -webkit-animation-name: rs-animation-scale-down;
  animation-name: rs-animation-scale-down;
}
.rs-animation-shake {
  -webkit-animation-name: rs-shake;
  animation-name: rs-shake;
}
.rs-animation-rotate {
  -webkit-animation-name: rs-rotate;
  animation-name: rs-rotate;
}
.rs-animation-scale {
  -webkit-animation-name: rs-scale;
  animation-name: rs-scale;
}
.rs-animation-hover:not(:hover),
.rs-animation-hover:not(:hover) [class*='rs-animation-'] {
  -webkit-animation-name: none;
  animation-name: none;
}
.rs-animation-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
.rs-image-effect-shine {
  position: relative;
  overflow: hidden;
}
.rs-image-effect-shine::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.rs-image-effect-shine:hover::before {
  -webkit-animation: img-shine 1s;
  animation: img-shine 1s;
}
@-webkit-keyframes img-shine {
  100% {
    left: 125%;
  }
}
@keyframes img-shine {
  100% {
    left: 125%;
  }
}
/*-------------------------
    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
-------------------------------------*/
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 26px;
}
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: #000;
  transition: all 0.3s ease 0s;
  text-decoration: none !important;
  outline: none !important;
}
a:active,
a:hover {
  text-decoration: none;
  outline: 0 none;
  color: #da8502;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.clear {
  clear: both;
}
::-moz-selection {
  background: #f7b90d;
  text-shadow: none;
  color: #ffffff;
}
::selection {
  background: #f7b90d;
  text-shadow: none;
  color: #ffffff;
}
.sec-spacer {
  padding: 100px 0;
}
.sec-color {
  background-color: #f9f9f9;
}
.drak-color {
  background-color: #252525;
}
.gray-color {
  background-color: #f0f0f0;
}
.primary-color {
  color: #f7b90d;
}
.primary-bg {
  background: #f7b90d;
}
.sec-black {
  background: #212121;
}
.bg-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.bg3 {
	background-color: #3c3c3c;
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}
.uppercase {
  text-transform: uppercase;
}
li#menu-item-18 a {
    background-color: #f7b90d;
    padding: 0 20px;
    color: #000;
	border-radius: 10px;
}
li#menu-item-18 a:hover {
    color: #fff !important;
}
/*Global Class*/
.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;
}
.rs-carousel:hover .owl-controls .owl-nav > div {
  opacity: 1;
}
.rs-navigation-2 {
  padding-bottom: 80px;
}
.rs-navigation-2 .owl-controls .owl-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.rs-navigation-2 .owl-controls .owl-nav > div {
  position: initial;
  display: inline-block;
  transform: none;
  opacity: 1 !important;
}
.rs-navigation-2 .owl-controls .owl-nav .owl-next {
  margin-left: 12px;
}
.rs-navigation-2 .owl-stage-outer {
  padding-bottom: 0 !important;
}
/* ------------------------------------
    03. Header Section  
---------------------------------------*/
.rs-toolbar {
  padding:15px 0;
  background-color: #111111;
}
.rs-toolbar .rs-toolbar-left .welcome-message i, .rs-toolbar .rs-toolbar-left .welcome-message span, .rs-toolbar .rs-toolbar-left .welcome-message a {
    color: #fff;
}
.rs-toolbar .rs-toolbar-left .welcome-message {
  font-size: 17px;
}
.rs-toolbar .col-md-6 .rs-toolbar-left {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.rs-toolbar .rs-toolbar-left .welcome-message i {
    color: #000;
    margin-right: 8px;
    height: 30px;
    width: 30px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    border-radius: 10px;
}
.rs-toolbar .rs-toolbar-left .welcome-message i {
/*   color: #f7b90d; */
  margin-right: 8px;
}
.rs-toolbar .rs-toolbar-left .welcome-message span {
  color: #ffffff;
}
.rs-toolbar .rs-toolbar-right {
  text-align: right;
}
.rs-toolbar .rs-toolbar-right .toolbar-share-icon {
  display: inline-block;
  margin-right: 30px;
}
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li {
  display: inline-block;
}
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li + li {
  margin-left: 8px;
}
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li a {
  font-size: 14px;
  color: #888888;
}
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li a:hover,
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li a:active,
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li a:focus {
  color: #ffffff;
}
.rs-toolbar .rs-toolbar-right .apply-btn {
  font-weight: 500;
  font-size: 17px;
	color:#fff;
}
/* 02. Header Start*/
.rs-header .rs-header-top {
  padding: 25px 0 20px;
}
.rs-header .rs-header-top .header-contact {
  float: right;
}
.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: #f7b90d;
  font-size: 35px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-weight: 700;
}
.rs-header .rs-header-top .header-contact .widget-text .info-text a {
  color: #505050;
  font-weight: 400;
  font-size: 16px;
}
.rs-header .rs-header-top .header-contact .widget-text .info-text a:hover {
  color: #f7b90d;
}
.rs-header .rs-header-top .header-contact .widget-text .info-text span {
  display: block;
  font-weight: 700;
  color: #101010;
  line-height: 18px;
}
.rs-header .rs-menu-toggle {
  color: #fff !important;
}
.rs-header .rs-menu-toggle:hover {
  color: #f7b90d !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: #f7b90d !important;
}
.rs-header-2 {
  position: absolute;
  width: 100%;
  z-index: 999;
}
.rs-header-2 .menu-area {
  padding: 30px 0;
}
.rs-header-2 .menu-area .rs-menu .nav-menu {
  text-align: right;
}
.rs-header-2 .menu-area .rs-menu .nav-menu > li > a {
  color: #ffffff;
}
.rs-header-2 .menu-area .rs-menu .nav-menu > li > a:hover {
  color: #f7b90d;
}
@-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 .rs-menu li i {
  margin-right: 0;
  color: #f7b90d;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
}
.home1 .rs-menu li i:hover {
  color: #da8502;
}
.home1 .menu-area .rs-menu > ul > li > a {
	color: #000000;
/* 	font-weight: 600; */
}
.home1 .menu-area .rs-menu > ul > li > a:hover,
.home1 .menu-area .rs-menu li.current_page_item > a {
  color: #f6b80c !important;
}
.home1 .menu-area {
	background:#fff;
	z-index: 111;
	position: relative;
	padding:10px 20px;
}
.home1 .searce-box {
  position: absolute;
  top: 0;
  right: 23%;
  top: 16px;
}
.home1 .searce-box a.rs-search i {
  color: #f7b90d;
}
.home1 .searce-box a.rs-search i:hover {
  color: #ffffff;
}
.home1 .rs-header .rs-header-top .col-md-4:first-child .header-contact {
  float: left;
}
.inner-page .searce-box {
  position: absolute;
  top: 0;
  right: 16px;
  top: 15px;
}
.inner-page .searce-box a.rs-search i {
  color: #f7b90d;
}
.home1 .right-bar-icon {
  position: absolute;
  right: 15px;
}
.home1 .right-bar-icon a {
	display: inline-block;
    height: 55px;
    width: 55px;
    line-height: 55px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
}
.home1 .right-bar-icon a:hover {
  color: #fff;
}
.home1 .right-bar-icon .rs-search {
  position: static;
  color: #000;
/*   background-color: #f7b90d; */
  margin-right: -18px;
}
.home1 .right-bar-icon .rs-search:hover {
  background: #da8502;
}
.home1 .right-bar-icon .nav-expander{
  background: #da8502;
}
.home1 .right-bar-icon .nav-expander:hover {
  background: #f7b90d;
}
.home1 .rs-courses .cource-item {
  border: none;
  background: #fff;
}
.university-home .search-modal .modal-content,
.inner-page .search-modal .modal-content,
.instructor-home .search-modal .modal-content,
.home1 .search-modal .modal-content {
  background: transparent;
  position: initial;
  border: 0;
}
.university-home .search-modal .search-box input,
.inner-page .search-modal .search-box input,
.instructor-home .search-modal .search-box input,
.home1 .search-modal .search-box input {
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  background: transparent;
/*   border-width: 0 0 1px 0; */
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
	border: none !IMPORTANT;
	border-bottom: 1px solid #fff !important;
}
.university-home .search-modal .close,
.inner-page .search-modal .close,
.instructor-home .search-modal .close,
.home1 .search-modal .close{
  color: #ffffff;
  margin-top: 20px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.4);
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  opacity: 1;
  outline: none;
  transition: all 0.3s ease 0s;
}
.university-home .search-modal .close:hover,
.inner-page .search-modal .close:hover,
.instructor-home .search-modal .close:hover,
.home1 .search-modal .close:hover,
.home2 .search-modal .close:hover{
  background-color: #f7b90d;
}
.university-home .modal-backdrop,
.inner-page .modal-backdrop,
.instructor-home .modal-backdrop,
.home1 .modal-backdrop {
  opacity: 0.95;
}
#rs-header.rs-transfarent-header-style {
  position: absolute;
  width: 100%;
  z-index: 999;
}
#rs-header.rs-transfarent-header-style .logo-area {
  padding-top: 0;
}
#rs-header.rs-transfarent-header-style .menu-sticky.sticky {
  background: #212121;
  padding-top: 10px;
  padding-bottom: 10px;
}
#rs-header.rs-transfarent-header-style .menu-area {
  background: transparent;
}
#rs-header.rs-transfarent-header-style .menu-area .rs-menu .nav-menu > li > a {
  color: #ffffff;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner {
  position: relative;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner .searce-box {
  position: absolute;
  top: 0;
  right: 90%;
  top: 7px;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner .searce-box .rs-search i {
  color: #f7b90d;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner .apply-box {
  margin-left: 35px;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner .apply-box a {
  padding: 0 28px;
  border-radius: 35px;
  line-height: 40px;
  height: auto;
  color: #ffffff;
  background: #f7b90d;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner .apply-box a:hover {
  color: #ffffff;
  background: #da8502;
}

.instructor-home .rs-header .logo-area {
  padding-top: 23px;
}
.instructor-home .rs-header .main-menu .rs-menu ul {
  text-align: right;
  margin-right: 110px;
}
.instructor-home .rs-header .main-menu .rs-menu > ul > li > a {
  color: #505050;
}
.instructor-home .rs-header .main-menu .rs-menu ul li a:hover,
.instructor-home .rs-header .main-menu .rs-menu ul li.active a,
.instructor-home .rs-header .main-menu .rs-menu ul li.current-menu-item > a {
  color: #f7b90d !important;
}
.instructor-home .rs-header .main-menu .nav-expander {
  font-size: 20px;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: block;
  color: #92278f;
  position: absolute;
  right: 15px;
  top: 26px;
}
.instructor-home .rs-header .main-menu .nav-expander:hover {
  transform: scale(1.1);
  color: #f7b90d;
}
.instructor-home .rs-header .sticky {
  background: #fff;
}
.instructor-home .rs-header .apply-box {
  position: absolute;
  right: 0;
  min-width: 130px;
  text-align: center;
  line-height: 46px;
  background: #f7b90d;
  margin-top: 17px;
  border-radius: 30px;
  transition: 0.4s;
}
.instructor-home .rs-header .apply-box:hover {
  background: #da8502;
}
.instructor-home .rs-header .apply-box a {
  color: #fff;
  display: block;
  text-transform: uppercase;
}
.instructor-home .searce-box {
  padding-top: 28px;
}
.instructor-home .searce-box i {
  color: #f7b90d;
}
.university-home .menu-area {
  padding: 16px 0;
}
.university-home .menu-area .rs-menu ul {
  text-align: right;
}
.university-home .rs-header .menu-area .rs-menu .nav-menu > li > a {
  color: #ffffff;
}
.university-home .rs-header .menu-area .rs-menu .searce-box {
  padding-top: 15px;
}
.university-home .rs-header .menu-area .rs-menu .searce-box a {
  position: relative;
}
.university-home .rs-header .menu-area .rs-menu .searce-box a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: #ffffff;
}
.university-home .overly-border::before {
  border-top: 5px solid #92278f;
  border-bottom: 5px solid #92278f;
}
.university-home .overly-border::after {
  border-right: 5px solid #92278f;
  border-left: 5px solid #92278f;
}
.university-home .rs-footer .footer-share ul li a,
.university-home .rs-footer .footer-share ul li a:hover,
.university-home .rs-footer .footer-title:after,
.university-home .rs-footer .footer-top .news-form button,
.university-home .rs-footer .footer-top .recent-post-widget .post-item .post-date,
.university-home .rs-footer .footer-contact-desc,
.university-home .rs-latest-news .news-normal-block .news-btn a,
.university-home .owl-controls .owl-nav > div:hover,
.university-home .rs-team .team-item .team-img .normal-text,
.university-home .rs-team .team-item .team-title:after,
.university-home #scrollUp i {
  background: #92278f;
}
.university-home .rs-footer .footer-bottom,
.university-home .rs-footer .footer-top .recent-post-widget .post-item + .post-item,
.university-home .rs-footer .footer-top .news-form input {
  border-color: #92278f;
}
.university-home .searce-box i,
.university-home #rs-slider .slide-content .slider-desc,
.university-home .copyright a,
.university-home .rs-footer .footer-top .sitemap-widget li a:hover,
.university-home .rs-footer .footer-title,
.university-home .rs-latest-news .news-list-block .news-list-item .news-title a,
.university-home .rs-latest-news .news-normal-block .news-title a,
.university-home .rs-events .event-item .event-btn a,
.university-home .rs-events .event-item .event-title a {
  color: #92278f;
}
.university-home .copyright a:hover,
.university-home .rs-footer .footer-top .recent-post-widget .post-item .post-title a:hover {
  color: #5d0b5b;
}
.university-home .rs-footer .footer-top .news-form button:hover {
  background: #5d0b5b;
}
.university-home .rs-footer .footer-share ul li a:hover {
  color: #00bcd4;
}
.university-home .rs-footer .footer-contact-desc .contact-inner i {
  color: #e84b3a;
}
.university-home .rs-footer {
  color: #505050;
}
.university-home .rs-footer .footer-top .sitemap-widget li a,
.university-home .rs-footer .footer-top .recent-post-widget .post-item .post-title a {
  color: #505050;
}
.university-home .slider-overlay-2 .slide-content:after {
  display: none;
}
.university-home .rs-footer .footer-top .news-form input {
  color: #000;
}
.university-home .rs-footer .footer-contact-desc {
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.university-home .rs-footer .footer-bottom {
  background: #269aa9;
}
.university-home .rs-toolbar .rs-toolbar-left .welcome-message i {
  color: #fff;
}
.university-home .searce-box i {
  color: #f7b90d;
}
.university-home #scrollUp i,
.university-home .owl-controls .owl-nav > div:hover {
  background: #f7b90d;
}
/* ------------------------------------
    04. Sticky Menu
---------------------------------------*/
.menu-sticky.sticky {
  background: #fff;
  position: fixed !important;
  top: 0px;
  z-index: 999;
  margin: 0 auto !important;
  padding: 20px 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: #f7b90d;
  border-color: #f7b90d;
  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);
  }
}


/*-------------------------
    36.Preloader css
---------------------------*/
.book_preload {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 999999;
}
.book {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  margin: 0 auto;
  border: 5px solid #ecf0f1;
  width: 100px;
  height: 60px;
}
.book__page {
  position: absolute;
  left: 50%;
  top: -5px;
  margin: 0 auto;
  border-top: 5px solid #ecf0f1;
  border-bottom: 5px solid #ecf0f1;
  border-right: 5px solid #ecf0f1;
  background: #da8502;
  width: 50px;
  height: 60px;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-animation: flip 1.2s infinite linear;
  animation: flip 1.2s infinite linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.book__page:nth-child(1) {
  z-index: -1;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.book__page:nth-child(2) {
  z-index: -2;
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}
.book__page:nth-child(3) {
  z-index: -3;
  -webkit-animation-delay: 4.2s;
  animation-delay: 4.2s;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
  }
  20% {
    background: #f7b90d;
  }
  29.9% {
    background: #f7b90d;
  }
  30% {
    -webkit-transform: perspective(200px) rotateY(-90deg);
    transform: perspective(200px) rotateY(-90deg);
    background: #da8502;
  }
  54.999% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #da8502;
  }
  100% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #da8502;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
  }
  20% {
    background: #f7b90d;
  }
  29.9% {
    background: #f7b90d;
  }
  30% {
    -webkit-transform: perspective(200px) rotateY(-90deg);
    transform: perspective(200px) rotateY(-90deg);
    background: #da8502;
  }
  54.999% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #da8502;
  }
  100% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #da8502;
  }
}
/* Rs Footer*/
.rs-footer {
  color: #e8e8e8;
/*   margin-top: 98px; */
}
.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: #f7b90d;
}
.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;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner {
  border-left: 1px solid #e2e2e2;
}
.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: #e2e2e2;
  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: #fff;
}
.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: 140px;
}
.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: #f7b90d;
  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: 100%;
/*   float: left; */
  line-height: 33px;
}
ul.sitemap-widget.quick-links {
    margin-top: 30px;
}
ul.quick-links.sitemap-widget li {
    display: inline-block;
    padding: 0 20px;
    border-left: 1px solid #fff;
	width: unset !important;
}
ul.quick-links.sitemap-widget li:first-child {    
	border-left: 0;
}
.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: #f7b90d;
}
.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 #f7b90d;
  color: #ffffff;
  height: 50px;
  outline: 0 none;
  padding: 5px 15px;
  width: 100%;
}
.rs-footer .footer-top .news-form button {
  background: #f7b90d;
  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: #da8502;
}
.rs-footer .footer-top .about-widget img {
  margin-bottom: 25px;
}
.rs-footer .footer-share {
  text-align: center;
  margin-top: 30px;
}
.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: #f7b90d;
  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.rs-footer-style8 .footer-top .recent-post-widget .post-item {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item:last-child {
  border: none;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-date {
  width: 70px;
  height: 65px;
  flex: 0 0 70px;
  text-align: center;
  color: #fff;
  margin-right: 15px;
  transition: all .3s ease 0s;
  background: #f7b90d !important;
  line-height: 27px;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-date span {
  display: block;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-date span:first-child {
  margin-top: 10px;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-date span:last-child {
  font-size: 15px;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-title {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-title a {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-title a:hover,
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-title a:focus {
  color: #f7b90d !important;
}
.rs-footer.rs-footer-style8 .footer-top .form-inner {
  position: relative;
  max-width: 280px;
}
.rs-footer.rs-footer-style8 .footer-top .form-inner:before {
  content: "\f1d9";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  position: absolute;
  right: 30px;
  top: 10px;
  color: #fff;
  pointer-events: none;
  z-index: 11;
  font-size: 20px;
}
.rs-footer.rs-footer-style8 .footer-top .form-inner input[type=email] {
  font-size: 14px;
  padding: 12px 0 12px 16px;
  border: none;
  border-radius: 25px!important;
  height: 46px;
  position: relative;
  display: block;
  line-height: 1.428571429;
  color: #555;
  background-color: #fff;
  outline: 0;
  width: 100%;
}
.rs-footer.rs-footer-style8 .footer-top .form-inner input[type=submit] {
  position: absolute;
  border-radius: 25px;
  top: 2px;
  right: 2px;
  background: #f7b90d;
  color: #fff;
  padding: 10px 16px;
  border: 0;
  transition: .2s;
  font-size: 0;
  height: 42px;
  width: 74px;
  min-width: auto!important;
}
.rs-footer.rs-footer-style7 {
  position: relative;
  background: #f2f2f2;
}
.rs-footer.rs-footer-style7 .footer-top {
  padding-top: 70px !important;
}
.rs-footer.rs-footer-style7 .footer-top .footer-title {
  color: #212121;
}
.rs-footer.rs-footer-style7 .footer-top .footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 50px;
  background: #f7b90d;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px solid #e9e2e2;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item:last-child {
  border: none;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-date {
  width: 70px;
  height: 65px;
  flex: 0 0 70px;
  text-align: center;
  color: #fff;
  margin-right: 15px;
  transition: all .3s ease 0s;
  background: #f7b90d !important;
  line-height: 27px;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-date span {
  display: block;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-date span:first-child {
  margin-top: 10px;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-date span:last-child {
  font-size: 15px;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-title {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-title a {
  font-family: 'Montserrat', sans-serif;
  color: #505050;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-title a:hover,
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-title a:focus {
  color: #f7b90d !important;
}
.rs-footer.rs-footer-style7 .footer-top .sitemap-widget li {
  width: 50%;
  float: left;
  line-height: 33px;
}
.rs-footer.rs-footer-style7 .footer-top .sitemap-widget li a {
  color: #505050;
  display: inline-block;
  position: relative;
}
.rs-footer.rs-footer-style7 .footer-top .sitemap-widget li a:hover,
.rs-footer.rs-footer-style7 .footer-top .sitemap-widget li a:focus {
  color: #f7b90d !important;
}
.rs-footer.rs-footer-style7 .footer-top .sitemap-widget li a i {
  padding-right: 10px;
}
.rs-footer.rs-footer-style7 .footer-top .flickr-feed li {
  display: inline-block;
  margin: 2px 3px;
  overflow: hidden;
  position: relative;
  width: 76px;
}
.rs-footer.rs-footer-style7 .footer-top .flickr-feed li img {
  -webkit-transition: .3s ease all;
  transition: .3s ease all;
}
.rs-footer.rs-footer-style7 .footer-top .flickr-feed li:hover img {
  opacity: 0.7;
}
.rs-footer.rs-footer-style7 .footer-top .form-inner {
  position: relative;
  max-width: 280px;
}
.rs-footer.rs-footer-style7 .footer-top .form-inner:before {
  content: "\f1d9";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  position: absolute;
  right: 30px;
  top: 10px;
  color: #fff;
  pointer-events: none;
  z-index: 11;
  font-size: 20px;
}
.rs-footer.rs-footer-style7 .footer-top .form-inner input[type=email] {
  font-size: 14px;
  padding: 12px 0 12px 16px;
  border: none;
  border-radius: 25px!important;
  height: 46px;
  position: relative;
  display: block;
  line-height: 1.428571429;
  color: #555;
  background-color: #fff;
  outline: 0;
  width: 100%;
}
.rs-footer.rs-footer-style7 .footer-top .form-inner input[type=submit] {
  position: absolute;
  border-radius: 25px;
  top: 2px;
  right: 2px;
  background: #f7b90d;
  color: #fff;
  padding: 10px 16px;
  border: 0;
  transition: .2s;
  font-size: 0;
  height: 42px;
  width: 74px;
  min-width: auto!important;
}
.rs-footer.rs-footer-style7 .footer-top .about-widget img {
  margin-bottom: 25px;
}
.rs-footer.rs-footer-style7 .footer-share {
  text-align: center;
  margin-top: 50px;
}
.rs-footer.rs-footer-style7 .footer-share ul li {
  display: inline-block;
}
.rs-footer.rs-footer-style7 .footer-share ul li a {
  background: none !important;
  color: #212121 !important;
}
.rs-footer.rs-footer-style7 .footer-share ul li a:hover {
  color: #f7b90d !important;
}
.rs-footer.rs-footer-style7 .footer-share ul li li {
  margin-left: 5px;
}
.rs-footer.rs-footer-style7:before {
  background: #f2f2f2;
  transform: skewY(175deg);
  content: "";
  height: 100%;
  right: 0;
  position: absolute;
  top: -100px;
  width: 100%;
  z-index: -1;
}
.rs-footer.rs-footer-style7 .footer-contact-desc {
  padding-top: 0;
  border-bottom: 1px solid #e9e2e2;
  transform: translateY(0);
  position: static;
  border-radius: 0;
  box-shadow: none;
  margin: -100px auto 0;
  background: none;
}
.rs-footer.rs-footer-style7 .footer-contact-desc .contact-inner i:before {
  color: #f7b90d;
}
.rs-footer.rs-footer-style7 .footer-contact-desc .contact-inner .contact-title {
  color: #212121;
}
.rs-footer.rs-footer-style7 .footer-contact-desc .contact-inner .contact-desc {
  color: #505050;
}
.rs-footer.rs-footer-style7 .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner {
  border-left: 1px solid #e2e2e2;
}
.rs-footer.rs-footer-style7 .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before,
.rs-footer.rs-footer-style7 .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:after {
  content: '';
  position: absolute;
  height: calc(100% - 40px);
  width: 1px;
  background-color: #e2e2e2;
  top: 50%;
  transform: translateY(-50%);
}
.rs-footer.rs-footer-style7 .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before {
  left: 3px;
}
.rs-footer.rs-footer-style7 .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:after {
  left: -5px;
}
.copyright_style7 {
  text-align: center;
  border-top: 1px solid #e9e2e2 !important;
  padding: 18px 0;
  margin-top: 35px;
  background: none !important;
}
.copyright_style7 .copyright p {
  opacity: 0.95;
  margin-bottom: 0;
  font-size: 15px;
}
.copyright_style7 .copyright p a {
  color: #f7b90d;
}
.copyright_style7 .copyright p a:hover {
  color: #212121;
}
.rs-footer-2 .footer-share {
  margin-top: 20px;
}
@-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);
  }
}
@media only screen and (max-width: 991px) {
  .instructor-home .rs-menu-toggle {
    color: #212121 !important;
  }
  .instructor-home .rs-menu-toggle i {
    color: #f7b90d;
  }
}
/*---------------------
    Pulse Animation
---------------------*/
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*------------------------------
    Swing Animation
------------------------------*/
@keyframes swing-anim {
  from {
    transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
  }
  to {
    transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
  }
}
@-webkit-keyframes swing-anim {
  from {
    transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
  }
  to {
    transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
  }
}
@keyframes swing-anim2 {
  from {
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
  }
  to {
    transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
  }
}
@-webkit-keyframes swing-anim2 {
  from {
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
  }
  to {
    transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
  }
}
/* Homepage banner */
section.home-banner {
    position: relative;
    padding: 40px 0 100px 0;
    background-color: #ece8e7;
}
.category-head h2 {
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 40px;
    position: relative;
}
.category-head h2:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -10px;
    height: 2px;
    width: 50px;
    background: #000;
}
/* section.home-banner figure {
    width: 100%;
    position: relative;
	margin-bottom: 0;
}
section.home-banner figure:before {
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background-color: #000000;
    opacity: 0.5;
} */
/* section.home-banner figure figcaption {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: -109px auto 0;
    text-align: center;
}
section.home-banner figcaption span {
    font-size: 24px;
    font-weight: normal;
    position: relative;
    color: #fff;
    text-transform: capitalize;
    padding-bottom: 13px;
    display: inline-block;
    margin-bottom: 4px;
}
.home-banner figcaption h2 {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 13px;
	font-size: 40px;
}
.home-banner figcaption p {
    color: #fff;
    margin: 0 0 30px 0;
    font-size: 20px;
    text-transform: capitalize;
} */
.btn-1 {
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
    font-weight: 500;
    padding: 11px 28px 10px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}
.btn-1:hover{
	border-color: #e79800;
	background-color: #e79800;
	color:#fff;
}
.banner-form {
    background: #000;
    padding: 50px 20px;
    border-radius: 10px;
}
.banner-form h5{
	color:#fff
}
.banner-form h1 {
    font-size: 55px;
	color:#fff
}
form.search-course {
    display: flex;
}
.search-course input.form-control {
    height: 70px;
    border-radius: 0;
    padding: 0 20px;
	font-size: 22px;
    width: 85%;
	border:1px solid #fff;
}
.search-course button.search-btn {
    width: 15%;
    border: 0;
    background: #fff;
    font-size: 22px;
}
.search-course button.search-btn:focus {
    outline: none;
}
.banner-form input#is-search-input-211 {
    height: 70px;
    border-radius: 0;
    padding: 0 20px;
    font-size: 22px !important;
    width: 100%;
    border: 1px solid #fff;
}
.banner-form .is-form-style.is-form-style-3 label {
    width: 85% !important;
}
.banner-form button.is-search-submit span {
    height: 100%;
    width: 100%;
    display: flex !IMPORTANT;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-left: none;
    border-color: #000;
}
.banner-form button.is-search-submit span svg {
    width: 35px !important;
}
.banner-form button.is-search-submit {
    height: 70px !important;
    width: 75px !important;
    outline: none !IMPORTANT;
    border: none !IMPORTANT;
}
.banner-form form.is-ajax-search {
    display: flex;
}
.bottom-content {
    display: flex;
    margin-top: 20px;
}
.bottom-content .left {
    min-width: 50%;
    width: 50%;
}
.bottom-content .left p {
    width: 80%;
    font-size: 18px;
    margin-bottom: 0;
    color: #fff;
}
.bottom-content .left:first-child {
    border-right: 2px solid #fff;
}
.bottom-content .right span {
    padding-left: 15px;
}
.bottom-content .right a {
    color: #fff;
}
.bottom-content .right i {
    font-size: 25px;
}
.bottom-content .right {
    display: flex;
    padding-left: 20px;
    align-items: center;
    font-size: 18px;
	color: #fff;
}
.right-image {
    width:90%;
	margin:0 0 0 auto;
}
/* Home page Css */
.intro-caption {
    text-align: center;
}
.intro-caption span {
	width: 83px;
	height: 83px;
	border-radius: 100%;
	font-size: 32px;
	background-color: #fff;
	color: #000;
	margin: 0 auto 20px auto;
	border: solid 1px #ddd;
	display: flex;
	justify-content: center;
	align-items: center;
}
.intro-caption h4 {
    margin-bottom: 10px;
}
.intro-caption h4, .intro-caption p {
    color: #fff;
}
.intro-caption a:hover {
    background: none;
}
.intro-caption a {
    display: inline-block;
    background-color: #000;
    padding: 3px 15px;
    color: #fff;
    border: 2px solid #000;
	box-shadow: 0px 0px 4px 0px #00000057;
}

/* Stats counter */

section.stats_counter {
    position: relative;
    padding: 50px 0;
    /* background: #222; */
    text-align: center;
    background-position: left;
}
.edu2_counter_des h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 300;
	margin-bottom: 10px;
}
.edu2_counter_des h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
}
.edu2_counter_des span {
    color: #fff;
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    line-height: 40px;
}
section.stats_counter .col-md-3:last-child .edu2_counter_des {
    border-right: 0px;
}
.edu2_counter_des {
    padding: 25px 0;
    border-right: 1px solid #fff;
}

/* faculty */
section.faculty-member {
    padding: 100px 0;
    position: relative;
}
.edu2_faculty_des figure {
/*     height: 300px; */
    overflow: hidden;
	position: relative;
	margin-bottom: 0;
}
.edu2_faculty_des figure:before {
    content: "";
    left: 10%;
    right: 10%;
    top: 10%;
    bottom: 10%;
    position: absolute;
    opacity: 0;
}
.edu2_faculty_des:hover figure:before {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.70;
}
.edu2_faculty_des:hover figure:before {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.70;
}
.edu2_faculty_des figure:before {
    content: "";
    left: 10%;
    right: 10%;
    top: 10%;
    bottom: 10%;
    background-color: #000;
    position: absolute;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
	z-index: 1;
}
.edu2_faculty_des figcaption {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: -13px auto 0;
    text-align: center;
    opacity: 0;
    transform: scale(1.5);
	z-index: 1;
}
.edu2_faculty_des:hover figcaption {
    opacity: 1;
    transform: scale(1);
}
.edu2_faculty_des figcaption a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 100%;
    background-color: #fff;
	color:000;
    margin: 0 3px;
    z-index: 1;
}
.edu2_faculty_des:hover img {
    transform: scale(1.2);
}
.edu2_faculty_des img {
    transition: 0.3s all ease-in-out;
}
.edu2_faculty_des {
    background-color: #f2f2f2;
}
.edu2_faculty_des2 {
    text-align: center;
    padding: 20px;
}
.edu2_faculty_des2 h6 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 300;
}
.edu2_faculty_des2 strong {
    text-transform: uppercase;
    color: #7b7b7b;
}
.edu2_faculty_des2 strong {
    text-transform: uppercase;
    color: #7b7b7b;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}
.edu2_faculty_des2 p {
    font-size: 15px;
    font-weight: 100;
    color: #888;
	margin-bottom:0;
}
.edu2_faculty_des:hover {
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 20%);
    border-bottom: 1px solid #000;
}
.edu2_faculty_des {
    background-color: #f2f2f2;
    transition: .2s all ease-in-out;
}
.faculty-head h2:before {
    content: "";
    height: 2px;
    width: 50px;
    background: #000;
    position: absolute;
    bottom: -10px;
    left: 3px;
}
.faculty-head h2 {
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 40px;
    position: relative;
}
section.logo-section {
    position: relative;
    background-color: #f2f2f2;
    padding: 50px 0;
}
section.logo-section .item img {
/*     filter: grayscale(1); */
	transition: .3s all ease-in-out;
}
/* section.logo-section .item img:hover {
    filter: grayscale(0);
} */
.logo-slider .owl-nav {
    text-align: center;
    margin-top: 30px;
}
.logo-slider .owl-nav button {
    border: 1px solid #796e6e !important;
    height: 30px;
    width: 30px;
    margin: 0 2px;
    padding: 14px !important;
    color: #796e6e !important;
}
.logo-slider .item {
    background: #fff;
    padding: 8px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.enquire-btn {
    position: fixed;
    top: 280px;
    right: -37px;
    z-index: 11;
    transform: rotate(-90deg);
}
.enquire-btn a {
    display: inline-block;
    border: 1px solid #000;
    padding: 10px 20px;
    background-color: #000;
    color: #000;
}
.enquire-btn a:hover {
    background-color: #da8502;
    border-color: #da8502;
}
.edu_testemonial_wrap {
    position: relative;
    background: #fff;
    border: 1px solid #000;
}
.owl-item .item .edu_testemonial_wrap img {
    width: 130px !important;
    height: 130px;
    margin: 20px auto 20px auto;
    border-radius: 100px;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 20%);
}
.owl-item.active.center .item .edu_testemonial_wrap img {
    width: 150px !important;
    height: 150px;
    margin: 30px auto 20px auto;
    border-radius: 100px;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 20%);
}
.owl-item .item .edu_testemonial_wrap .kode-text {
    padding: 15px 30px 15px 30px;
	text-align:center;
}
.owl-item.active.center .item .edu_testemonial_wrap .kode-text {
    padding: 15px 30px 25px 30px;
	text-align:center;
}
.edu_testemonial_wrap .kode-text span:last-child {
    text-align: right;
    display: block;
}
.edu_testemonial_wrap .kode-text span {
    font-size: 40px;
    color: #000;
    display: block;
    text-align: left;
    margin-bottom: 15px;
}
.owl-item.active.center .edu_testemonial_wrap {
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
	margin-top: 0;
}
.testimonial-head h2 {
    font-size: 35px;
    font-weight: 500;
	position:relative;
	margin-bottom:40px;
}
.testimonial-head h2:before {
    content: "";
    position: absolute;
    bottom: -10px;
    height: 2px;
    background: #000;
    width: 50px;
}
.student-testimonial{
	position:relative;
	padding:0px 0 100px 0;
}
.testimonial-slider .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
}
.testimonial-slider .owl-nav button{
	color: #000 !IMPORTANT;
    border: 1px solid #000 !important;
    height: 30px;
    width: 30px;
    margin: 0 3px;
    line-height: 30px !important;
}
.owl-item .edu_testemonial_wrap {
    margin-top: 20px;
}
/* courses section */
section.courses-section {
    position: relative;
    padding: 100px 0;
	background-color: #f2f2f2;
}
.kf_edu2_tab_wrap ul.nav.nav-tabs {
    border: none;
    float: right;
}
.kf_edu2_tab_wrap .nav-tabs li {
    margin: 0px 0px 0px 20px;
    border: none;
    line-height: 33px;
}
.kf_edu2_tab_wrap .nav.nav-tabs > li:first-child {
    margin-left: 0;
}
.kf_edu2_tab_wrap .nav-tabs > li > a {
    border-radius: 0;
    border: none;
    color: #666666;
    font-size: 18px;
    font-weight: normal;
    padding: 4px 0 8px;
    text-transform: capitalize;
    margin: 0px;
	position:relative;
/*     font-family: 'Ubuntu', sans-serif; */
}
.kf_edu2_tab_wrap .nav-tabs li.active a {
    color: #000;
/*     border-bottom: 2px solid #000; */
}
.kf_edu2_tab_wrap .nav-tabs > li > a:before {
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    height: 2px;
    width: 0%;
	background-color: #000;
    transition: .3s all ease;
}
.kf_edu2_tab_wrap .nav-tabs li a:hover:before {
    width: 100%;
}
.kf_edu2_tab_wrap .nav-tabs li.active a:before {
    width: 100%;
}
.kf_edu2_heading1 h2 {
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 40px;
    position: relative;
}

.kf_edu2_heading1 h2:before {
    content: "";
    left: 0;
    right: 0;
    bottom: -10px;
    position: absolute;
    height: 2px;
    width: 50px;
    background-color: #000;
}

.edu2_cur_wrap figure {
	height: 100px;
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
	width: 30%;
}
.edu2_cur_wrap {
    position: relative;
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #abaaaa;
	display:flex;
}
/* .courses-section .view-btn a:hover {
    background-color: #000;
    color: #000;
} */
.courses-section .view-btn a {
	margin: 50px auto 0 auto;
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid #000000;
	color: #000;
	font-size: 17px;
	transition: .3s all ease-in-out;
	border-radius: 40px;
	/* background: #000000; */
}
.courses-section .view-btn a i {
    padding-left: 10px;
}
.courses-section .view-btn {
    text-align: center;
}
.edu2_cur_wrap .edu2_cur_des {
    padding: 10px;
	width: 70%;
}
.edu2_cur_wrap .course-desc h5 {
    margin-bottom: 10px;
}
/* .edu2_cur_wrap:hover .edu2_cur_des {
    opacity: 1;
    top: 0;
} */
/* .overly-border::after {
    border-right: 5px solid #000;
    border-left: 5px solid #000;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}
.overly-border::before {
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
} */
/* .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;
}
.edu2_cur_des:hover .overly-border:after, .edu2_cur_des:hover .overly-border:before {
    opacity: 1;
	-webkit-transform: scale(1);
    transform: scale(1);
} */
/* .edu2_cur_wrap .edu2_cur_des:before {
    content: "";
    position: absolute;
    top: 0;
    background: #000;
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0.5;
} */
.edu2_cur_wrap .course-desc {
    z-index: 111;
    position: relative;
}
.edu2_cur_wrap .course-desc > span {
	font-size: 20px;
    color: #fff;
    background-color: #000;
    height: 30px;
    width: 30px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin-bottom: 10px;
}
.edu2_cur_wrap .course-desc p {
    font-size: 14px;
    color: #000;
}
/* .edu2_cur_wrap .course-desc a.read-btn:hover {
	background: #000;
    color: #fff;
    border-color: #000;
} */

.edu2_cur_wrap .course-desc a.read-btn {
    display: inline-block;
    transition: .3s all ease-in-out;
    color: #f6b80c;
    font-weight: 600;
}
.edu2_cur_wrap .course-desc h5 a {
    font-size: 17px;
    color: #000;
    font-weight: 500;
}
.edu2_cur_wrap figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000;
    color: #fff;
    height: 50px;
    min-width: 100px;
    width: auto;
	display: flex;
    align-items: center;
    padding: 10px;
    font-weight: 600;
}
.edu2_cur_wrap:hover {
    box-shadow: 0 1px 10px 0 #00000033;
}
.edu2_cur_wrap:hover img {
    transform: scale(1.1);
}
.edu2_cur_wrap img {
    transition: .3s ease;
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.logos-head h2 {
    font-size: 35px;
    font-weight: 500;
    position: relative;
    margin-bottom: 40px;
}
.logos-head h2:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    background: #000;
    height: 2px;
    width: 50px;
}
.team-slider .owl-nav button {
    color: #000 !IMPORTANT;
    border: 1px solid #000 !important;
    height: 30px;
    width: 30px;
    margin: 0 3px;
    line-height: 30px !important;
}
.team-slider .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
}

/* steps to start */
section.step-to-start .steps-head h2:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 2px;
    height: 2px;
    width: 50px;
    background: #000;
}
section.step-to-start .steps-head h2 {
    font-size: 35px;
    font-weight: 500;
    position: relative;
    margin-bottom: 40px;
}
section.step-to-start {
    position: relative;
    padding: 100px 0 150px 0;
    background-color: #f2f2f2;
/*     margin-bottom: -100px; */
}
.step-to-start .steps {
    padding: 30px;
    border: 1px solid #000;
	transition: .3s all ease-in-out;	
    height: 250px;
    margin-bottom: 20px;
}
.step-to-start .steps span {
    font-size: 30px;
    border-radius: 50px;
    background: #000;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-bottom: 25px;
}
.step-to-start .steps h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}.step-to-start .steps:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px 0 #00033;
}
.rs-footer .footer-bottom .container p {
    margin-bottom: 0;
}
.rs-footer .footer-bottom .container p a {
    color: #fff;
}
.copyright a {
    color: #fff;
}
/* .rs-footer .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

/* Popolar category */
section.category-section {
    padding: 100px 0;
    position: relative;
}
.course-category {
    height: 180px;
    text-align: center;
    box-shadow: 0 0px 10px 0 rgb(132 132 132 / 20%);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
	transition: .3s ease;
}
.course-category span {
    height: 60px;
    width: 60px;
    background-color: #0000004d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    border-radius: 50px;
	color:#fff;
/*     margin: auto auto 15px auto; */
}
.course-category:hover span {
    background: #000;
}
.course-category:hover {
    transform: translateY(-10px);
}
.course-category h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0px;
}
.course-category a {
   	display: inline-block;
    border: 1px solid #222;
    padding: 1px 10px;
    border-radius: 20px;
    line-height: 26px;
    font-size: 16px;
    color: #222;
}
.course-category a:hover {
   	background: #000;
    border-color: #000;
}

/* build career */
section.build-career {
    position: relative;
    background: #fff;
    padding: 100px 0;
/*     margin-bottom: -100px; */
}
section.build-career .heading h2 {
    font-size: 35px;
    font-weight: 500;
    position: relative;
    margin-bottom: 40px;
}
section.build-career .heading h2:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    height: 2px;
    width: 50px;
    background: #000;
}
.build_career a:hover {
    background: #000;
    color: #fff;
}

.build_career a {
    padding: 7px 12px;
    border: 1px solid #000;
	color: #000;
    border-radius: 20px;
    display: inline-block;
}
.build_career {
    margin-bottom: 25px;
	padding: 20px;
    box-shadow: 0 1px 10px 0 #00000033;
}
.build_career h3 {
    font-size: 28px;
    font-weight: 500;
	border-left: 3px solid #000;
    padding-left: 10px;
} 


/* courses-page css */
section.course-banner h1 {
    font-size: 50px;
    margin-bottom: 0;
    padding: 50px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: #fff;
}
section.course-banner {
    position: relative;
    padding: 50px 0;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
	background-color: #000;
}
section.course-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*     background: #0000002e; */
}
section.courses {
    position: relative;
    padding: 100px 0;
}
section.courses .left-menu {
    padding: 0;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 12%);
	margin-bottom: 30px;
}
section.courses .nav-pills .nav-link {
    color: #000;
    border-radius: 0;
	position:relative;
}
section.courses .nav-pills .nav-link.active {
	background-color: #fff;
}
section.courses .nav-pills .nav-link:after {
    content: "\f105";
    position: absolute;
    right: 10px;
    top: 0;
    /* bottom: 0; */
    line-height: 42px;
    font-size: 20px;
    font-family: "Font Awesome 5 Pro";
    transition: .3s ease;
}
section.courses .nav-pills .nav-link:hover:after {
    right: 10px;
}
.courses .tab-pane h3.title {
background: #222222b8;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 5px;
    margin-bottom: 10px;
    color: #fff;
}
.courses .tab-pane h4 {
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}
.courses .tab-pane .card-body p i {
    width: 20px;
}
.courses .tab-pane .card-body p {
   padding: 0px 15px;
    font-size: 15px;
    margin: 5px 0;
    color: #000;
}
.cta-buttons {
    display: flex;
    justify-content: space-around;
    padding: 10px 0 15px 0;;
}
.cta-buttons a.btn-light {
    display: inline-block;
    padding: 0px 8px;
    border: 1px solid #222;
    border-radius: 5px;
    background: none;
}
.cta-buttons a.btn-dark {
    display: inline-block;
    padding: 0px 8px;
    background-color: #222;
    border-radius: 5px;
    line-height: 28px;
}
.courses .tab-pane img.card-img-top {
    height: 150px;
    width: 100%;
    object-fit: cover;
}
.card:hover {
    transform: translateY(-10px);
}

.card {
    margin-bottom: 20px;
    box-shadow: 0 10px 10px 0 rgb(0 0 0 / 26%);
    transition: .3s ease;
}
.courses .card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.courses .card h3 {
    margin-bottom: 10px;
}
/* blogs page css */
section.blogs-area {
    padding: 100px 0;
    position: relative;
}
.latest-stories h3 {
    font-size: 22px;
    font-weight: 500;
}
.blog .blogs-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.blog .blog-content h2 {
    font-size: 20px;
    margin: 10px 0 10px 0;
    font-weight: 600;
	color:#000;
}
.blog .blog-content p {
    font-size: 14px;
    color: #000;
}
.right-blogs .blog-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 5px 0 10px 0;
    color: #000000;
}
.right-blogs .blog-content p {
    font-size: 14px;
    color: #000;
    line-height: 24px;
}
.all-blogs {
    padding-top: 40px;
}
.all-blogs h3 {
    font-size: 24px;
    font-weight: 500;
}
.all-blogs .blog-content p {
	font-size: 14px;
	color: #000;
}

.all-blogs .blog-content h2 {
	font-size: 20px;
	font-weight: 600;
	color: #000000;
	margin: 5px 0 10px 0;
}
.bottom-blogs {
    margin: 30px 0;
}
/* contact us page */
section.banner h1 {
    margin: 0;
	color: #fff;
    font-size: 40px;
    font-weight: 600;
}

section.banner {
    padding: 70px 0;
    text-align: center;
    background: #000;
}
.contact-area .contact-details a {
    color: #000;
}
.contact-area .contact-address {
    background: #000;
    color: #000;
    padding-top: 30px;
    padding: 30px 20px 5px 20px;
    margin-bottom: 100px!important;
}
.contact-area .contact-address {
    background: #ffffff;
    color: #000;
    padding: 30px 20px;
    margin-bottom: 100px!important;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
}
.contact-area .contact-details a{
    text-decoration: none;
}
.contact-area .contact-address h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}
.contact-area .contact-icon{
    padding-right: 10px;
}
.contact-area .contact-address ul{
    padding-top: 30px;
}
.contact-area .contact-address ul li {
    display: flex;
    margin-bottom: 10px;
}
.contact-area {
    padding: 100px 0px 0px 0;
}
section.contact-area input {
    height: 45px;
    margin: 10px 0;
    border: 1px solid #000;
    border-radius: 0;
    border-left-width: 5px;
}
section.contact-area input:focus {
    box-shadow: none;
    border-color: #000;
}
section.contact-area textarea {
    height: 100px;
    margin: 10px 0;
    border: 1px solid #000;
    border-radius: 0;
    border-left-width: 5px;
}
section.contact-area textarea:focus {
    height: 100px;
    margin: 10px 0;
    border: 1px solid #000;
    border-radius: 0;
    border-left-width: 5px;
}
section.contact-area input.btn-primary {
    background: #000;
    color: #fff;
    width: 30%;
    font-size: 20px;
}section.contact-area input.btn-primary:active {
    background-color: #000 !IMPORTANT;
    border: none;
}section.g-map {
    position: relative;
    padding: 0 100px 100px;
}
section.g-map iframe {
    width: 100%;
    border: 1px solid #d3d3d3 !important;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 13%);
}


/* single-course page */
section.faqs-section {
    padding: 100px 0;
    position: relative;
}
.faqs-section .heading-section h2 {
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 40px;
    position: relative;
    color: #000;
}
.faqs-section .heading-section h2:before {
    content: "";
    left: 0;
    right: 0;
    bottom: -10px;
    position: absolute;
    height: 2px;
    width: 50px;
    background-color: #000;
}
.faqs-section .card-style {
    border: 1px solid #e9e9e9;
    margin-bottom: 10px;
}
.faqs-section .card-style a.card-link {
    display: block;
    background: #e9e9e9;
    color: #000;
}
.faqs-section .collapsed>.card-header:after {
    content: "\002B";
}

.faqs-section .card-header:after {
    content: '\2212';
	font-family: 'Font Awesome 5 Pro';
    float: right;
    border-radius: 50px;
    padding: 0;
    background-color: #000;
    color: #fff;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

section.hiring-partner {
    padding: 100px 0;
    position: relative;
    background-color: #f2f2f2;
}
.hiring-partner .heading-section h2 {
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 40px;
    position: relative;
    color: #000;
}
.hiring-partner .heading-section h2:before {
    content: "";
    left: 0;
    right: 0;
    bottom: -10px;
    position: absolute;
    height: 2px;
    width: 50px;
    background-color: #000;
}
/* course banner */
section.courses-banner {
    position: relative;
    padding: 70px 0;
    text-align: left;
    background-size: cover;
    background-repeat: no-repeat;
	background-color: #000;
}
section.courses-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*     background: #00000078; */
}
section.courses-banner .banner-content a {
	display: inline-block;
	padding: 10px 25px;
    background: #fff;
    color: #000;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
}
section.courses-banner .banner-content h1 {
    font-size: 38px;
    color: #fff;
    font-weight: 500;
}
section.course-content-area {
    padding: 100px 0;
    position: relative;
	background-color:#f2f2f2;
}
ection.course-content-area .courseDetail {
    background-color: #fff;
    padding: 30px;
}
section.course-content-area .courseDetail {
    background-color: #000;
    padding: 30px;
/*     border-left: 5px solid #000; */
	color:#fff;
}

section.career-advantage {
    padding: 100px 0;
    position: relative;
    background-color: #f2f2f2;
}
section.course-content-area .eligibility {
    padding: 30px;
    box-shadow: 0 6px 20px 0px rgb(0 0 0 / 20%);
    margin-bottom: 20px;
    border-radius: 20px;
	background-color:#fff;
	height: calc(100% - 30px);
}
section.course-content-area .eligibility h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}
section.course-content-area .eligibility p {
    margin-bottom: 10px;
    font-size: 16px;
}
section.course-content-area .content {
    margin-bottom: 50px;
}
section.course-content-area .effective-highlight {
    margin: 50px 0px 20px 0;
}
section.course-content-area .key-feature {
    margin: 50px 0 0 0;
}
section.course-content-area h3 {
    font-size: 25px;
    font-weight: 300;
	color:#000;
}
section.course-content-area .effective-highlight {
    margin: 50px 0px 20px 0;
    padding: 20px;
    border: 1px solid #000;
}
section.course-content-area .key-feature {
    margin: 50px 0 0 0;
    border: 1px solid #000;
    padding: 20px;
}
section.course-content-area .key-feature ul {
    padding: 0px 20px;
/*     display: flex;
    flex-wrap: wrap;
    justify-content: space-between; */
}
section.course-content-area .key-feature ul li {
/*     width: 45%; */
    font-size: 16px;
    list-style: circle;
    padding: 0 0 10px 0;
}
section.course-content-area .effective-highlight ul li {
    padding-bottom: 10px;
}

section.course-content-area .effective-highlight ul {
    list-style: circle;
    padding-left: 20px;
}
section.apply-btn a {
    padding: 10px;
    height: 60px;
    width: 330px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 25px;
    background-color: #000;
    color: #fff;
    box-shadow: 0px 0px 15px 4px rgb(246 184 12 / 52%);
    outline: none;
    border: none;
}
section.apply-btn:hover {
    transform: translateY(-10px);
}

section.apply-btn {
    padding: 0 100px 100px 100px;
    text-align: center;
    position: relative;
    transition: .3s ease;
}
section.applynow-section {
    position: relative;
    padding: 100px 0;
}
section.applynow-section .form-box {
    padding: 40px 50px;
    background: #e5e5e5;
}
section.applynow-section .form-box input.form-control {
    height: 45px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    padding: 10px;
}
section.applynow-section .form-box textarea.form-control {
    height: 100px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    padding: 10px;
}
section.applynow-section .form-box select.form-control {
    height: 45px !important;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    padding: 10px;
}
.form-group .btn-primary {
    width: 100%;
    height: 45px;
    margin-top: 20px;
    background: #000;
    border: none;
    font-size: 20px;
}
section.applynow-section .form-box input.form-control:focus {
    box-shadow: none;
    border: 1px solid #000;
}
section.applynow-section .form-box select.form-control:focus {
    box-shadow: none;
    border: 1px solid #000;
}
section.syllabus-section {
    position: relative;
    padding: 100px 0;
    background: #f2f2f2;
}
.syllabus-box {
/*     padding: 60px 30px;
    border: 1px solid #000; */
    margin-top: 30px;
}
.syllabus-box h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}
.syllabus-box ul.nav.nav-tabs {
    float: unset;
    margin-bottom: 20px;
}
.syllabus-box .sem-content ul {
    list-style: disc;
    padding-left: 20px;
	font-size: 18px;
    line-height: 30px;
}
.sem-content {
    padding: 0px 20px;
}
section.advancement {
    padding: 30px 0 100px 0;
    position: relative;
}
.advancement-content h2 {
    font-size: 35px;
    font-weight: 500;
    position: relative;
    margin-bottom: 40px;
}
.advancement-content h2:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 2px;
    height: 2px;
    width: 50px;
    background: #000;
}
ul.list-advancement {
    margin-top: 30px;
}
ul.list-advancement li {
    padding: 5px 20px;
    background: #ffffff;
    margin: 10px;
    width: 150px;
    border-left: 2px solid #000;
}


/*  about us page*/
section.about-banner {
    padding: 130px 0;
    position: relative;
	background-image: url(/wp-content/uploads/2021/11/about-banner.jpg);
    background-size: cover;
}
section.about-banner h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}
section.about-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000030;
}
section.about-content-area {
    padding: 100px 0;
    position: relative;
}
section.about-content-area h2:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 100px;
    background: #000;
}

section.about-content-area h2 {
    font-size: 30px;
    font-weight: 500;
    position: relative;
}
section.about-content-area .about-image {
    height: 360px;
    overflow: hidden;
    position: relative;
}
.about-image img {
    width: 95%;
    height: 95%;
    object-fit: cover;
    box-shadow: 10px 10px 0px 0 #000;
}
section.about-content-area .about-content {
    padding-top: 50px;
}
.vision-mission {
    padding-bottom: 100px;
    position: relative;
}
.vision-mission .vision {
    padding: 30px;
    background: #f2f2f2;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
	margin: 10px 0px;
	height: 330px;
	transition: .3s ease;
}
.vision-mission .vision:hover {
    transform: translateY(-10px);
}
.vision-mission .vision span.icons {
    height: 60px;
    display: block;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    margin-bottom: 10px;
    border-radius: 50px;
    color: #fff;
    font-size: 25px;
}
.vision-mission .vision h4 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
}
section.single-blog-section {
    position: relative;
    padding: 100px 0;
}
section.single-blog-section .single-blog-content-area img {
    margin-bottom: 30px;
}
.blog-sidebar ul li a {
    padding: 10px;
    display: inline-block;
    background: #f2f2f2;
    width: 100%;
    border: 1px solid #fc0;
    border-bottom: 0;
    border-left-width: 5px;
    color: #000;
}
.blog-sidebar ul li:last-child a {
    border-bottom: 1px solid #fc0;
}
.blog-sidebar h4 {
    font-size: 26px;
    margin-bottom: 10px;
}

.popupmodal.active .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0000009c;
    z-index: 111;
    height: 100%;
    width: 100%;
}
.popupmodal .modal-box {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #fff;
    max-height: min-content;
    max-width: 500px;
    width: 90%;
    margin: auto;
	box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 96%);
	display: none;
}
.popupmodal.active .close {
    position: absolute;
    top: -20px;
    right: -20px;
    height: 40px;
    width: 40px;
    background: #000000;
    opacity: 1;
    border-radius: 50px;
    color: #fff;
	display: flex;
    justify-content: center;
    align-items: center;
}
.popupmodal .modal-box input.btn-primary {
    width: 150px;
    padding: 5px;
    border: none;
    background-color: #000;
}
.popupmodal .modal-box input.form-control {
    border-radius: 0;
    border: 1px solid #000;
    border-left: 3px solid #000;
}
.popupmodal.active .modal-box {
    display: block;
}
 .banner-content {
	 position: absolute;
	 top: 0;
	 max-width: 1140px;
	 min-height: 200px;
	 bottom: 0;
	 height: fit-content;
	 left: 0;
	 right: 0;
	 width: 100%;
	 margin: auto;
	 padding: 20px;
} 
.banner-content a {
    background-color: #f6b80c;
    padding: 10px 20px;
    color: #000;
    display: inline;
}
section.homebanner .owl-dots {
    position: absolute;
    bottom: 15px;
    z-index: 1;
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}
section.homebanner .owl-dots button {
    border: 1px solid #f6b80c;
    height: 15px;
    width: 15px;
    margin: 3px;
    border-radius: 50px;
}
section.homebanner .owl-dots button.active{
	background:#f6b80c;
}