﻿@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');
@charset "utf-8";

/*-----------------------
    Animation
-------------------------*/
[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);
  }
}
/* -----------------------------------
    General CSS
-------------------------------------*/
html,
body {
  font-size: 16px;
  color: #505050;
  font-family: "Mooli", sans-serif!important;
  vertical-align: baseline;
  line-height: 26px;
  font-weight: 400;
}
img { 
  max-width: 100%;
  height: auto;
}
p {
  margin: 0!important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mooli", sans-serif;
  color: #212121;
  margin: 0 0 26px;
  font-weight: 700;
}
h1 {
  font-size: 36px;
  border-bottom: none!important;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px!important;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px!important;
}
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: #000;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.clear {
  clear: both;
}
::-moz-selection {
  background: #ff3115;
  text-shadow: none;
  color: #ffffff;
}
/*::selection {
  background: #ff3115;
  text-shadow: none;
  color: #ffffff;
}*/
.sec-spacer {
  padding: 35px 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;
}
/*-- Readon Button Css --*/
.readon2.banner-style {
    padding: 10px 25px;

}
.readon2 {
    outline: none;
    border: none;
    padding: 12px 40px;
    border-radius: 3px;
    display: inline-block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #ef6108;
    position: relative;
    overflow: hidden;
    border:1px solid #ef6108;
}
a.readon2.banner-style.ext {
    padding: 7px 16px;
}
.readon2.transparent {
  border: 1px solid #ff3115;
  color: #ff3115;
  background: transparent;
}
.readon2.transparent:hover {
  background: #ff3115;
  color: #ffffff;
}
.readon2:hover {
  background: transparent;
  color: #ef6108;
  border:1px solid #ef6108;
}
.uppercase {
  text-transform: uppercase;
}
/* ------------------------------------
    Global Class
---------------------------------------*/
.home-style2 h1, .home-style2 h2, .home-style2 h3, .home-style2 h4, .home-style2 h5, .home-style2 h6 {
    color: #000;
}
.drak-color .owl-nav .owl-prev,
.drak-color .owl-nav .owl-next,
.drak-color .sec-title h3 {
  color: #ffffff;
}
.sec-title2 h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #212121;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}
.sec-title2 span {
  display: block;
  font-size: 18px;
  line-height: 34px;
  color: #ff3115;
  font-weight: 600;
}
.sec-title h2 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.sec-title.text-center:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.sec-title.text-right:after {
  left: auto;
  right: 0;
}
.sec-title.text-right .view-more {
  right: auto;
  left: 0;
}
.sec-title p {
  margin-bottom: 0;
  font-size: 16px;
}
.sec-title .view-more {
  position: absolute;
  right: 0;
}
.sec-title .view-more a {
  font-weight: 600;
  font-size: 15px;
}
.sec-title.white-text h2 {
  color: #ffffff;
}
.sec-title.white-text p {
  color: rgba(255, 255, 255, 0.6);
}
.sec-title-2 {
  position: relative;
}
.sec-title-2 h2 {
  position: relative;
  font-size: 30px;
  line-height: 24px;
  margin-bottom: 25px;
  padding-bottom: 26px;
  text-transform: uppercase;
}
.sec-title-2 h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100px;
  background: #ff3115;
}
.sec-title-2 .view-more {
  position: absolute;
  right: 0;
  bottom: 0;
}
.sec-title-2 .view-more a {
  font-weight: 700;
  font-size: 14px;
}
.sec-title-2.text-center h2:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.sec-title-2.text-right h2:after {
  left: auto;
  right: 0;
}
.sec-title-2.text-right .view-more {
  right: auto;
  left: 0;
}
.sec-title-2 p {
  margin-bottom: 0;
  font-size: 16px;
}
.sec-title .sub-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.sec-title .sub-title.primary {
    color: #c1742d;
}
.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;
}
.readon {
    outline: none;
    padding: 12px 40px;
    border: 1px solid #21a7d0;
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    background: #f3f8f9;
}
.readon.green-btn {
    color: #FFFFFF;
    background: #ef6108;
    border-color: #7a69c5;
    border-radius: 30px;
    border:1px solid #ef6108;
    font-size: 14px;
    padding: 10px 30px 10px 30px;
}
.readon:hover,
.readon:focus {
  background: transparent;
  color: #ef6108;
}
.readon.border {
  background: transparent;
  border: 1px solid #ff3115;
  color: #ff3115;
}
.readon.border:hover {
  color: #fff;
  background: #ff3115;
}
.readon.border.white {
  border-color: #fff;
  color: #fff;
}
.readon.border.white:hover {
  color: #ff3115;
  background: #fff;
}
/*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);
}
.single-member-area figure .overly-border:before,
.single-member-area figure .overly-border:after,
.rs-blog .blog-item.slick-current .overly-border:before,
.rs-blog .blog-item.slick-current .overly-border:after,
.single-member-area:hover .overly-border:before,
.single-member-area:hover .overly-border:after,
.team-content:hover .overly-border:before,
.team-content:hover .overly-border:after,
.blog-content:hover .overly-border:before,
.blog-content:hover .overly-border:after,
.project-content:hover .overly-border:before,
.project-content:hover .overly-border:after,
.about-img:hover .overly-border:before,
.about-img:hover .overly-border:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.right_menu_togle .search-wrap button {
  color: #ff3115;
}
.padding-0 {
  padding: 0 !important;
}
.pb-15 {
  padding-bottom: 15px !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;
}
.rs-vertical-middle .logo-area {
  line-height: 95px;
}
.rs-vertical-middle {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.rs-vertical-bottom {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
/* -. 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: #ef6108;
}
.owl-controls .owl-nav .owl-prev {
  left: -60px;
}
.owl-controls .owl-nav .owl-next {
  right: -60px;
}
.rs-carousel:hover .owl-controls .owl-nav > div {
  opacity: 1;
}
/* ------------------------------------
    Header Start
---------------------------------------*/
.rs-header .rs-header-top {
  padding: 15px 0 15px;
}
.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: #ff3115;
  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: #ff3115;
}
.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: #fff !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: #ff9800 !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: 14px;
}
.inner-page .searce-box {
  position: absolute;
  top: 0;
  right: 16px;
  top: 15px;
}
.inner-page .searce-box a.rs-search i {
  color: #ff3115;
}
.home2 .rs-header-top {
  background: -webkit-linear-gradient(45deg, #ffc692 48%, #efad70 48%);
    background: -webkit-linear-gradient(left, #ffc692 48%, #efad70 48%);
    background: linear-gradient(45deg, #46338b 48%, #190a4f 48%)!important;
        box-shadow: 0px 5px 15px #efad706e;
}
.topborder {
    border-top: 5px solid #e16314;
}
.top-middle {
    text-align: right;
    padding: 0px;
}
.top-middle li {
    display: inline-block;
    margin-left: 15px;
    margin-top: 20px;
}
.top-middle i.fa {
    border: 1px solid #7a69c5;
    color: #fff!important;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
.top-middle .fa-whatsapp {
    font-size: 16px;
    text-align: center;
    line-height: 29px;
    width: 30px;
    height: 30px;
}
.top-middle .fa-facebook {
    font-size: 16px;
    text-align: center;
    line-height: 29px;
    width: 30px;
    height: 30px;
}
.top-middle .fa-twitter {
    font-size: 16px;
    text-align: center;
    line-height: 29px;
    width: 30px;
    height: 30px;
}
.top-middle .fa-linkedin {
    font-size: 16px;
    text-align: center;
    line-height: 29px;
    width: 30px;
    height: 30px;
}
i.fa.fa-whatsapp.colour, i.fa.fa-facebook.colour, i.fa.fa-twitter.colour, i.fa.fa-linkedin.colour {
    color: #fff!important;
}
i.fa.fa-whatsapp.colour:hover {
    color: #fff!important;
    background:#4caf50;
    border:1px solid #4caf50;
}
i.fa.fa-facebook.colour:hover {
    color: #fff!important;
    background:#527dbd;
    border:1px solid #527dbd;
}
i.fa.fa-twitter.colour:hover {
    color: #fff!important;
    background:#1da1f2;
    border:1px solid #1da1f2;
}
i.fa.fa-linkedin.colour:hover {
    color: #fff!important;
    background:#0077b5;
    border:1px solid #0077b5;
}
.home2 .menu-area .container {
  position: relative;
}
.home2 .menu-area .main-menu {
  /*background: #1b5c56;*/
  position: absolute;
  border-radius: 0;
  width: 100%;
  z-index: 999;
  left: 0;
  max-width: 1170px;
  margin: 0 auto;
}
.home2 .menu-area .rs-menu ul > li > a {
  color: #bbbbbb;
}
.home2 .menu-area .rs-menu ul > li > a:hover {
  color: #ff3115;
}
.home2 .menu-area .rs-menu ul > li ul.sub-menu a {
  color: #bbbbbb;
}
.home2 .menu-area.sticky .main-menu {
  position: static;
}
.home2 #rs-slider .container {
  margin-bottom: 100px;
}
.home2 .rs-search {
  position: absolute;
  right: 15px;
  z-index: 99;
  top: 0;
  color: #fff;
  font-size: 18px;
  display: inline-block;
  height: 55px;
  width: 60px;
  line-height: 55px;
  padding: 0;
  text-align: center;
  background: #ff3115;
}
.home2 .rs-search:hover {
  background-color: #e41f05;
  color: rgba(255, 255, 255, 0.7);
}
.home1 .right-bar-icon,
.home2 .right-bar-icon {
  position: absolute;
  right: 32px;
}
.home1 .right-bar-icon a,
.home2 .right-bar-icon a {
  display: inline-block;
  height: 55px;
  width: 45px;
  line-height: 55px;
  text-align: center;
  color: #fff;
}
.home1 .right-bar-icon a:hover,
.home2 .right-bar-icon a:hover {
  color: #fff;
}
.home1 .right-bar-icon .rs-search,
.home2 .right-bar-icon .rs-search {
  position: static;
  color: #fff;
  background-color: #ff3115;
  margin-right: -4px;
}
.home1 .right-bar-icon .rs-search:hover,
.home2 .right-bar-icon .rs-search:hover {
  background: #e41f05;
}
.home1 .right-bar-icon .nav-expander,
.home2 .right-bar-icon .nav-expander {
  background: #190a4f;
  color:#fff;
}
.home1 .right-bar-icon .nav-expander:hover,
.home2 .right-bar-icon .nav-expander:hover {
  background: #190a4f;
  color:#fff;
}
.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,
.home2 .search-modal .modal-content,
.home5 .search-modal .modal-content,
.home3 .search-modal .modal-content {
  background: transparent;
  position: initial;
  border: 0;
}
.university-home .search-modal .search-block input,
.inner-page .search-modal .search-block input,
.instructor-home .search-modal .search-block input,
.home1 .search-modal .search-block input,
.home2 .search-modal .search-block input,
.home5 .search-modal .search-block input,
.home3 .search-modal .search-block 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;
}
.university-home .search-modal .close,
.inner-page .search-modal .close,
.instructor-home .search-modal .close,
.home1 .search-modal .close,
.home2 .search-modal .close,
.home5 .search-modal .close,
.home3 .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,
.home5 .search-modal .close:hover,
.home3 .search-modal .close:hover {
  background-color: #ff3115;
}
.university-home .modal-backdrop,
.inner-page .modal-backdrop,
.instructor-home .modal-backdrop,
.home1 .modal-backdrop,
.home2 .modal-backdrop,
.home5 .modal-backdrop,
.home3 .modal-backdrop {
  opacity: 0.95;
}
/* ------------------------------------
    Sticky Menu
---------------------------------------*/
.menu-sticky.sticky {
  background: #0d504a;
  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: transparent;
  border-color: #ffffff;
  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);
  }
}
/* ------------------------------------
    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: #ff9800;
}
.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%, rgb(38 111 104 / 22%)), color-stop(50%, rgb(13 80 74 / 45%)), color-stop(100%, rgb(13 80 74 / 10%)));
  opacity: 0.95;
}
/* ------------------------------------
    About Section CSS
---------------------------------------*/
.rs-about.style1 .about-part {
  background: #266f681c;
  padding: 60px 60px 35px;
  border-radius: 5px;
  margin-top: -60px;
}
.rs-about.style1 .about-part .desc {
  font-size: 16px;
  line-height: 26px;
  color: #505050;
  margin-bottom: 15px;
}
.rs-about.style1 .about-part .sign-part {
  display: flex;
  align-items: center;
}
.rs-about.style1 .about-part .sign-part .img-part {
  padding-right: 30px;
}
.rs-about.style1 .about-part .sign-part .author-part span {
  display: block;
}
.rs-about.style1 .about-part .sign-part .author-part .post {
  font-size: 18px;
}
.rs-about.style1 .notice-bord.style1 {
  margin-top: -60px;
}
.rs-about.style1 .notice-bord.style1 .title {
  background: #46338b;
  font-size: 20px;
  text-transform: uppercase;
  padding: 18px 25px;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.rs-about.style1 .notice-bord.style1 li {
  position: relative;
  background: #266f681c;
  margin-bottom: 12px;
  border-radius: 3px;
  padding: 20px;
  padding-left: 0 !important;
  overflow: hidden;
}
.rs-about.style1 .notice-bord.style1 li .date {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #000;
  border-right: 1px solid #000;
  padding-right: 10px;
  font-weight: 600;
  width: 60px;
}
.rs-about.style1 .notice-bord.style1 li .date span {
  font-size: 22px;
  display: block;
}
.rs-about.style1 .notice-bord.style1 li .desc {
  padding-left: 95px;
  font-weight: 500;
}
.rs-about.style1 .notice-bord.style1 li:last-child {
  margin-bottom: 0;
}
.rs-about.style1 .img-part {
  position: relative;
}
.rs-about.style1 .img-part .shape {
  position: absolute;
}
.rs-about.style1 .img-part .top-center {
  top: -30px;
  left: 49%;
  z-index: -1;
}
.rs-about.style1 .img-part .left-bottom {
  left: 0;
  bottom: 0;
}
.rs-about.style1 .img-part .left-bottom.second {
  bottom: -40px;
}
.about-desc, .about-desc p {
    text-align: justify;
}
/* ------------------------------------
    Team Section CSS
---------------------------------------*/
.rs-team {
    background:#ededed;
}
.rs-team.style1 .team-item {
  position: relative;
  overflow: hidden;
}
.rs-team.style1 .team-item img {
  width: 100%;
}
.rs-team.style1 .team-item .content-part {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
  z-index: 1;
  transition: all 0.3s ease;
  opacity: 0;
}
.rs-team.style1 .team-item .content-part .name {
  margin-bottom: 8px;
  font-size: 18px;
  padding: 0 0px;
}
.rs-team.style1 .team-item .content-part .name a {
  color: #ffffff;
}
.rs-team.style1 .team-item .content-part .name a:hover {
  color: #fff;
}
.rs-team.style1 .team-item .content-part .designation {
  color: #ffffff;
  margin-bottom: 16px;
  display: block;
}
.rs-team.style1 .team-item .content-part .social-links li {
  display: inline;
  margin-right: 35px;
}
.rs-team.style1 .team-item .content-part .social-links li a {
  display: inline-block;
  color: #ffffff;
}
.rs-team.style1 .team-item .content-part .social-links li a:hover {
  color: #111111;
}
.rs-team.style1 .team-item .content-part .social-links li:last-child {
  margin: 0;
}
.rs-team.style1 .team-item:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%) scale(0.1);
  background: #ed630e !important;
  opacity: 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.rs-team.style1 .team-item:hover .content-part {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.rs-team.style1 .team-item:hover:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
}
.rs-team.style1 .owl-item.center .team-item .content-part {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.rs-team.style1 .owl-item.center .team-item:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
}
.rs-team.style1 .nav-style {
  position: relative;
}
.rs-team.style1 .nav-style .owl-nav {
  display: block;
  position: absolute;
  top: -80px;
  right: 0;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev,
.rs-team.style1 .nav-style .owl-nav .owl-next {
  display: inline-block;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i,
.rs-team.style1 .nav-style .owl-nav .owl-next i {
  transition: all 0.3s ease;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i:before,
.rs-team.style1 .nav-style .owl-nav .owl-next i:before {
  font-family: Flaticon;
  font-size: 22px;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev:hover i,
.rs-team.style1 .nav-style .owl-nav .owl-next:hover i {
  color: #21a7d0;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i:before {
  content: "\f134";
}
.rs-team.style1 .nav-style .owl-nav .owl-prev:after {
  content: "/";
  padding: 0 5px 0 5px;
  position: relative;
  top: -3px;
}
.rs-team.style1 .nav-style .owl-nav .owl-next i:before {
  content: "\f133";
}
.rs-team.style1.orange-color .team-item:after {
  background: #ff5421;
}

/* ------------------------------------
    Blog Section CSS
---------------------------------------*/
.rs-blog {
    background: #f5f5f5;
}
.rs-blog.main-home .owl-stage-outer {
  padding: 0 10px 10px;
  margin: 0 -10px;
}
.rs-blog.main-home .blog-item {
  background: #fff;
  transition: all 500ms ease;
  border-radius: 5px;
}
.rs-blog.main-home .blog-item .blog-content {
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 14%);
  padding: 40px 35px 16px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta {
  margin-bottom: 11px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li {
  position: relative;
  margin-right: 5px;
  padding-right: 15px;
  display: inline-block;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li i {
  padding-right: 3px;
  font-size: 14px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li i:before {
  padding-right: 7px;
  color: #ff5421;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li a {
  color: #505050;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li:last-child {
  margin: 0;
  padding: 0;
}
.rs-blog.main-home .blog-item .blog-content .title {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 34px;
}
.rs-blog.main-home .blog-item .blog-content .title a {
  color: #101010;
}
.rs-blog.main-home .blog-item .blog-content .title a:hover {
  color: #f54828;
}
.rs-blog.main-home .blog-item .blog-content .desc {
  color: #505050;
  padding-bottom: 20px;
}
.rs-blog.main-home .blog-item .blog-content .desc ul li span {
    display:inline-block;
    word-wrap:break-word;
    width:100%;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #dbdbdb;
  padding-top: 20px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories {
  display: flex;
  position: relative;
  padding-left: 22px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories:before {
  content: "\f02d";
  font-family: fontawesome;
  font-size: 15px;
  color: #ff5421;
  position: absolute;
  left: 0px;
  top: 1px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li {
  font-size: 14px;
  text-transform: capitalize;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li a {
  color: #505050;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li a:hover {
  color: #ff5421;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a {
  padding: 0px 0px 0px 0px;
  font-weight: 400;
  color: #505050;
  font-size: 15px;
  position: relative;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a:after {
  content: "\f054";
  font-family: fontawesome;
  font-size: 12px;
  position: relative;
  right: 0px;
  top: 0px;
  display: inline-block;
  margin-left: 3px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a:hover {
  color: #fc9928;
}
.rs-blog.main-home .blog-item:hover {
  transform: translateY(-10px);
}
.rs-blog.main-home.modify1 .blog-item .blog-content {
  background-color: #F3FCF8;
  padding: 30px 25px 30px 25px;
  border-radius: 0 0 5px 5px;
  box-shadow: unset;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta {
  font-size: 14px;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .date {
  color: #333333;
  font-size: 14px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .date i:before {
  color: #0c8b51;
  padding-right: 5px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .admin {
  color: #333333;
  font-size: 14px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .admin i:before {
  color: #0c8b51;
  padding-right: 5px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title a {
  color: #101010;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title a:hover {
  color: #0c8b51;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories:before {
  color: #0c8b51;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li a {
  color: #333333;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li a:hover {
  color: #0c8b51;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .rs-view-btn a {
  font-weight: 500;
  color: #333333;
  font-size: 15px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .rs-view-btn a:hover {
  color: #0c8b51;
}
.mt-10 {
    margin-top:10px;
}
.mb-10 {
    margin-bottom:10px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-94 {
    padding-top: 94px;
}
.pb-100 {
    padding-bottom: 60px;
}
.pt-150 {
    padding-top: 120px;
}
.nav-style2.owl-carousel .owl-item img {
    width: auto;
    height: 280px;
}
p.copyright {
    color: #fff;
    line-height: 1.8em;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 0em;
    background:#e1e1e1;
    padding: 10px 0; margin-bottom:0;
}

p.copyright a {
    color: #fff;
    text-decoration: underline;
}
p.copyright a:hover {
    color: #93c83f;
}
.ovrflw .scroll-flw {
    height: 472px;
    overflow: auto;
}
.ovrflw .scroll-flw::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #edf3f5;
}
.ovrflw .scroll-flw::-webkit-scrollbar-thumb {
    background: #666;
}
.rs-degree.style1 .degree-wrap .content-part, .rs-team.style1 .team-item:after {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
}
.custom:before {
    content: 'MENU';
    padding: 0 6px 0 0;
    position: relative;
    top: 3px;
    font-size: 20px;
    color: #fff;
}
/* ------------------------------------
    21. Gallery Section CSS
---------------------------------------*/
/*.rs-gallery .gallery-item {
  padding: 0 30px 30px 0;
}*/
.rs-gallery .gallery-item .gallery-img a img {
  border-radius: 5px;
  width: 100%;
  height: 220px;
}
.rs-gallery .gallery-item .title {
  padding-top: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.rs-gallery .gallery-item .title a {
    color: #000;
}
.rs-gallery.style2 .gallery-part {
  position: relative;
  overflow: hidden;
}
.rs-gallery.style2 .gallery-part .gallery-img {
  position: relative;
  overflow: hidden;
}
.rs-gallery.style2 .gallery-part .gallery-img a img {
  transform: scale(1);
  transition: all .8s ease;
  height: 220px;
}
.rs-gallery.style2 .gallery-part .gallery-img a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171f32;
  opacity: 0;
  display: block;
  transition: all .8s ease;
  z-index: 1;
}
.rs-gallery.style2 .gallery-part:hover .gallery-img a img {
  transform: scale(1.1);
}
.rs-gallery.style2 .gallery-part:hover .gallery-img a:before {
  opacity: .4;
}
.rs-gallery.home11-style .gallery-part .gallery-img {
  position: relative;
}
.rs-gallery.home11-style .gallery-part .gallery-img img {
  border-radius: 30px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .content-part {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #4e49a1;
  padding: 5px 20px;
  display: inline-block;
  color: #fff;
  border-radius: 30px;
  right: 0;
  transition: all .4s ease;
}
.rs-gallery.home11-style .gallery-part .gallery-img .content-part .title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  color: #ffffff;
  padding: 15px 0 15px;
  margin: 0;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s ease;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .title-part {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
  padding-right: 60px;
  padding-left: 60px;
  margin-bottom: 15px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a i {
  padding-left: 6px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a i:before {
  font-size: 16px;
}
.rs-gallery.home11-style .gallery-part .gallery-img:before {
  content: '';
  background: #4e49a1;
  position: absolute;
  visibility: hidden;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  opacity: 0;
  display: block;
  transition: all .4s ease;
  z-index: 1;
}
.rs-gallery.home11-style .gallery-part:hover .content-part {
  visibility: hidden;
  opacity: 0;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info {
  opacity: 1;
  visibility: visible;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info .title-part {
  color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info p {
  color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info .btn-part a {
  color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img:before {
  visibility: visible;
  opacity: 0.9;
}
.gallery-item:hover {
    text-decoration: underline;
}
/* ------------------------------------
    About Us Page
---------------------------------------*/
.sec-color {
    background-color: #f5f5f5;
}
.abt-title h2 {
  font-size: 22px;
  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: 3px;
    width: 100px;
    background-color: #7a69c5;
}
.abt-title.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}
/* ------------------------------------
    Event Pages

---------------------------------------*/
.rs-courses-2 {
  padding-bottom: 70px;
}
.rs-courses-2 .cource-item {
  margin-bottom: 30px;
  border: 1px solid #dddddd;
}
.rs-courses-2 .cource-item .cource-img {
  position: relative;
  overflow: hidden;
}
.rs-courses-2 .cource-item .cource-img img {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
}
.rs-courses-2 .cource-item .cource-img .course-value {
  position: absolute;
  bottom: -25px;
  right: 25px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #e3b121;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50%;
}
.rs-courses-2 .cource-item .course-body {
  padding: 20px 25px 25px;
  transition: all 0.5s ease 0s;
}
.rs-courses-2 .cource-item .course-body .course-category {
  display: inline-block;
}
.rs-courses-2 .cource-item .course-body .course-title {
  font-size: 20px;
  margin-bottom: 7px;
}
.rs-courses-2 .cource-item .course-body .course-title a {
  color: #212121;
  transition: all 0.35s ease 0s;
}
.rs-courses-2 .cource-item .course-body .course-title a:hover {
  color: rgba(33, 33, 33, 0.6);
}
.rs-courses-2 .cource-item .course-body .course-desc {
  margin-top: 12px;
}
.rs-courses-2 .cource-item .course-body .course-desc p {
  margin-bottom: 0;
  transition: all 0.35s ease 0s;
}
.rs-courses-2 .cource-item .cource-btn {
  background-color: #e3b121;
  border: 2px solid #e3b121;
  display: inline-block;
  margin-top: 20px;
  padding: 2px 10px;
  font-size: 11px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease 0s;
}
.rs-courses-2 .cource-item .cource-btn:hover {
  background-color: #e41f05;
  border-color: #e41f05;
}
.rs-courses-2 .cource-item:hover .course-body {
  background-color: #212121;
}
.rs-courses-2 .cource-item:hover .course-body .course-title a {
  color: #fff;
}
.rs-courses-2 .cource-item:hover .course-body p {
  color: rgba(255, 255, 255, 0.7);
}
.rs-courses-2 .cource-item:hover .cource-btn {
  background-color: #fff;
  border-color: #fff;
  color: #e3b121;
}
.rs-courses-2 .cource-item:hover .cource-btn:hover {
  background-color: #e41f05;
  border-color: #e41f05;
  color: #fff;
}
.rs-courses-2 .cource-item:hover .cource-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.8;
}
.rs-courses-2 .view-more {
  bottom: auto;
}
.rs-courses-2 .container {
  overflow: hidden;
}
.rs-courses-2 .row.grid {
  min-height: 500px !important;
}
.rs-courses-3 .row.grid {
  min-height: 500px;
  overflow: hidden;
}
.rs-courses-3 .evnets-item {
  margin-bottom: 30px;
  border: 1px solid #dddddd;
  transition: all 0.35s ease 0s;
}
.rs-courses-3 .evnets-item .evnets-img {
  position: relative;
  margin: -1px -1px 0 -1px;
}
.rs-courses-3 .evnets-item .evnets-img:before {
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.rs-courses-3 .evnets-item .evnets-img img {
  width: 100%;
}
.rs-courses-3 .evnets-item .evnets-img .course-value {
  position: absolute;
  bottom: -30px;
  right: 22px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #e3b121;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
}
.rs-courses-3 .evnets-item .course-toolbar {
  position: absolute;
  width: 100%;
  bottom: 15px;
  padding: 0 20px;
}
.rs-courses-3 .evnets-item .course-toolbar .course-category {
  margin-bottom: 3px;
}
.rs-courses-3 .evnets-item .course-toolbar .course-category a {
  font-size: 24px;
  color: #ffffff;
}
.rs-courses-3 .evnets-item .course-toolbar .course-category a:hover {
  color: #e3b121;
}
.rs-courses-3 .evnets-item .course-toolbar .course-date,
.rs-courses-3 .evnets-item .course-toolbar .course-duration {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}
.rs-courses-3 .evnets-item .course-toolbar .course-date i,
.rs-courses-3 .evnets-item .course-toolbar .course-duration i {
  margin-right: 3px;
}
.rs-courses-3 .evnets-item .course-toolbar .course-duration {
  margin-left: 12px;
}
.rs-courses-3 .evnets-item .course-body .course-title {
  font-size: 20px;
  margin-bottom: 7px;
}
.rs-courses-3 .evnets-item .course-body .course-title a {
  color: #212121;
}
.rs-courses-3 .evnets-item .course-body .course-title a:hover {
  color: rgba(33, 33, 33, 0.6);
}
.rs-courses-3 .evnets-item .course-body .course-desc {
  padding: 20px;
}
.rs-courses-3 .evnets-item .course-body .course-desc p {
  margin-bottom: 0;
  transition: all 0.35s ease 0s;
}
.rs-courses-3 .evnets-item:hover {
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.1);
}
.rs-courses-3 .evnets-item:hover .evnets-img:before {
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.rs-courses-3 .course-footer {
  padding: 15px 20px;
  /*background-color: #f0f0f0;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
}
.rs-courses-3 .course-footer .course-button a {
  color: #505050;
  display: inline-block;
  position: relative;
}
.rs-courses-3 .course-footer .course-button a:hover {
  color: #e3b121;
}

.rs-courses-3 .view-more {
  bottom: auto;
}
.rs-events-list .evnets-item {
  margin-bottom: 40px;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 20px 0 rgb(0 0 0 / 20%);
  padding: 15px;
  border-radius: 10px;
}
.rs-events-list .evnets-item .evnets-img {
  position: relative;
}
.rs-events-list .evnets-item .evnets-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-events-list .evnets-item .evnets-img .image-link {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  line-height: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #c1742d;
  color: #ffffff;
  font-size: 18px;
  transform: translateX(-50%) translateY(-50%) scale(0.7);
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.rs-events-list .evnets-item .evnets-img .image-link:hover {
  background-color: #c1742d;
}
.rs-events-list .evnets-item .evnets-img:hover:before {
  opacity: 1;
}
.rs-events-list .evnets-item .evnets-img:hover .image-link {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(1);
}
.rs-events-list .course-category {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}
.rs-events-list .course-category a {
  color: #505050;
}
.rs-events-list .course-title {
  font-size: 24px;
  margin-bottom: 7px;
}
.rs-events-list .course-title a {
  color: #212121;
}
.rs-events-list .course-title a:hover {
  color:#f54828;
}
.rs-events-list .course-date,
.rs-events-list .course-value {
  display: inline-block;
  font-size: 14px;
  color: #777777;
  font-weight: 600;
}
.rs-events-list .course-value {
  margin-left: 12px;
}
.rs-events-list .course-value span {
  color: #e3b121;
}
.rs-events-list .course-body {
  margin-top: 12px;
}
.rs-events-list .course-button a {
  display: inline-block;
  height: 42px;
  line-height: 42px;
  text-align: center;
  min-width: 170px;
  padding: 0 20px;
  background-color: #e3b121;
  color: #fff;
  transition: all 0.3s ease 0s;
  font-weight: 500;
}
.rs-events-list .course-button a:hover {
  background-color: #e41f05;
}
.rs-courses-categories .container {
  overflow: hidden;
}
.rs-courses-categories .container .col-lg-3 {
  margin-bottom: 30px;
}
.rs-courses-categories .courses-item {
  text-align: center;
  background-color: #f0f0f0;
  padding: 30px 30px 22px;
}
.rs-courses-categories .courses-item .courses-title {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 18px;
}
.rs-courses-categories .courses-item .courses-title a {
  color: #212121;
}
.rs-courses-categories .courses-item .courses-title a:hover {
  color: #e3b121;
}
.rs-courses-categories .courses-item .courses-amount {
  font-size: 13px;
  font-weight: 600;
  color: #505050;
}
.rs-courses-categories .courses-item i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #e3b121;
  color: #ffffff;
  border-radius: 50%;
  font-size: 36px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
}
.rs-courses-categories .courses-item:hover {
  background-color: #d0d0d0;
}
.rs-courses-categories .courses-item:hover i {
  background-color: #212121;
  color: #e3b121;
  transform: rotate(360deg);
}
.sidebar-area .title {
  font-size: 20px!important;
  margin-bottom:0;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  display: block; 
  padding: 18px 25px;
  background: #46338b;
      border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.sidebar-area .search-box {
    margin-bottom: 45px;
    border: solid 1px #ccc;
    box-shadow: 0px 0px 20px 0 rgb(0 0 0 / 20%);
    border-radius: 5px;
}
.sidebar-area .search-box .form-control {
  border-radius: 0;
  box-shadow: none;
  color: #101010;
  padding: 5px 15px;
  height: 45px;
}
.sidebar-area .search-box .box-search {
  position: relative;
  padding:15px;
}
.sidebar-area .search-box .btn {
    position: absolute;
    background: #7a69c5;
    border: none;
    box-shadow: none;
    top: 50%;
    outline: none;
    transform: translateY(-50%);
    color: #fff;
    left: 0;
    height: 100%;
}
.sidebar-area .search-box .btn:hover {
    background:#634dc1;
    color:#fff;
}
.sidebar-area .cate-box {
  margin-bottom: 45px; 
    border: solid 1px #ccc;
    box-shadow: 0px 0px 20px 0 rgb(0 0 0 / 20%);
    border-radius: 5px;
}
.sidebar-area .cate-box ul {
  padding: 15px;
  margin: 0;
}
.sidebar-area .cate-box ul li {
  list-style: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  cursor: pointer;
}
.sidebar-area .cate-box ul li a {
  color: #505050;
  padding: 0 0 0 5px;
}
.sidebar-area .cate-box ul li a span {
  float: right;
}
.sidebar-area .cate-box ul li:first-child {
  padding-top: 0;
}
.sidebar-area .cate-box ul li:hover i,
.sidebar-area .cate-box ul li:hover a {
  color: #f54828;
}
.sidebar-area .latest-events {
  margin-bottom: 45px;
      border: solid 1px #ccc;
    box-shadow: 0px 0px 20px 0 rgb(0 0 0 / 20%);
    border-radius: 5px;
}
.sidebar-area .latest-events .post-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.sidebar-area .latest-events .post-item .post-img {
  width: 33.33%;
  transition: all 0.3s ease 0s;
  float: left;
}
.sidebar-area .latest-events .post-item .post-desc {
  width: 66.66%;
  padding-left: 15px;
  float: left;
}
.sidebar-area .latest-events .post-item .post-desc h4 {
  margin-bottom: 5px;
}
.sidebar-area .latest-events .post-item .post-desc h4 a {
  font-size: 16px;
  color: #212121;
}
.sidebar-area .latest-events .post-item .post-desc h4 a:hover {
  color: #f54828;
}
.sidebar-area .latest-events .post-item .post-desc .duration {
  font-weight: 600;
  color: #777777;
}
.sidebar-area .latest-events .post-item .post-desc .price {
  margin-left: 8px;
  font-weight: 600;
  color: #777777;
}
.sidebar-area .latest-events .post-item .post-desc .price span {
  color: #e3b121;
}
.sidebar-area .latest-events .post-item + .post-item {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #ddd;
}
.sidebar-area .latest-events .post-item:hover .post-img {
  opacity: 0.7;
}
.sidebar-area .tags-cloud {
  margin-bottom: 39px;
}
.sidebar-area .tags-cloud ul {
  padding: 0;
  margin: 0;
}
.sidebar-area .tags-cloud ul li {
  float: left;
  list-style: none;
}
.sidebar-area .tags-cloud ul li a {
  border: 1px solid #d7d7d7;
  padding: 5px 13px;
  margin: 0 6px 6px 0;
  display: block;
  color: #505050;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 28px;
}
.sidebar-area .tags-cloud ul li a:hover {
  background-color: #e3b121;
  border-color: #e3b121;
  color: #ffffff;
}
.sidebar-area .newsletter {
  background: #f0f0f0;
  text-align: center;
  padding: 30px 40px;
}
.sidebar-area .newsletter h4 {
  font-size: 20px;
  color: #212121;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin: 0;
}
.sidebar-area .newsletter p {
  font-size: 15px;
  color: #505050;
  margin: 7px 0 20px;
}
.sidebar-area .newsletter .box-newsletter {
  position: relative;
}
.sidebar-area .newsletter .box-newsletter .form-control {
  border-radius: 0;
  box-shadow: none;
  color: #212121;
  padding: 5px 20px;
  height: 50px;
  border-color: #e3b121;
}
.sidebar-area .newsletter .box-newsletter .btn {
  position: absolute;
  right: 3px;
  background: #e3b121;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #ffffff;
  display: block;
  padding: 11px 17px;
  border-radius: 0;
  text-align: center;
}
.sidebar-area .newsletter .box-newsletter .btn:hover {
  background: #e41f05;
}
.sidebar-area .course-features-info {
  margin-bottom: 20px;
  background: #212121;
  padding: 15px;
  color: #fff;
}
.sidebar-area .course-features-info .desc-title {
  color: #e3b121;
  margin: 10px 0 8px;
}
.sidebar-area .course-features-info ul li {
  display: block;
  overflow: hidden;
  padding: 10px 0;
}
.sidebar-area .course-features-info ul li + li {
  border-top: 1px solid #414141;
}
.sidebar-area .course-features-info ul li i {
  color: #e3b121;
}
.sidebar-area .course-features-info ul li .label {
  padding-left: 10px;
}
.sidebar-area .course-features-info ul li .value {
  float: right;
  padding-right: 5px;
}
.top-title {
    font-size: 24px;
    color: #212121;
    margin: 20px 0 15px;
    padding: 0;
    line-height: 25px;
}
h5.description {
    margin: 10px 0;
    padding-top: 10px;
    text-decoration: underline;
}
.share-section2 {
    border: 1px solid #ddd;
    padding: 15px 15px 15px 15px;
}
.share-section2 span {
    font-size: 15px;
    font-weight: 400;
    color: #212121;
}
.share-section2 .share-link {
    float: right;
}
.share-section2 .share-link li {
    float: left;
    list-style: none;
}
.share-section2 .share-link li a {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    padding: 7px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: 14px;
}
/* ------------------------------------
    Breadcrumbs
---------------------------------------*/
.rs-breadcrumbs {
  padding: 100px 0 35px;
}
.rs-breadcrumbs .page-title {
  /*margin: 80px 0 100px;*/
  font-size: 36px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rs-breadcrumbs ul {
  padding: 0;
}
.rs-breadcrumbs ul li {
  color: #fe9700;
  display: inline-block;
  font-weight: 400;
}
.rs-breadcrumbs ul li a {
  position: relative;
  padding-right: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #ffffff;
}
.rs-breadcrumbs ul li a:before,
.rs-breadcrumbs ul li a:after {
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  height: 15px;
  width: 2px;
  position: absolute;
  right: 7px;
  top: 2px;
  transform: rotate(26deg);
}
.rs-breadcrumbs ul li a:before {
  right: 13px;
}
.rs-breadcrumbs ul li a:hover {
  color: #e3b121;
}
.breadcrumbs-overlay {
  position: relative;
  z-index: 1;
}
.breadcrumbs-overlay:after {
  content: '';
  position: absolute;
  background-color: rgb(239 173 112 / 48%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg1 {
  background-image: url(images/bg1.jpg);
  background-size: cover;
  background-position: center;
  background-position: center top;
}
.modal-header {
    background: #c1742d;
}
.modal-title {
    color: #fff !important;
}
button.close {
    color: #fff;
}
body .modal-backdrop {
  opacity: 0.7 !important;
}
.modal-header {
     border-top-left-radius: 0px; 
     border-top-right-radius: 0px; 
}
.modal-body .notice-bord.style1 li .date {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #000;
    border-right: 1px solid #000;
    padding-right: 10px;
    font-weight: 600;
    width: 60px;
}
.modal-body .notice-bord.style1 li {
    position: relative;
    background: #266f681c;
    margin-bottom: 12px;
    border-radius: 3px;
    padding: 20px;
    padding-left: 0 !important;
    overflow: hidden;
}
.modal-body .notice-bord.style1 li .date span {
    font-size: 22px;
    display: block;
    font-weight:500;
}
.modal-body .notice-bord.style1 li .desc {
    padding-left: 95px;
    font-weight: 400;
}
.colour {
    background:none;
}
.login-signup-btn {
    position: absolute;
    top: 16px;
    box-shadow: 0px 12px 15px 0 #000000a3;
}
.login-signup-btn.secondbtn {
    left:54px;
}
.login-signup-btn.homebtn a {
    background: #46338b;
}
.login-signup-btn a {
    background: #ef6108;
    color:#fff; padding:17px 12px;
}
.login-signup-btn a:hover {
    background: #ff8335;
    color:#fff;
}
.latest-events-body {
    padding:15px;
}

/*---fundraising--*/
.bg2 {
  background-image: url(images/bg2.jpg);
  background-size: cover;
  background-position: center;
  background-position: center top;
}
.bg-info {
    background-color: #0a433d!important;
}
.alert {margin-bottom:0;}
span.fund {font-weight:600;}

.social-share {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  float: right;
}

.btnn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  box-shadow: 4px 2px 10px 1px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  position: relative;
  background: #fff;
}
.btnn .fa-share-alt {
  margin-right: 2px;
}
.btnn > i:hover {
  color: #0a433d;
}
.btnn:active:not(:focus-within) {
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2) inset;
}
.btnn:active:not(:focus-within) > i {
  transform: translate(0.8px, 0.8px);
}

.social {
  box-shadow: 4px 2px 10px 1px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 50px;
  display: none;
  justify-content: space-between;
  background-color: white;
  padding: 8px;
  border-radius: 50px;
}
.toggle input[type="checkbox"]:checked + .btnn .social {
  animation: fadeIn 1s;
  display: flex;
}
.toggle input[type="checkbox"]:not(:checked) + .btnn .social {
  animation: fadeOut 1s;
}

.toggle input[type="checkbox"]:checked + .btnn .fa-share-alt {
  display: none;
}
.toggle input[type="checkbox"]:not(:checked) + .btnn .fa-times {
  display: none;
}
.social a {
  margin: 0 10px;
  font-size: 20px;
  color: #999;
}

i.fa.fa-facebook, i.fa.fa-facebook:hover {
    color: #3b5998!important;
}
i.fa.fa-linkedin, i.fa.fa-linkedin:hover {
    color: #0A66C2!important;
}
i.fa.fa-whatsapp, i.fa.fa-whatsapp:hover {
    color: #43d854 !important;
}
i.fa.fa-twitter, i.fa.fa-twitter:hover {
    color: #1DA1F2 !important;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.contri {margin-bottom:0px!important;}
.author-comment ul li {
    border-bottom: 1px solid #ddd;
    padding: 10px 18px;
	margin-bottom: 15px;
}
.card {
	border:none;
}
.coment1, .coment2, .coment3, .coment4, .coment5, .coment6, .coment7, .coment8, .coment9  {
    border-bottom: 1px solid #ddd;
    padding: 10px 18px;
    margin-bottom: 15px;
}
.coment1, .coment2, .coment3 {background: #d4edda82;margin-bottom:15px;}
.coment4, .coment5, .coment6 {background: #d1ecf17a;margin-bottom:15px;}
.coment7, .coment8, .coment9 {background: #fff3cd4f;margin-bottom:15px;}

.author-comment ul li:nth-child(1) {background: #d4edda82;}
.author-comment ul li:nth-child(2) {background: #d1ecf17a;}
.author-comment ul li:nth-child(3) {background: #fff3cd4f;}
.amount {
	background: #d1595e;
    text-align: center;
    padding: 5px;
    margin-top: 0;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    min-height: 62px;
    line-height: 20px;}
.amount p {font-weight:600; margin-top: 6px;}
.sidebar-area .cate-box ul.funds li:hover a, .sidebar-area .cate-box ul.funds li:hover i {
    color: #505050;
	cursor:default
}
.ovrflw .scroll-flww {
    height: 400px;
    overflow: auto;
}
.ovrflw .scroll-flww::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #edf3f5;
}
.ovrflw .scroll-flww::-webkit-scrollbar-thumb {
    background: #666;
}

/*---member----*/
.bg3 {
  background-image: url(images/bg3.jpg);
  background-size: cover;
  background-position: center;
  background-position: center top;
}
.rs-courses-3 .row.grid {
  min-height: 500px;
  overflow: hidden;
}
.rs-courses-3 .course-item {
  margin-bottom: 30px;
  border: 1px solid #dddddd;
  transition: all 0.35s ease 0s;
}
.rs-courses-3 .course-item .course-img {
  position: relative;
  margin: -1px -1px 0 -1px;
  max-height: 200px!important;
}
.rs-courses-3 .course-item .course-img:before {
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.rs-courses-3 .course-item .course-img img {
  width: 100%;
  max-height:200px;
}
.rs-courses-3 .course-item .course-img .course-value {
  position: absolute;
  bottom: -30px;
  right: 22px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #266f68;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
}
.rs-courses-3 .course-item .course-toolbar {
  position: absolute;
  width: 100%;
  bottom: 15px;
  padding: 0 20px;
}
.rs-courses-3 .course-item .course-toolbar .course-category {
  margin-bottom: 3px;
}
.rs-courses-3 .course-item .course-toolbar .course-category a {
  font-size: 24px;
  color: #ffffff;
}
.rs-courses-3 .course-item .course-toolbar .course-category a:hover {
  color: #e3b121;
}
.rs-courses-3 .course-item .course-toolbar .course-date,
.rs-courses-3 .course-item .course-toolbar .course-duration {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}
.rs-courses-3 .course-item .course-toolbar .course-date i,
.rs-courses-3 .course-item .course-toolbar .course-duration i {
  margin-right: 3px;
}
.rs-courses-3 .course-item .course-toolbar .course-duration {
  margin-left: 12px;
}
.rs-courses-3 .course-item .course-body .course-title {
  font-size: 20px;
  margin-bottom: 7px;
}
.rs-courses-3 .course-item .course-body .course-title a {
  color: #212121;
}
.rs-courses-3 .course-item .course-body .course-title a:hover {
  color: #f54828;
}
.rs-courses-3 .course-item .course-body .course-desc {
  padding: 20px;
}
.rs-courses-3 .course-item .course-body .course-desc p {
  margin-bottom: 0;
  transition: all 0.35s ease 0s;
}
.rs-courses-3 .course-item:hover {
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.1);
}
.rs-courses-3 .course-item:hover .course-img:before {
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.rs-courses-3 .course-footer .course-button a:hover {
  color: #e3b121;
}
.rs-courses-3 .view-more {
  bottom: auto;
}
i.fa.fa-google, i.fa.fa-google:hover {
    color: #BB001B !important;
}
.c1 {
	background: #d4edda82;
}
.c2 {
	background: #d1ecf17a;
}
.c3 {
	background: #fff3cdd1;
}
.c4 {
	background: #ff000014;
}
.c5 {
	background: #86ff002b;
}
.c6 {
	background: #ff00bc14;
}
.c7 {
	background: #00dcff14;
}
.c8 {
	background: #0f29ab14;
}
.c9 {
	background: #3498ff21;
}
.c10 {
	background: #d4edda82;
}
.c11 {
	background: #d4eddabf;
}
.c12 {
	background: #3f00ff14;
}
.c13 {
	background: #d4edda82;
}
.c14 {
	background: #d1ecf17a;
}
.c15 {
	background: #fff3cdd1;
}
.c16 {
	background: #ff000014;
}
.c17 {
	background: #86ff002b;
}
.c18 {
	background: #ff00bc14;
}
.c19 {
	background: #00dcff14;
}
.c20 {
	background: #0f29ab14;
}
.c21 {
	background: #3498ff21;
}
.c22 {
	background: #d4edda82;
}
.c23 {
	background: #d4eddabf;
}
.c24 {
	background: #3f00ff14;
}
.c25 {
	background: #d4edda82;
}
.c26 {
	background: #d1ecf17a;
}
.c27 {
	background: #fff3cdd1;
}
.c28 {
	background: #ff000014;
}
.c29 {
	background: #86ff002b;
}
.c18 {
	background: #ff00bc14;
}
.c30 {
	background: #00dcff14;
}
.c31 {
	background: #0f29ab14;
}
.c32 {
	background: #3498ff21;
}
.c33 {
	background: #d4edda82;
}
.c34 {
	background: #d4eddabf;
}
.c35 {
	background: #3f00ff14;
}
.course-seats {
    margin-top: 10px;
}
.yeartext {
	text-align: right;
    margin-right: 46px;
}
.fb {
	background:#3d5e9d;
}
.linkdin {
	background:#0c9ee6;
}
.gogle {
	background:#e54741;
}
.or-section {
    width: 100%;
    height: 8px;
    border-bottom: 1px solid #9E9E9E;
    margin-top: 18px;
    margin-bottom: 20px;
}
.md-color-grey {
    background-color: rgb(224,224,224) !important;
}
i.fa.fa-facebook.color-white, i.fa.fa-google.color-white, i.fa.fa-linkedin.color-white {
    color: #fff!important;
	border: 1px solid #fff;
    padding: 6px;
}
.lognicon {
	float: right;
    margin: -28px 10px 0 0;
}
.dialmodel {
	width:30%!important;
}
.corvalue {
	background-color: #d1595e!important;
}

/*---view profile start---*/
.main-wrapper {
	background:#f1f1f1;
}
.profile-banner-large {
    height: 370px;
}
.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.profile-menu-area {
    margin-bottom: 20px;
}
.profile-picture-box {
    position: absolute;
    -webkit-transform: translateY(calc(-50% - 10px));
    -ms-transform: translateY(calc(-50% - 10px));
    transform: translateY(calc(-50% - 10px));
    background-color: #fff;
    z-index: 1;
}
.profile-picture {
    position: relative;
	width: 256px;
    box-shadow: 0px 1px 15px 0px rgba(51, 51, 51, 0.2);
}
.profile-picture:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    position: absolute;
    pointer-events: none;
    border: 10px solid #fff;
}
.header-top-navigation ul li {
    display: inline-block;
    margin-right: -20px;
    position: relative;
    padding: 0 15px;
}
.header-top-navigation ul li.active, .header-top-navigation ul li.active a {
    background: #d1595e;
    color: #fff!important;
	/*padding: 11px 8px;*/
}
.header-top-navigation ul li:hover a, .header-top-navigation ul li.active a {
    color: #ffffff;
    background: #d1595e;
}
.header-top-navigation ul li a {
    color: #333333;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 21px 12px;
    text-transform: capitalize;
}
.profile-edit-panel {
    text-align: right;
}
.edit-btn {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 11px 28px;
    display: inline-block;
    border-radius: 50px;
    text-transform: capitalize;
    background-color: #d1595e!important;
    border: 1px solid #d1595e!important;
}
.profile-sidebar {
    margin-top: 105px;
}
.pro-card.widget-item {
    padding: 25px;
}
.pro-card {
    border: none;
    border-radius: 0;
    padding: 30px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 1px 15px 0px rgba(51, 51, 51, 0.2);
    box-shadow: 0px 1px 15px 0px rgba(51, 51, 51, 0.2);
	background:#fff;
}
.posted-author {
    margin-left: 20px;
}
.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    text-transform: capitalize;
    position: relative;
}.widget-title:before {
    bottom: -12px;
    left: 0;
    width: 30px;
    height: 1px;
    content: "";
    position: absolute;
    background-color: #dc4734;
}
.author-into-list {
    margin-top: 27px;
}
.author-into-list li {
    margin-bottom: 10px;
}
.author-into-list li a {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}
.author-into-list li a i {
    color: #dc4734;
    font-size: 20px;
    padding-right: 20px;
}
.card-small {
    padding: 16px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.share-box-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.profile-thumb {
    display: inline-block;
    position: relative;
}
.profile-thumb-middle {
    width: 45px;
    height: 45px;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}
.author {
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: capitalize;
}
.author a {
    color: #333333;
}
.posted-author .post-time {
    display: block;
    font-size: 14px;
    line-height: 1;
    padding-top: 10px;
}
.post-settings-bar {
    margin-left: auto;
    position: relative;
    cursor: pointer;
}
.post-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 12px;
    margin-top: 20px;
}
.post-meta-like i, .post-comment i, .post-share i {
    font-size: 20px;
    color: #333333;
    vertical-align: middle;
}
.post-meta-like span, .post-comment span, .post-share span {
    color: #666666;
    vertical-align: text-bottom;
    padding-left: 8px;
}
.post-meta .post-meta-like strong {
    display: none;
    font-size: 14px;
    font-weight: 400;
    padding-left: 8px;
    color: #666666;
}
.post-meta .comment-share-meta {
    margin-left: auto;
}
.post-meta .comment-share-meta li:first-child {
    margin-left: 0;
}

.post-meta .comment-share-meta li {
    display: inline-block;
    margin-left: 24px;
}
.arrow-shape:before {
    right: 10px;
    bottom: 100%;
    content: "";
    position: absolute;
    height: 20px;
    border-bottom: 20px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
/*---view profile end---*/
.container-inner {
    background: #fff;
    width: 85%;
    margin: 0 auto;
}
.master-cust-page {
    background: url('../../Images/rtu-bg.jpg') repeat-x fixed 0 0;
    background-size:100% 100%;
}
.slider-shadow {
    box-shadow: 0 0 28px #46338bbd;
}
h3.box-title {
    font-size: 14px !important;
    margin: 0;
} 
.custom-blog-image {
    position: relative;
    top: 57px;
    margin: 0 auto;
    text-align: center;
}
.custom-blog-image img {
    border: 3px solid #e3e3e3; width:100px!important;margin: 0 auto!important;
}
.title-heading-font {margin:20px 0;}
.title-heading-font a {
    padding:5px 0;
}
h3.title a { font-size:20px!important;}
/*---alumni directory---*/
.rs-team-2 .team-item {
  margin-bottom: 30px;
  box-shadow: 0px 2px 20px 5px #00000024;                 /*//27 june*/
}
.rs-team-2 .team-item .team-img {
  position: relative;
  overflow: hidden;
}
.rs-team-2 .team-item .team-img .social-icon {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: .8s all ease;
}
.rs-team-2 .team-item .team-img .social-icon a i {
  margin-right: 8px;
  font-size: 20px;
}
.rs-team-2 .team-item .team-img:before {
  content: '';
  position: absolute;
  width: calc(100% - 33px);
  height: calc(100% - 21px);
  background: transparent;
  border: 5px solid rgba(255, 255, 255, 0.7);
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: .5s all ease;
}
.rs-team-2 .team-item .team-img:hover .social-icon {
  opacity: 1;
  visibility: visible;
}
.rs-team-2 .team-item .team-img:hover .social-icon a:hover {
  color: #fff;
}
.rs-team-2 .team-item .team-img:hover:before {
  transform: translateX(-50%) translateY(-50%) rotate(-270deg);
  border: 0;
  background: rgba(33, 33, 33, 0.8);
}
.rs-team-2 .team-item .team-body {
  padding: 12px;
  text-align: center;
  background-color: #f0f0f0;
  min-height: 90px;
}
.rs-team-2 .team-item .team-body .name {
  font-size: 20px!important;
  margin-bottom: 2px;
  color: #212121;
  transition: all 0.3s ease 0s;
}
.rs-team-2 .team-item .team-body .name:hover {
  color: #f54828;
}
.rs-team-2 .team-item .team-body .designation {
  font-size: 15px;
}
.rs-team-2.team-page {
  padding-top: 93px;
}
.rs-team-2 .row.grid {
  min-height: 400px !important;
  overflow: hidden;
}
.rs-team-2 .team-item .team-img:hover:before {
  transform: translateX(-50%) translateY(-50%) rotate(-270deg);
  border: 0;
  background: rgba(33, 33, 33, 0.8);
}
i.fa.fa-linkedin, i.fa.fa-linkedin:hover, i.fa.fa-facebook, i.fa.fa-facebook:hover, /*i.fa.fa-twitter, i.fa.fa-twitter:hover*/ {
    color: #fff;
}
.mtb-10 {margin-top:10px;}
.cat-event-list {float:right;}