/*
Theme Name: British School
Theme URI: https://www.british-school.org/
Description: This is custom theme for British School.
Author: Smart Web Solutions
Author URI: http://smartweb.in
Version: 1.0.0
*/


@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Roboto+Condensed:400,500,600,700');
.container {
	max-width: 1260px !important;
}
 [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 !important;
	color: #666;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
	vertical-align: baseline;
	line-height: 26px;
	font-weight: 400;
}
img {
	max-width: 100%;
	height: auto;
}
p {
	margin: 0 0 15px !important; font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	color: #212121; font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0 0 0px;
	font-weight: 700;
}
h1 {
	font-size: 36px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 14px;
}
h6 {
	font-size: 14px;
}
a {
	color: #0f60c4;
	text-decoration: none !important;
	outline: none !important;
}
a:active, a:hover {
	text-decoration: none;
	outline: 0 none;
	color: #efa904;
}
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: 40px 0;
}
.sec-color {
	margin-top: 18px;
}
.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;
}
/********************************/
/*       Slides backgrounds     */
/********************************/
.bg1 {
	background-image: url(images/bg/bg1.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
}
.bg2 {
	background-image: url(images/bg/bg2.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
}
.bg3 {
	background-image: url(images/about/rsuelt.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
}
.bg42 {
	background-image: url(images/bg/directors-message.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
	margin-bottom: 45px;
}
.bg46 {
	background: url(images/history/hsbg.jpg);
	background-size: cover;
	padding: 40px 0px; margin-bottom: 40px;
}
.bg5 {
	background-image: url(images/bg/testimonial-bg.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
	margin-top: 50px;
}
.bg6 {
	background-image: url(images/slider/home1/slide2.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
}
.bg7 {
	background-image: url(images/bg/bg3.jpg);
	background-size: cover;
	background-position: center;
	background-position: center top;
}
.bg8 {
	background-image: url(images/bg/bg8.jpg);
	background-attachment: fixed;
	background-position: center top;
}
/* ------------------------------------
    02. Global Class
---------------------------------------*/
.drak-color .owl-nav .owl-prev, .drak-color .owl-nav .owl-next, .drak-color .sec-title h3 {
	color: #ffffff;
}
.sec-title {
	position: relative;
	margin: 16px 11px;
}
.sec-title h2 {
	font-size: 24px;
	line-height: 33px;
	margin-bottom: 0px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 3px;
	color: #0062A0;
}
.sec-title:after {
}
.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: 14px;
}
.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);
}
.home5 .sec-title h2 {
	color: #92278f;
}
.home5 .sec-title:after {
	background: #92278f;
}
.home5 .sec-title.white-text p {
	color: #ffffff;
}
.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: #efa904;
}
.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;
}
.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 {
	position: relative;
	display: inline-block;
	padding: 12px 20px;
	line-height: normal;
	background: #ff3115;
	color: #fff;
	transition: all 0.3s ease 0s;
	border-radius: 2px;
}
.readon:hover, .readon:focus {
	background: #e41f05;
	color: rgba(255, 255, 255, 0.8);
}
.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 #0f325f;
	border-bottom: 5px solid #0f325f;
	-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 #0f325f;
	border-left: 5px solid #0f325f;
	-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;
}
.pt-45 {
	padding-top: 45px !important;
}
.pt-70 {
	padding-top: 54px !important;
}
.pt-50 {
	padding-top: 50px !important;
}
.pt-80 {
	padding-top: 80px !important;
}
.pt-100 {
	padding-top: 50px !important;
margin-top: 40px;
padding-bottom: 50px;
}
.pb-40 {
	padding-bottom: 40px !important;
}
.pb-45 {
	padding-bottom: 45px !important;
}
.pb-70 {
	padding-bottom: 54px !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: 0px !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-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: 46%;
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	background-color: #0062A0;
	color: #fff;
	transform: translateY(-50%);
	font-size: 22px;
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.owl-controls .owl-nav > div:hover {
	background-color: #ff3115;
}
.owl-controls .owl-nav .owl-prev {
	left: -60px;
}
.owl-controls .owl-nav .owl-next {
	right: -60px;
}
.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: 4px 0 5px;
	background-color: #f8b239;
}
.rs-toolbar .rs-toolbar-left .welcome-message {
	font-size: 14px;
}
.rs-toolbar .rs-toolbar-left .welcome-message i {
	color: #fff;
	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: #fff;
}
.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: 13px;
	background-color: #efefef;
	padding: 10px;
	color: #5d5d5d;
}
/* ------------------------------------
    02. Header Start
---------------------------------------*/
.rs-header .rs-header-top {
	padding: 5px 0 5px;
}
.rs-header .rs-header-top .header-contact {
	float: right;
	margin-top: 34px;
}
.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: #5a5858;
	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: 15px;
}
.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: #ff3115 !important;
}
.rs-header .menu-area .rs-menu li.current_page_item > a, .rs-header-2 .menu-area .rs-menu li.current_page_item > a, .rs-header-3 .menu-area .rs-menu li.current_page_item > a, .rs-header-4 .menu-area .rs-menu li.current_page_item > a, .rs-header .menu-area .rs-menu li.current-menu-item > a, .rs-header-2 .menu-area .rs-menu li.current-menu-item > a, .rs-header-3 .menu-area .rs-menu li.current-menu-item > a, .rs-header-4 .menu-area .rs-menu li.current-menu-item > a, .rs-header .menu-area .rs-menu li.active > a, .rs-header-2 .menu-area .rs-menu li.active > a, .rs-header-3 .menu-area .rs-menu li.active > a, .rs-header-4 .menu-area .rs-menu li.active > a, .rs-header .menu-area .rs-menu li a:hover, .rs-header-2 .menu-area .rs-menu li a:hover, .rs-header-3 .menu-area .rs-menu li a:hover, .rs-header-4 .menu-area .rs-menu li a:hover {
	color: #ff3115 !important;
}
.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: #ff3115;
}
@-moz-document url-prefix() {
 .home2 .right-bar-icon .nav-expander {
 position: relative;
 top: -1px;
}
}
/* ----- Menu -------*/
.nav-menu > li > a {
	font-weight: normal;
	font-size: 13px;
	padding: 0px 18px !important;
}
.home1 .logo-area {
	padding-top: 3px;
}
.home1 .rs-menu li i {
	margin-right: 0;
	color: #ff3115;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
}
.home1 .rs-menu li i:hover {
	color: #e41f05;
}
.home1 .menu-area .rs-menu > ul > li > a {
	color: #fff;
}
.home1 .menu-area .rs-menu > ul > li > a:hover, .home1 .menu-area .rs-menu li.current_page_item > a {
	color: #484444 !important;
	background-color: #efefef;
}
.home1 .menu-area {
	background: #0f325f;
}
.home1 .searce-box {
	position: absolute;
	top: 0;
	right: 23%;
	top: 16px;
}
.home1 .searce-box a.rs-search i {
	color: #ff3115;
}
.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;
	margin-top: 34px;
}
.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 {
	padding: 20px 0 50px;
}
.home2 .menu-area .container {
	position: relative;
}
.home2 .menu-area .main-menu {
	background: #111111;
	position: absolute;
	top: -30px;
	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 a, .home2 .right-bar-icon a {
	display: inline-block;
	height: 30px;
	width: 30px;
	line-height: 28px;
	text-align: center;
	color: #fff;
	border: 1px solid gray;
	border-radius: 34px;
	font-size: 14px;
}
.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: #222020;
	margin-right: 0px;
}
.home1 .right-bar-icon .rs-search:hover, .home2 .right-bar-icon .rs-search:hover {
	background: #0C79BF;
}
.home1 .right-bar-icon .nav-expander, .home2 .right-bar-icon .nav-expander {
	background-color: #b4b3b2;
}
.home1 .right-bar-icon .nav-expander:hover, .home2 .right-bar-icon .nav-expander:hover {
	background: red;
}
.home1{
	border: none;
	background: #fff;
}
.inner-page .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;
}
.inner-page .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: 30px;
	line-height: 60px;
	padding: 0 5px;
	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: normal;
	font-size: 18px;
	width: 89%;
	float: left;
}
.inner-page .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;
}
.inner-page .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;
}
.inner-page .modal-backdrop, .home1 .modal-backdrop, .home2 .modal-backdrop, .home5 .modal-backdrop, .home3 .modal-backdrop {
	opacity: 0.80;
}
.home3 .rs-header {
	position: absolute;
	width: 100%;
	z-index: 999;
}
.home3 .rs-header .menu-area {
	background-color: rgba(37, 37, 37, 0.8);
}
.home3 .rs-header .menu-area .rs-menu .nav-menu > li > a {
	color: #ffffff;
	line-height: 105px;
	height: 105px;
}
.home3 .rs-header .menu-area .rs-menu .nav-menu > li > a:hover {
	color: #ff3115;
}
.home3 .rs-header .menu-area .toggle-btn {
	position: absolute;
	right: 16px;
	top: 44px;
	background-color: transparent;
	cursor: pointer;
}
.home3 .rs-header .menu-area .toggle-btn .border-icon {
	display: block;
	height: 2px;
	margin-bottom: 5px;
	width: 25px;
	position: relative;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
	background: #ffffff;
	z-index: 11;
}
.home3 .rs-header .menu-area .toggle-btn .border-icon:last-child {
	margin-bottom: 0;
}
.home3 .rs-header .menu-area .toggle-btn.active {
	top: 40px;
}
.home3 .rs-header .menu-area .toggle-btn.active .border-icon {
	background: #ff3115;
}
.home3 .rs-header .menu-area .toggle-btn.active .border-icon:nth-child(1) {
	top: 9px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.home3 .rs-header .menu-area .toggle-btn.active .border-icon:nth-child(2) {
	opacity: 0;
	visibility: hidden;
}
.home3 .rs-header .menu-area .toggle-btn.active .border-icon:nth-child(3) {
	top: -5px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.home3 .rs-header .menu-sticky.sticky {
	background-color: #212121;
}
.home3 .rs-header .menu-sticky.sticky .rs-menu .nav-menu > li > a {
	line-height: 80px;
	height: 80px;
}
.home3 .rs-header .menu-sticky.sticky .rs-menu .nav-menu > li > a:hover {
	color: #ff3115;
}
.home3 .rs-header .menu-sticky.sticky .searce-box {
	top: 26px;
}
.home3 .rs-header .menu-sticky.sticky .toggle-btn {
	top: 32px;
}
.home3 .rs-header .searce-box {
	position: absolute;
	top: 0;
	right: 8%;
	top: 38px;
}
.home3 .rs-header .searce-box a.rs-search i {
	color: #ff3115;
}
.home3 .rs-header .rs-menu ul {
	text-align: right;
	margin-right: 70px;
}
.home3 .rs-header .searce-box, .home3 .rs-header .rs-menu > ul {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
.home3.hidden-menu .rs-header .searce-box, .home3.hidden-menu .rs-header .rs-menu > ul {
	opacity: 1;
	visibility: visible;
}
.home3 .rs-toolbar .rs-toolbar-left .welcome-message, .home5 .rs-toolbar .rs-toolbar-left .welcome-message {
	float: left;
	margin-right: 25px;
}
.home3 .rs-toolbar .rs-toolbar-left .welcome-message:last-child, .home5 .rs-toolbar .rs-toolbar-left .welcome-message:last-child {
	margin-right: 0;
}
.home3 .rs-toolbar .rs-toolbar-left .welcome-message a, .home5 .rs-toolbar .rs-toolbar-left .welcome-message a {
	color: #ffffff;
}
.home3 .rs-toolbar .rs-toolbar-left .welcome-message a:hover, .home5 .rs-toolbar .rs-toolbar-left .welcome-message a:hover {
	color: #ff3115;
}
.home5 .rs-toolbar {
	background: #00bcd4;
}
.home5 .rs-toolbar .toolbar-share-icon {
	margin-right: 15px;
}
.home5 .rs-toolbar .toolbar-share-icon ul li a {
	color: #fff;
	font-size: 14px;
}
.home5 .rs-toolbar .toolbar-share-icon ul li a:hover {
	color: #92278f;
}
.home5 .rs-toolbar .rs-search {
	color: #fff;
	font-size: 14px;
}
.home5 .rs-toolbar .rs-search:hover {
	color: #92278f;
}
.home5 .rs-header .logo-area {
	padding-top: 23px;
}
.home5 .rs-header .main-menu .rs-menu ul {
	text-align: right;
	margin-right: 112px;
}
.home5 .rs-header .main-menu .rs-menu > ul > li > a {
	color: #00bcd4;
}
.home5 .rs-header .main-menu .rs-menu ul li a:hover, .home5 .rs-header .main-menu .rs-menu ul li.active a, .home5 .rs-header .main-menu .rs-menu ul li.current-menu-item > a {
	color: #92278f !important;
}
.home5 .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;
}
.home5 .rs-header .main-menu .nav-expander:hover {
	transform: scale(1.1);
	color: #ff3115;
}
.home5 .rs-header .sticky {
	background: #fff;
}
.home5 .rs-header .apply-box {
	position: absolute;
	right: 0;
	min-width: 130px;
	text-align: center;
	line-height: 46px;
	background: #92278f;
	margin-top: 17px;
	border-radius: 30px;
}
.home5 .rs-header .apply-box a {
	color: #fff;
	display: block;
	text-transform: uppercase;
}
.home5 .rs-header .apply-box a:hover {
	color: #00bcd4;
}
.home5 .overly-border::before {
	border-top: 5px solid #92278f;
	border-bottom: 5px solid #92278f;
}
.home5 .overly-border::after {
	border-right: 5px solid #92278f;
	border-left: 5px solid #92278f;
}
.home5 .rs-footer .footer-share ul li a, .home5 .rs-footer .footer-share ul li a:hover, .home5 .rs-footer .footer-title:after, .home5 .rs-footer .footer-top .news-form button, .home5 .rs-footer .footer-top .recent-post-widget .post-item .post-date, .home5 .rs-footer .footer-contact-desc, .home5 .rs-latest-news .news-normal-block .news-btn a, .home5 .owl-controls .owl-nav > div:hover, .home5 .rs-team .team-item .team-img .normal-text, .home5 .rs-team .team-item .team-title:after, .home5 #scrollUp i {
	background: #92278f;
}
.home5 .rs-footer .footer-bottom, .home5 .rs-footer .footer-top .recent-post-widget .post-item + .post-item, .home5 .rs-footer .footer-top .news-form input {
	border-color: #92278f;
}
.home5 .searce-box i, .home5 #rs-slider .slide-content .slider-desc, .home5 .copyright a, .home5 .rs-footer .footer-top .sitemap-widget li a:hover, .home5 .rs-footer .footer-title, .home5 .rs-latest-news .news-list-block .news-list-item .news-title a, .home5 .rs-latest-news .news-normal-block .news-title a, .home5 .rs-events .event-item .event-btn a, .home5 .rs-events .event-item .event-title a {
	color: #92278f;
}
.home5 .copyright a:hover, .home5 .rs-footer .footer-top .recent-post-widget .post-item .post-title a:hover {
	color: #5d0b5b;
}
.home5 .rs-footer .footer-top .news-form button:hover {
	background: #5d0b5b;
}
.home5 .rs-footer .footer-share ul li a:hover {
	color: #00bcd4;
}
.home5 .rs-footer .footer-contact-desc .contact-inner i {
	color: #e84b3a;
}
.home5 .rs-footer {
	color: #505050;
}
.home5 .rs-footer .footer-top .sitemap-widget li a, .home5 .rs-footer .footer-top .recent-post-widget .post-item .post-title a {
	color: #505050;
}
.home5 .slider-overlay-2 .slide-content:after {
	display: none;
}
.home5 .rs-footer .footer-top .news-form input {
	color: #000;
}
.home5 .rs-footer .footer-contact-desc {
	border-radius: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.home5 .rs-footer .footer-bottom {
	background: #269aa9;
}
.home5 .rs-toolbar .rs-toolbar-left .welcome-message i {
	color: #fff;
}
/* ------------------------------------
    04. Sticky Menu
---------------------------------------*/
.stickymenu.sticky {
	position: absolute;
}
.menu-sticky.sticky img {
	color: rgba(0,0,0,.9);
	margin-top: -8px;
	margin-left: 20px;
	width: 204px;
}
.menu-sticky.sticky {
	background: #fff;
	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;
	padding: 18px 17px !important;
	border-bottom: 3px solid #1b4a56;
}
.menu-sticky.sticky .main-menu {
	position: static;
}
.rs-header-2 .menu-sticky1.sticky1 .nav-menu > li > a {
	height: 80px;
	line-height: 80px;
}
#nav-close {
	transition: all 0.3s ease 0s;
}
#nav-close:hover {
	background-color: #ff3115;
	border-color: #ff3115;
	color: #fff;
}
@-webkit-keyframes sticky-animation {
 0% {
 opacity: 0;
 -webkit-transform: translateY(-100%);
}
 100% {
 opacity: 1;
 -webkit-transform: translateY(0);
}
}
@keyframes sticky-animation {
 0% {
 opacity: 0;
 transform: translateY(-100%);
}
 100% {
 opacity: 1;
 transform: translateY(0);
}
}
/* ------------------------------------
    05. Slider
---------------------------------------*/
#rs-slider {
	position: relative;
}
#rs-slider .slide-content {
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	width: 100%;
	height: 100%;
	z-index: 8;
}
#rs-slider .slide-content .slider-title {
	font-size: 40px;
	color: #002854;
	margin-bottom: 15px;
	-webkit-animation-duration: 1.4s;
	animation-duration: 1.4s;
}
#rs-slider .slide-content .slider-desc {
	font-size: 16px;
	display: block;
	font-weight: 300;
	padding-left: 4px;
	margin-bottom: 10px;
	color: #000;
	text-transform: uppercase;
	margin-top: 28px;
	font-weight: bold;
}
#rs-slider .slide-content .sl-readmore-btn {
	border: 2px solid #002854;
	background: #002854;
	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: #f47822;
	border-color: #f47822;
	color: rgba(255, 255, 255, 0.8);
}
#rs-slider .slide-content .sl-get-started-btn {
	background-color: #0C79BF;
	border: 2px solid #0C79BF;
	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 {
	color: rgba(255, 255, 255, 0.8);
}
#rs-slider .owl-nav {
	display: none;
}
#rs-slider .owl-dots {
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
}
#rs-slider .owl-dots .owl-dot {
	height: 15px;
	width: 5px;
	background-color: #ffffff;
}
#rs-slider .owl-dots .owl-dot + .owl-dot {
	margin-top: 8px;
}
#rs-slider .owl-dots .owl-dot.active {
	background-color: #ff3115;
}
.slider-overlay-1 .slide-content:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: -1;
}
.slider-overlay-2 .slide-content:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}
.home5 span.red-color {
	color: #e84b3a;
}
.home5 span.orange-color {
	color: #fc7f0c;
}
.home5 #rs-slider {
	position: relative;
}
.home5 #rs-slider .slide-content .slider-title {
	color: #92278f;
}
.home5 #rs-slider .slide-content .slider-title, .home5 #rs-slider .slide-content .slider-desc, .home5 #rs-slider .slide-content .sl-get-started-btn {
	position: relative;
	z-index: 11;
}
.home5 #rs-slider .slide-content .sl-get-started-btn {
	border: none;
	background: #92278f;
	border-radius: 30px;
	font-weight: 700;
	padding-top: 16px;
	padding-bottom: 16px;
	font-size: 18px;
}
.home5 #rs-slider .slide-content .sl-get-started-btn:hover {
	background: #550b53;
}
.home5 #rs-slider .owl-dots {
	display: none !important;
}
/* ------------------------------------
    06. 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: #ff3115;
	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: #ff3115;
}
.breadcrumbs-overlay {
	position: relative;
	z-index: 1;
}
.breadcrumbs-overlay:after {
	content: '';
	position: absolute;
	background-color: rgba(17, 17, 17, 0.8);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
/* ------------------------------------
    07. Services
---------------------------------------*/
.rs-services-style1 .services-item {
	background-color: #fff;
	padding: 25px 17px 17px;
	z-index: 111;
	position: relative;
	top: -145px;
	transition: all 0.3s ease 0s;
	border-bottom: 0px solid #CCC;
}
.rs-services-style1 .services-item:hover {
	background-color: #d7d7d7;
}
.rs-services-style1 .services-item:hover .services-icon {
	background-color: #fff;
}
.rs-services-style1 .services-item:hover .services-icon, .rs-services-style1 .services-item:hover .services-desc p {
	color: #534e4e;
}
.rs-services-style1 .services-desc {
	text-align: center;
	margin-top: 6px;
}
.rs-services-style1 .services-desc p {
	color: #cccccc;
	margin-bottom: 0;
}
.rs-services-style1 .services-desc .services-title {
	position: relative;
	color: #272424;
	font-size: 13px;
	margin-bottom: 31px;
	z-index: 10;
	font-weight: normal;
}
.rs-services-style1 .services-icon {
	height: 130px;
	width: 130px;
	background-color: #d7d7d7;
	line-height: 88px;
	text-align: center;
	position: absolute;
	top: -50px;
	z-index: -1;
	font-size: 40px;
	border-radius: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	color: #686868;
	transition: all 0.3s ease 0s;
}
.rs-services-style1 .services-icon i {
	display: inline-block;
}
.home5 .rs-services-style1 .services-item {
	margin-top: 0;
	padding-bottom: 20px;
	border-radius: 0 0 10px 10px;
}
.home5 .rs-services-style1 .services-item.blue-color {
	box-shadow: 0px 4px 13px #046875;
}
.home5 .rs-services-style1 .services-item.blue-color, .home5 .rs-services-style1 .services-item.blue-color .services-icon {
	background: #00bcd4;
}
.home5 .rs-services-style1 .services-item.orange-color {
	box-shadow: 0px 4px 13px #9c510b;
}
.home5 .rs-services-style1 .services-item.orange-color, .home5 .rs-services-style1 .services-item.orange-color .services-icon {
	background: #fc7f0c;
}
.home5 .rs-services-style1 .services-item.purple-color {
	box-shadow: 0px 4px 13px #50154f;
}
.home5 .rs-services-style1 .services-item.purple-color, .home5 .rs-services-style1 .services-item.purple-color .services-icon {
	background: #92278f;
}
.home5 .rs-services-style1 .services-item.red-color {
	box-shadow: 0px 4px 13px #75231a;
}
.home5 .rs-services-style1 .services-item.red-color, .home5 .rs-services-style1 .services-item.red-color .services-icon {
	background: #e84b3a;
}
.home5 .rs-services-style1 .services-item .services-icon {
	color: #fff;
	top: -50px;
	line-height: 90px;
	font-size: 40px;
}
.home5 .rs-services-style1 .services-item .services-desc {
	position: relative;
	z-index: 111;
	margin-top: 6px;
}
.home5 .rs-services-style1 .services-item .services-desc .services-title {
	margin-bottom: 6px;
	position: relative;
}
.home5 .rs-services-style1 .services-item .services-desc p {
	color: #eee;
}
/* ------------------------------------
    08. About Us
---------------------------------------*/
.rs-about .about-img {
	position: relative;
	border: 8px solid #ededed;
	height: 337px;
}
.rs-about .about-img:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(33, 33, 33, 0.5);
	opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rs-about .about-img:hover:after {
	opacity: 1;
}
.rs-about .about-img .popup-youtube {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.rs-about .about-img .popup-youtube:after {
	position: absolute;
	font-family: FontAwesome;
	content: "\f04b";
	font-size: 36px;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	transition: all 0.3s ease 0s;
	display: inline-block;
	height: 80px;
	line-height: 80px;
	width: 80px;
	text-align: center;
	background: #ff3115;
	border-radius: 50%;
	padding-left: 8px;
	color: #fff;
}
.rs-about .about-desc {
	margin-bottom: 0px;
}
.rs-about .about-desc h2 {
	font-size: 30px;
	line-height: normal;
	margin-bottom: 20px;
	position: relative;
}
.rs-about .about-desc p {
	font-size: 14px;
	line-height: 26px;
	margin-bottom: 10px;
	text-align: justify;
	color: #fff;
}
.vision-desc p:last-child, .about-desc p:last-child {
	margin-bottom: 0;
}
.home5 .sec-title {
	margin-bottom: 20px;
}
.home5 .sec-title h3:after {
	left: 0;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.home5 .acdn-title {
	color: #92278f;
}
.home5 #accordion .card .card-header .acdn-title:not(.collapsed) {
	background: #92278f;
}
.rs-about-2 .sec-title h3 {
	font-size: 30px;
}
.rs-about-2 .about-signature h4 {
	margin-bottom: 0;
	font-size: 20px;
}
.rs-about-2 .about-signature span {
	font-size: 14px;
}
/* ------------------------------------
    09. Popular Cources
---------------------------------------*/
.rs-courses .cource-item {
}
.rs-courses .cource-item .cource-img {
	position: relative;
	margin-bottom: 22px;
}
.rs-courses .cource-item .cource-img img {
	width: 100%;
	transition: all 0.3s ease 0s;
}
.rs-courses .cource-item .cource-img .course-value {
	position: absolute;
	bottom: -25px;
	right: 25px;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	background-color: #ff3115;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 50%;
	z-index: 1;
}
.rs-courses .cource-item .course-body {
	text-align: center;
	padding: 0 5px;
}
.rs-courses .cource-item .course-body .course-category {
	display: inline-block;
}
.rs-courses .cource-item .course-body .course-title {
	font-size: 18px;
	margin-bottom: 7px;
	font-weight: normal;
}
.rs-courses .cource-item .course-body .course-title a {
	color: #0062A0;
	letter-spacing: 2px;
}
.rs-courses .cource-item .course-body .course-title a:hover {
	color: rgba(33, 33, 33, 0.6);
}
.rs-courses .cource-item .course-body .review-wrap .rating {
	display: inline-block;
	color: #ff3115;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #ddd;
	line-height: 10px;
}
.rs-courses .cource-item .course-body .review-wrap .review {
	line-height: 10px;
	display: inline-block;
}
.rs-courses .cource-item .course-body .course-desc {
	margin-top: 10px;
}
.rs-courses .cource-item .course-body .course-desc p {
	margin: 0 0 22px;
}
.rs-courses .cource-item .course-footer {
	padding: 15px 20px;
	background-color: #f0f0f0;
	text-align: center;
}
.rs-courses .cource-item .course-footer > div {
	display: inline-block;
	text-align: center;
	position: relative;
	line-height: 19px;
}
.rs-courses .cource-item .course-footer > div span {
	display: block;
	font-size: 14px;
	color: #212121;
	font-weight: 500;
}
.rs-courses .cource-item .course-footer > div span.label {
	font-weight: 700;
}
.rs-courses .cource-item .course-footer > div + div {
	padding-left: 8px;
	margin-left: 8px;
	border-left: 1px solid #ccc;
}
.rs-courses .cource-item.blue-color .course-footer {
	background: #00bcd4;
}
.rs-courses .cource-item.orange-color .course-footer {
	background: #fc7f0c;
}
.rs-courses .cource-item.purple-color .course-footer {
	background: #92278f;
}
.rs-courses .cource-item.red-color .course-footer {
	background: #e84b3a;
}
.event-item .events-details {
	margin-top: -20px;
	padding: 15px;
}
.event-item .events-details.white-bg {
	background: #fff;
}
.event-item .event-img, .cource-item .event-img, .event-item .cource-img, .cource-item .cource-img {
	position: relative;
}
.event-item .event-img:after, .cource-item .event-img:after, .event-item .cource-img:after, .cource-item .cource-img:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.event-item .event-img .image-link, .cource-item .event-img .image-link, .event-item .cource-img .image-link, .cource-item .cource-img .image-link {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) !important;
	-webkit-transform: translate(-50%, -50%) !important;
	-ms-transform: translate(-50%, -50%) !important;
	color: #0f325f;
	z-index: 11;
}
.event-item .event-img .image-link:hover, .cource-item .event-img .image-link:hover, .event-item .cource-img .image-link:hover, .cource-item .cource-img .image-link:hover {
	color: #fff;
}
.event-item .event-img .image-link i, .cource-item .event-img .image-link i, .event-item .cource-img .image-link i, .cource-item .cource-img .image-link i {
	font-size: 22px;
	font-weight: 400;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	transition: all 0.3s ease 0s;
}
.event-item:hover .event-img:after, .cource-item:hover .event-img:after, .event-item:hover .cource-img:after, .cource-item:hover .cource-img:after {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}
.event-item:hover .event-img .image-link i, .cource-item:hover .event-img .image-link i, .event-item:hover .cource-img .image-link i, .cource-item:hover .cource-img .image-link i {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.home5 .rs-courses .cource-item {
	border-color: #eee;
	background: #eee;
	border-radius: 0 0 30px 30px;
}
.home5 .rs-courses .cource-item .cource-img {
	margin-bottom: 0;
}
.home5 .rs-courses .cource-item .course-body {
	padding-top: 30px;
	background: #eee;
}
.home5 .rs-courses .cource-item .course-body .course-title a {
	color: #92278f;
}
.home5 .rs-courses .cource-item .course-footer {
	border-radius: 30px;
}
.home5 .rs-courses .cource-item .course-footer > div span {
	color: #fff;
}
.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: #ff3115;
	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: #ff3115;
	border: 2px solid #ff3115;
	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: #ff3115;
}
.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 .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;
}
.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%;
}
.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: #ff3115;
	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: #ff3115;
}
.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: rgba(33, 33, 33, 0.6);
}
.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 {
	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;
	padding-right: 12px;
}
.rs-courses-3 .course-footer .course-button a:hover {
	color: #ff3115;
}
.rs-courses-3 .course-footer .course-button a:after {
	font-family: fontAwesome;
	content: "\f101";
	position: absolute;
	right: 0;
}
.rs-courses-3 .view-more {
	bottom: auto;
}
.rs-courses-list .course-item {
	margin-bottom: 40px;
}
.rs-courses-list .course-item .course-img {
	position: relative;
}
.rs-courses-list .course-item .course-img:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(33, 33, 33, 0.8);
	transition: all 0.3s ease 0s;
	opacity: 0;
}
.rs-courses-list .course-item .course-img .image-link {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	line-height: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	background-color: #ff3115;
	color: #ffffff;
	font-size: 18px;
	transform: translateX(-50%) translateY(-50%) scale(0.7);
	transition: all 0.3s ease 0s;
	opacity: 0;
}
.rs-courses-list .course-item .course-img .image-link:hover {
	background-color: #e41f05;
}
.rs-courses-list .course-item .course-img:hover:before {
	opacity: 1;
}
.rs-courses-list .course-item .course-img:hover .image-link {
	opacity: 1;
	transform: translateX(-50%) translateY(-50%) scale(1);
}
.rs-courses-list .course-category {
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 600;
}
.rs-courses-list .course-category a {
	color: #505050;
}
.rs-courses-list .course-title {
	font-size: 24px;
	margin-bottom: 7px;
}
.rs-courses-list .course-title a {
	color: #212121;
}
.rs-courses-list .course-title a:hover {
	color: #ff3115;
}
.rs-courses-list .course-date, .rs-courses-list .course-value {
	display: inline-block;
	font-size: 14px;
	color: #777777;
	font-weight: 600;
}
.rs-courses-list .course-value {
	margin-left: 12px;
}
.rs-courses-list .course-value span {
	color: #ff3115;
}
.rs-courses-list .course-body {
	margin-top: 12px;
}
.rs-courses-list .course-button a {
	display: inline-block;
	height: 42px;
	line-height: 42px;
	text-align: center;
	min-width: 170px;
	padding: 0 20px;
	background-color: #ff3115;
	color: #fff;
	transition: all 0.3s ease 0s;
	font-weight: 500;
}
.rs-courses-list .course-button a:hover {
	background-color: #e41f05;
}
.gridFilter {
	margin-bottom: 35px;
}
.gridFilter button {
	background: transparent;
	border: 0;
	font-size: 15px;
	font-weight: 700;
	outline: none;
	color: #505050;
	cursor: pointer;
}
.gridFilter button.active {
	color: #ff3115;
}
.gridFilter button + button {
	margin-left: 20px;
}
.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: #ff3115;
}
.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: #ff3115;
	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: #ff3115;
	transform: rotate(360deg);
}
.sidebar-area .title {
	font-size: 20px;
	color: #212121;
	font-weight: 700;
	text-transform: uppercase;
	display: block;
	margin-bottom: 25px;
}
.sidebar-area .search-box {
	margin-bottom: 45px;
}
.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;
}
.sidebar-area .search-box .btn {
	position: absolute;
	right: 3px;
	background: transparent;
	border: none;
	box-shadow: none;
	top: 50%;
	outline: none;
	transform: translateY(-50%);
}
.sidebar-area .cate-box {
	margin-bottom: 45px;
}
.sidebar-area .cate-box ul {
	padding: 0;
	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: #ff3115;
}
.sidebar-area .latest-courses {
	margin-bottom: 45px;
}
.sidebar-area .latest-courses .post-item {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	overflow: hidden;
}
.sidebar-area .latest-courses .post-item .post-img {
	width: 33.33%;
	transition: all 0.3s ease 0s;
	float: left;
}
.sidebar-area .latest-courses .post-item .post-desc {
	width: 66.66%;
	padding-left: 20px;
	float: left;
}
.sidebar-area .latest-courses .post-item .post-desc h4 {
	margin-bottom: 5px;
}
.sidebar-area .latest-courses .post-item .post-desc h4 a {
	font-size: 16px;
	color: #212121;
}
.sidebar-area .latest-courses .post-item .post-desc h4 a:hover {
	color: #ff3115;
}
.sidebar-area .latest-courses .post-item .post-desc .duration {
	font-weight: 600;
	color: #777777;
}
.sidebar-area .latest-courses .post-item .post-desc .price {
	margin-left: 8px;
	font-weight: 600;
	color: #777777;
}
.sidebar-area .latest-courses .post-item .post-desc .price span {
	color: #ff3115;
}
.sidebar-area .latest-courses .post-item + .post-item {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #ddd;
}
.sidebar-area .latest-courses .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: #ff3115;
	border-color: #ff3115;
	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: #ff3115;
}
.sidebar-area .newsletter .box-newsletter .btn {
	position: absolute;
	right: 3px;
	background: #ff3115;
	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: #ff3115;
	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: #ff3115;
}
.sidebar-area .course-features-info ul li .label {
	padding-left: 10px;
}
.sidebar-area .course-features-info ul li .value {
	float: right;
	padding-right: 5px;
}
.space-bt30 {
	margin-bottom: 30px;
}
.space-bt30 .event-item {
	margin-bottom: 0 !important;
}
.rs-search-courses {
	padding: 70px 0;
	position: relative;
	margin-top: -100px;
	z-index: 10;
}
.rs-search-courses:after {
	content: '';
	position: absolute;
	height: 100%;
	width: 90%;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 0;
	background-color: #212121;
	z-index: -1;
	display: block;
}
.rs-search-courses select, .rs-search-courses button, .rs-search-courses input {
	width: 100%;
	height: 60px;
	padding: 0 15px;
	color: #777;
	border: none;
}
.rs-search-courses ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
 opacity: 1 !important;
}
.rs-search-courses ::-moz-placeholder {
  /* Firefox 19+ */
  color: #777;
 opacity: 1 !important;
}
.rs-search-courses :-ms-input-placeholder {
  /* IE 10+ */
  color: #777;
 opacity: 1 !important;
}
.rs-search-courses :-moz-placeholder {
  /* Firefox 18- */
  color: #777;
 opacity: 1 !important;
}
.rs-search-courses select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}
.rs-search-courses .categories, .rs-search-courses .level {
	position: relative;
}
.rs-search-courses .categories:before, .rs-search-courses .level:before {
	position: absolute;
	font-family: FontAwesome;
	content: "\f0d7";
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.rs-search-courses .search-btn button {
	background-color: #ff3115;
	border-color: #ff3115;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}
.rs-search-courses .search-btn button:hover, .rs-search-courses .search-btn button:focus {
	background-color: #e41f05;
}
/* ------------------------------------
    10. Courses Details
---------------------------------------*/
.rs-courses-details .detail-img {
	position: relative;
	margin-bottom: 40px;
}
.rs-courses-details .detail-img img {
	transition: all 0.3s ease 0s;
}
.rs-courses-details .detail-img:hover img {
	opacity: 0.9;
}
.rs-courses-details .detail-img .course-seats {
	position: absolute;
	bottom: 25px;
	right: 25px;
	font-size: 15px;
	width: 78px;
	height: 78px;
	line-height: 21px;
	border-radius: 50%;
	text-align: center;
	background-color: #ff3115;
	color: #fff;
	font-weight: 600;
	padding-top: 18px;
}
.rs-courses-details .detail-img .course-seats span {
	display: block;
}
.rs-courses-details .detail-img .course-seats.price {
	right: auto;
	left: 25px;
	padding-top: 0;
	line-height: 78px;
}
.rs-courses-details .course-title {
	font-size: 24px;
	margin-bottom: 30px;
}
.rs-courses-details .course-instructor {
	padding: 20px 25px 16px;
	background-color: #f9f9f9;
	position: relative;
}
.rs-courses-details .course-instructor p {
	margin-bottom: 0;
}
.rs-courses-details .course-instructor .instructor-title {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
	margin-bottom: 20px;
}
.rs-courses-details .instructor-inner {
	display: -webkit-flex;
	display: flex;
}
.rs-courses-details .instructor-inner .instructor-img img {
	height: 100px;
	width: 100px;
	transition: all 0.3s ease 0s;
}
.rs-courses-details .instructor-inner .instructor-img:hover img {
	opacity: 0.8;
}
.rs-courses-details .instructor-inner .instructor-body {
	padding-left: 18px;
}
.rs-courses-details .instructor-inner .instructor-body .name {
	font-size: 16px;
	font-family: 'Roboto Condensed', sans-serif;
	margin-bottom: 0;
}
.rs-courses-details .instructor-inner .instructor-body .designation {
	font-size: 14px;
	font-weight: 600;
}
.rs-courses-details .instructor-inner .instructor-body .social-icon {
	margin-top: 15px;
}
.rs-courses-details .instructor-inner .instructor-body .social-icon a i {
	font-size: 17px;
	margin-right: 6px;
}
.rs-courses-details .short-desc {
	margin-top: 15px;
}
.rs-courses-details .info-list {
	font-weight: 600;
	font-size: 15px;
}
.rs-courses-details .info-list ul li {
	color: #777777;
	margin-bottom: 6px;
}
.rs-courses-details .info-list ul li span {
	color: #212121;
}
.rs-courses-details .apply-btn {
	position: absolute;
	right: 16px;
	bottom: 10px;
}
.rs-courses-details .apply-btn a {
	display: inline-block;
	height: 42px;
	line-height: 42px;
	text-align: center;
	min-width: 147px;
	padding: 0 20px;
	background-color: #ff3115;
	color: #fff;
	transition: all 0.3s ease 0s;
	font-weight: 600;
}
.rs-courses-details .apply-btn a:hover {
	background-color: #e41f05;
}
.rs-courses-details .course-desc {
	margin-top: 30px;
}
.rs-courses-details .course-desc .desc-title {
	font-size: 19px;
	margin-bottom: 12px;
}
.rs-courses-details .course-desc .desc-text p {
	margin-bottom: 18px;
}
.rs-courses-details .course-desc .share-area {
	padding: 15px;
	border: 1px solid #ccc;
}
.rs-courses-details .course-desc .share-area h3 {
	margin-bottom: 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
}
.rs-courses-details .course-desc .share-area .share-inner {
	text-align: right;
}
.rs-courses-details .course-desc .share-area .share-inner a {
	display: inline-block;
	min-width: 88px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 13px;
	color: #505050;
	padding: 0 12px;
	font-weight: 600;
}
.rs-courses-details .course-desc .share-area .share-inner a + a {
	margin-left: 8px;
}
.rs-courses-details .course-desc .share-area .share-inner a:hover {
	border-color: #ff3115;
	color: #ff3115;
}
.rs-courses-details .course-desc .course-syllabus {
	padding: 15px 0 35px;
}
.rs-courses-details .course-desc .course-syllabus h3.desc-title {
	padding-bottom: 10px;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus {
	padding-left: 15px;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li {
	display: block;
	padding-top: 6px;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li strong {
	padding-right: 5px;
	display: block;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li span {
	padding-left: 20px;
	position: relative;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li span:before {
	content: "\f054";
	font-family: "FontAwesome";
	font-size: 10px;
	left: 0;
	position: absolute;
	color: #505050;
	top: 0;
}
.rs-courses-details .rs-testimonial .testimonial-item {
	text-align: center;
}
.rs-courses-details .rs-testimonial .testimonial-item .testi-desc:after, .rs-courses-details .rs-testimonial .testimonial-item .testi-desc:before {
	display: none;
}
.rs-courses-details .rs-testimonial .testimonial-item .cl-client-rating i {
	color: #ffaa30;
}
.rs-courses-details ul.course-meta-style li {
	float: left;
	padding-right: 30px;
	position: relative;
}
.rs-courses-details ul.course-meta-style li:before {
	content: "";
	position: absolute;
	top: 0;
	right: 15px;
	width: 1px;
	height: 40px;
	background: #e1e1e1;
}
.rs-courses-details ul.course-meta-style li:last-child {
	padding-right: 0;
}
.rs-courses-details ul.course-meta-style li:last-child:before {
	display: none;
}
.rs-courses-details ul.course-meta-style li.author {
	overflow: hidden;
}
.rs-courses-details ul.course-meta-style li.author .author-name, .rs-courses-details ul.course-meta-style li.author .image {
	float: left;
}
.rs-courses-details ul.course-meta-style li.author .author-name {
	padding-left: 15px;
}
.rs-courses-details ul.course-meta-style li a {
	color: #212121;
	font-weight: 600;
}
.rs-courses-details ul.course-meta-style li i {
	color: #ffaa30;
}
.rs-courses-details .btn-area {
	text-align: right;
}
.rs-courses-details .btn-area a {
	background: #ff3115;
	color: #fff;
	display: inline-block;
	text-transform: uppercase;
	padding: 10px 20px;
}
.rs-courses-details .btn-area a:hover {
	background: #e41f05;
}
.rs-courses-details .course-des-tabs {
	margin-top: 15px;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan {
	margin: 0;
	border: 0;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan .nav-item {
	width: 25%;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan .nav-item a {
	border: 1px solid #eee;
	background: #f9f9f9;
	border-right: 0;
	color: #212121;
	font-weight: 600;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan .nav-item a.active {
	position: relative;
	background: #fff;
	border-bottom: none;
	color: #ff3115;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan .nav-item a.active:before {
	content: '';
	position: absolute;
	left: 0;
	right: 3px;
	top: 0;
	height: 2px;
	z-index: 10;
	width: 100%;
	background: #ff3115;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan .nav-item:last-child a {
	border-right: 1px solid #eee;
}
.rs-courses-details .course-des-tabs .tab-content {
	border-radius: 0;
	border: 1px solid #eee;
	border-top: 0;
	padding: 60px 30px;
}
.rs-courses-details .course-des-tabs .tab-content .tab-pane h4.desc-title {
	padding-bottom: 15px;
	position: relative;
}
.rs-courses-details .course-des-tabs .tab-content .tab-pane h4.desc-title:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 50px;
	background: #ff3115;
}
.rs-courses-details .course-des-tabs .tab-content .tab-pane ul.requirements-list li {
	position: relative;
	padding-left: 20px;
}
.rs-courses-details .course-des-tabs .tab-content .tab-pane ul.requirements-list li:before {
	border: none;
	color: #ff3115;
	content: "\f101";
	font-family: fontawesome;
	font-size: 14px !important;
	font-size: 9px;
	margin-right: 10px;
	padding: 0;
	left: 0;
	position: absolute;
	top: 1px;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list {
	overflow: hidden;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .image {
	float: left;
	padding-right: 20px;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .author-name {
	overflow: hidden;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .author-name h4 {
	margin: 0 0 5px;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .author-name span {
	margin: 0 0 10px;
	display: block;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .author-name i {
	color: #ffaa30;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list p.dsc {
	display: block;
	clear: both;
	padding-top: 15px;
	margin-bottom: 0;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .social-icon li {
	display: inline-block;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .social-icon li a {
	display: block;
	background: #ff3115;
	padding: 3px 0;
	width: 40px;
	text-align: center;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .social-icon li a i {
	color: #fff;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .social-icon li a:hover {
	background: #ff3115;
}
/* ------------------------------------
    11. Rs-counter
---------------------------------------*/
.rs-counter .rs-counter-list {
	background: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
	text-align: center;
	padding: 5px;
	transition: .3s all ease;
	height: 231px;
	width: 19%;
	margin: 0px 5px;
	border-top: 5px solid #52a808;
}
.rs-counter .rs-counter-list .counter-number {
	font-size: 60px;
	color: #2a2a2a;
	margin-bottom: 6px;
	margin-top: 56px;
}
.rs-counter .rs-counter-list .counter-desc {
	color: #2a2a2a;
	font-weight: 500;
	margin-bottom: 0;
	font-size: 14px;
	text-transform: uppercase;
}
.rs-counter .rs-counter-list:hover {
}
.rs-counter .counter-title {
	font-size: 27px;
	line-height: 24px;
	margin-bottom: 30px;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: 3px;
	color: #fff;
	float: left;
	font-family: "NewBaskervilleW01-Roman", Georgia, serif;
}
.rs-counter .counter-text p {
	margin-bottom: 35px;
	color: #fff;
}
.rs-counter .counter-img {
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}
.rs-counter .counter-img img {
	border-radius: 8px;
}
.home5 .rs-counter .rs-counter-list {
	border-radius: 30px;
	border: none;
	background: #92278f;
}
.home5 .rs-counter .rs-counter-list .counter-number {
	color: #fff;
}
.home5 .rs-counter .rs-counter-list:hover {
	border-color: #92278f;
}
.home5 .rs-counter .rs-counter-list.blue-color {
	background: #269aa9;
}
.home5 .rs-counter .rs-counter-list.orange-color {
	background: #fc7f0c;
}
.home5 .rs-counter .rs-counter-list.red-color {
	background: #e84b3a;
}
/* ------------------------------------
    12. Upcoming Events
---------------------------------------*/
.rs-events .event-item .event-img {
	margin-bottom: 20px;
}
.rs-events .event-item .event-date {
	font-size: 14px;
	font-weight: 500;
}
.rs-events .event-item .event-date i {
	font-size: 13px;
	display: inline-block;
	margin-right: 5px;
	color: #ff3115;
}
.rs-events .event-item .event-date span {
	color: #505050;
}
.rs-events .event-item .event-title {
	font-size: 20px;
	margin-bottom: 8px;
	margin-top: 4px;
}
.rs-events .event-item .event-title a {
	color: #212121;
}
.rs-events .event-item .event-title a:hover {
	color: #ff3115;
}
.rs-events .event-item .event-meta {
	font-size: 14px;
}
.rs-events .event-item .event-meta > div {
	display: inline-block;
}
.rs-events .event-item .event-meta > div i {
	font-size: 14px;
	display: inline-block;
	margin-right: 3px;
	color: #ff3115;
}
.rs-events .event-item .event-meta .event-time {
	margin-right: 10px;
}
.rs-events .event-item .event-btn {
	margin-top: 18px;
}
.rs-events .event-item .event-btn a {
	font-weight: 500;
}
.rs-events-2 .event-item {
	margin-bottom: 30px;
	background: #f9f9f9;
	border: none;
}
.rs-events-2 .event-item .row {
	margin: 0;
}
.rs-events-2 .event-item [class*="col-"] {
	padding: 0;
}
.rs-events-2 .event-item .event-content {
	padding: 0px 20px 16px 0;
}
.rs-events-2 .event-item .event-img {
	margin: -1px 0 -1px -1px;
	margin-right: 20px;
	transition: all 0.3s ease 0s;
}
.rs-events-2 .event-item .event-img:hover {
	opacity: 0.8;
}
.rs-events-2 .event-item .event-location {
	font-size: 13px;
}
.rs-events-2 .event-item .event-location i {
	font-size: 14px;
	display: inline-block;
	margin-right: 5px;
	color: #ff3115;
}
.rs-events-2 .event-item .event-location span {
	color: #505050;
}
.rs-events-2 .event-item .event-title {
	font-size: 18px;
	margin-bottom: 4px;
	margin-top: 1px;
	line-height: 25px;
	font-weight: 600;
	text-transform: capitalize;
}
.rs-events-2 .event-item .event-title a {
	color: #212121;
}
.rs-events-2 .event-item .event-meta {
	font-size: 13px;
}
.rs-events-2 .event-item .event-meta > div {
	display: inline-block;
}
.rs-events-2 .event-item .event-meta > div i {
	font-size: 15px;
	display: inline-block;
	margin-right: 3px;
	color: #ff3115;
}
.rs-events-2 .event-item .event-meta .event-time {
	margin-left: 10px;
}
.rs-events-2 .event-item .event-desc {
	margin-top: 7px;
}
.rs-events-2 .event-item .event-desc p {
	margin-bottom: 15px;
	font-size: 13px;
}
.rs-events-2 .event-item .event-btn a {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	text-align: center;
	min-width: 130px;
	padding: 0 15px;
	background: #ff3115;
	color: #fff;
	transition: all 0.3s ease 0s;
	font-weight: 600;
}
.rs-events-2 .event-item .event-btn a:hover {
	background-color: #e41f05;
	color: #fff;
}
.home5 .event-item .event-date {
	max-width: 170px;
	margin: 0 auto;
	height: 30px;
	background: #92278f;
	margin-top: -32px;
	position: relative;
	top: -13px;
	border-radius: 15px 15px 0 0;
	padding-top: 2px;
	text-align: center;
}
.home5 .event-item .event-date i, .home5 .event-item .event-date span {
	color: #fff;
}
.home5 .red-color .event-date {
	background: #e84b3a;
}
.home5 .orange-color .event-date {
	background: #fc7f0c;
}
.home5 .blue-color .event-date {
	background: #00bcd4;
}
.rs-event-details #googleMap {
	height: 270px;
	margin-bottom: 30px;
}
.rs-event-details .event-title {
	font-size: 24px;
	margin-bottom: 6px;
}
.rs-event-details .event-title a {
	color: #212121;
}
.rs-event-details .event-title a:hover {
	color: #ff3115;
}
.rs-event-details .event-meta {
	margin-top: 10px;
	margin-bottom: 30px;
}
.rs-event-details .event-meta > div {
	display: inline-block;
	color: #666;
}
.rs-event-details .event-meta > div + div {
	margin-left: 14px;
}
.rs-event-details .event-meta > div i {
	margin-right: 3px;
	color: #ff3115;
}
.rs-event-details .event-img {
	margin-bottom: 25px;
}
.rs-event-details .share-area .share-inner {
	text-align: right;
}
.rs-event-details .share-area .share-inner span {
	display: inline-block;
	margin-right: 5px;
	color: #101010;
	font-weight: 600;
}
.rs-event-details .share-area .share-inner a i {
	border: 1px solid #ddd;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #212121;
	transition: all 0.3s ease 0s;
}
.rs-event-details .share-area .share-inner a i:hover {
	border-color: #ff3115;
	color: #ff3115;
}
.rs-event-details .share-area .book-btn a {
	display: inline-block;
	height: 40px;
	line-height: 36px;
	text-align: center;
	min-width: 147px;
	padding: 0 20px;
	border: 2px solid #ff3115;
	color: #212121;
	transition: all 0.3s ease 0s;
	font-weight: 600;
}
.rs-event-details .share-area .book-btn a:hover {
	background-color: #ff3115;
	color: #ffffff;
}
/* ------------------------------------
    13. Experienced Staffs
---------------------------------------*/
.rs-team .team-item {
	position: relative;
	overflow: hidden;
}
.rs-team .team-item .team-img {
	position: relative;
}
.rs-team .team-item .team-img .normal-text {
	position: absolute;
	bottom: 0;
	padding: 10px 20px;
	min-width: 175px;
	background-color: rgba(34, 34, 34, 0.8);
	transition: .3s ease all;
}
.rs-team .team-item .team-img .normal-text .team-name {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	display: block;
}
.rs-team .team-item .team-img .normal-text .subtitle {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	display: block;
}
.rs-team .team-item .team-img img {
	width: 100%;
}
.rs-team .team-item .team-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 10%;
	left: 0;
	text-align: center;
	z-index: 11;
	padding: 30px;
	opacity: 0;
	-webkit-transition: 0.3s all ease-out;
	transition: 0.3s all ease-out;
}
.rs-team .team-item .team-content:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: -1;
	-webkit-transition: .25s opacity ease;
	transition: .25s opacity ease;
}
.rs-team .team-item .team-name {
	margin-bottom: 2px;
}
.rs-team .team-item .team-name a {
	margin-bottom: 6px;
	font-size: 20px;
	color: #fff;
	text-transform: capitalize;
	font-weight: 700;
	position: relative;
	z-index: 111;
}
.rs-team .team-item .team-name a:hover {
	color: #fff;
}
.rs-team .team-item .team-title {
	position: relative;
	z-index: 111;
	font-size: 14px;
	color: #fff;
	padding-bottom: 12px;
}
.rs-team .team-item .team-title:after {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #ff3115;
	content: "";
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.rs-team .team-item .team-desc {
	color: #fff;
	margin-bottom: 0;
	padding-top: 12px;
	margin-top: 15px;
}
.rs-team .team-item .team-social {
	position: relative;
	width: 100%;
	text-align: center;
	z-index: 111;
	opacity: 0;
	margin-top: 25px;
	-webkit-transition: .4s all ease;
	transition: .4s all ease;
}
.rs-team .team-item .team-social .social-icon {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #ff3115;
	margin-right: 6px;
	border-radius: 50%;
}
.rs-team .team-item .team-social .social-icon i {
	font-size: 14px;
	color: #fff;
}
.rs-team .team-item .team-social .social-icon:hover {
	background-color: #e41f05;
}
.rs-team .team-item:hover .team-content {
	opacity: 1;
	top: 0;
}
.rs-team .team-item:hover .team-social {
	opacity: 1;
}
.rs-team .team-item:hover .normal-text {
	opacity: 0;
	visibility: hidden;
}
.rs-team-2 .team-item {
	margin-bottom: 30px;
}
.rs-team-2 .team-item .team-img {
	position: relative;
	overflow: hidden;
}
.rs-team-2 .team-item .team-img .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: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: 18px;
	text-align: center;
	background-color: #f0f0f0;
}
.rs-team-2 .team-item .team-body .name {
	font-size: 20px;
	margin-bottom: 2px;
	color: #212121;
	transition: all 0.3s ease 0s;
}
.rs-team-2 .team-item .team-body .name:hover {
	color: #ff3115;
}
.rs-team-2 .team-item .team-body .designation {
	font-size: 15px;
}
.rs-team-2.team-page {
	padding-top: 93px;
}
.rs-team-2 .row.grid {
	min-height: 400px !important;
	overflow: hidden;
}
.team-all .row {
	margin-bottom: 30px;
}
.team-all .row .team-item {
	margin-bottom: 0; background-color: #f3f3f3;
padding: 10px 10px;
}
.home5 .rs-team .team-item {
	margin-bottom: 30px;
	overflow: inherit;
}
.home5 .rs-team .team-item .team-desc {
	font-size: 14px;
	line-height: 22px;
}
.home5 .rs-team .team-item .team-social .social-icon {
	background: #92278f;
}
.home5 .rs-team .team-item .team-social .social-icon:hover {
	background: #5d0b5b;
}
.home5 .rs-team .team-item .team-img .normal-text {
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	text-align: center;
	border-radius: 30px;
	width: 200px;
	padding: 15px 0 0;
	height: 70px;
	bottom: -30px;
}
.pagination {
	margin-top: 25px;
}
.pagination .page-item > * {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 18px;
	padding: 0;
	font-weight: 600;
	color: #505050;
	outline: none;
}
.pagination .page-item > *:hover, .pagination .page-item > *.active {
	color: #ff3115;
}
.pagination .page-item > *.dotted {
	line-height: 40px;
}
/* ------------------------------------
    14. Staffs Single
---------------------------------------*/
.rs-team-single .team-name {
	font-size: 30px;
	margin-bottom: 10px;
}
.rs-team-single .team-title {
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 5px;
}
.rs-team-single .team-title span {
	display: block;
}
.rs-team-single .team-contact {
	margin-bottom: 15px;
}
.rs-team-single .team-icons {
	padding: 30px;
	text-align: center;
}
.rs-team-single .team-icons a {
	display: inline-block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #f0f0f0;
	margin-right: 15px;
	border-radius: 2px;
	transition: all 0.3s ease 0s;
}
.rs-team-single .team-icons a:hover {
	background-color: #ff3115;
	color: #fff;
}
.rs-team-single .rs-progress {
	height: 8px;
	border: 1px solid #ff3115;
	border-radius: 0;
	overflow: visible;
	padding: 1px;
	background: #fff;
	margin-top: 25px;
}
.rs-team-single .rs-progress + .rs-progress {
	margin-top: 50px;
}
.rs-team-single .rs-progress .progress-bar {
	position: relative;
	text-align: left;
	line-height: 4px;
	border-radius: 0;
	box-shadow: none;
	background-color: #ff3115;
}
.rs-team-single .rs-progress .progress-bar .pb-label {
	position: absolute;
	left: 0px;
	top: -24px;
	color: #666;
	font-size: 15px;
	font-weight: 600;
}
.rs-team-single .rs-progress .progress-bar .pb-percent {
	position: absolute;
	right: -13px;
	font-weight: 500;
	color: #fff;
	font-size: 10px;
	top: -30px;
	background: #ff3115;
	padding: 8px 5px;
}
.rs-team-single .rs-progress .progress-bar .pb-percent:after {
	content: '';
	position: absolute;
	border: 5px solid transparent;
	left: 50%;
	border-top-color: #ff3115;
	top: 20px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
/* ------------------------------------
    15. Calltoaction
---------------------------------------*/
.rs-calltoaction .cta-content .cta-subtitle {
	margin-bottom: 10px;
	color: #ff3115;
}
.rs-calltoaction .cta-content .cta-title {
	margin-bottom: 0;
	color: #ffffff;
	font-size: 32px;
}
.rs-calltoaction .cta-content p {
	color: #ffffff;
}
.rs-calltoaction .cta-button {
	display: inline-block;
	text-decoration: none;
	background-color: #6091ba;
	color: #ffffff;
	font-weight: 500;
	min-width: 170px;
	line-height: 45px;
	height: 45px;
	text-align: center;
	text-transform: uppercase;
}
.rs-calltoaction .cta-button:hover, .rs-calltoaction .cta-button:focus, .rs-calltoaction .cta-button:active {
	background-color: #485cc7;
	color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.04);
}
/* ------------------------------------
    16. Latest News
---------------------------------------*/
.rs-latest-news .news-normal-block {
	padding: 0px;
	border: 1px solid rgba(34, 34, 34, 0.1);
	transition: all 0.3s ease 0s;
	position: relative;
}
.rs-latest-news .news-normal-block:hover {
	-webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.rs-latest-news .news-normal-block .news-img {
	margin-bottom: 0px;
}
.rs-latest-news .news-normal-block .news-img img {
	width: 100%;
}
.rs-latest-news .news-normal-block .news-date {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 5px;
}
.rs-latest-news .news-normal-block .news-date i {
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	margin-right: 4px;
	color: #ff3115;
}
.rs-latest-news .news-normal-block .news-date span {
	color: #505050;
}
.rs-latest-news .news-normal-block .news-title {
	font-size: 20px;
	margin-bottom: 12px;
}
.rs-latest-news .news-normal-block .news-title a {
	color: #212121;
}
.rs-latest-news .news-normal-block .news-title a:hover, .rs-latest-news .news-normal-block .news-title a:focus {
	color: #ff3115;
}
.rs-latest-news .news-normal-block .news-desc p {
	margin-bottom: 20px;
}
.rs-latest-news .news-normal-block .news-btn a {
	display: inline-block;
	margin-left: auto;
	padding: 4px 16px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	background-color: #ff3115;
	color: #fff;
}
.rs-latest-news .news-normal-block .news-btn a:hover {
	background-color: #e41f05;
}
.rs-latest-news .news-list-block {
	overflow: scroll;
	height: 460px;
}
.rs-latest-news .news-list-block .news-list-item {
	overflow: hidden;
	padding: 15px;
	border: 1px solid rgba(34, 34, 34, 0.1);
	transition: all 0.3s ease 0s;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.rs-latest-news .news-list-block .news-list-item:hover {
	-webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.rs-latest-news .news-list-block .news-list-item + .news-list-item {
	margin-top: 23px;
}
.rs-latest-news .news-list-block .news-list-item .news-img {
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
	padding-right: 15px;
	float: left;
}
.rs-latest-news .news-list-block .news-list-item .news-content {
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
	float: left;
}
.rs-latest-news .news-list-block .news-list-item .news-date {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px;
}
.rs-latest-news .news-list-block .news-list-item .news-date i {
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	margin-right: 4px;
	color: #ff3115;
}
.rs-latest-news .news-list-block .news-list-item .news-date span {
	color: #505050;
}
.rs-latest-news .news-list-block .news-list-item .news-title {
	font-size: 16px;
	margin-bottom: 7px;
}
.rs-latest-news .news-list-block .news-list-item .news-title a {
	color: #212121;
}
.rs-latest-news .news-list-block .news-list-item .news-title a:hover, .rs-latest-news .news-list-block .news-list-item .news-title a:focus {
	color: #ff3115;
}
.rs-latest-news .news-list-block .news-list-item .news-btn a {
	display: inline-block;
	margin-left: auto;
	padding: 8px 20px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	background-color: #ff3115;
	color: #fff;
}
.rs-latest-news .news-list-block .news-list-item .news-btn a:hover {
	background-color: #e41f05;
}
.rs-latest-news .news-list-block .news-list-item .news-desc p {
	margin-bottom: 0;
	font-size: 14px;
}
.latest-news-slider .slick-arrow {
	position: absolute;
	z-index: 11;
	bottom: 0;
	right: -104px;
	height: 42px;
	width: 42px;
	font-size: 0;
	border: 0;
	background-color: rgba(0, 0, 0, 0.1);
	color: #ff3115;
	cursor: pointer;
	outline: 0;
	border-radius: 50%;
	transition: all 0.3s ease 0s;
	line-height: 0;
	display: none !important;
}
.latest-news-slider .slick-arrow:after {
	font-family: FontAwesome;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-size: 22px;
}
.latest-news-slider .slick-arrow.slick-prev:after {
	content: "\f104";
}
.latest-news-slider .slick-arrow.slick-next {
	right: -160px;
}
.latest-news-slider .slick-arrow.slick-next:after {
	content: "\f105";
}
.latest-news-slider .slick-arrow:hover {
	background-color: #ff3115;
	color: #fff;
}
.latest-news-nav .slick-track {
	width: 100% !important;
}
.latest-news-nav .slick-slide {
	width: 29% !important;
	margin-bottom: 12px;
	cursor: pointer;
	background-color: #fff;
	padding: 0px;
	transition: all 0.3s ease 0s;
	margin: 9px 12px;
	position: relative;
}
.latest-news-nav .slick-slide.slick-current, .latest-news-nav .slick-slide:hover {
	background-color: #0062A0;
}
.latest-news-nav .slick-slide.slick-current img, .latest-news-nav .slick-slide:hover img {
	opacity: 0.5;
}
/* ------------------------------------
    17. Our Publications
---------------------------------------*/
.rs-products .owl-stage-outer {
	padding-bottom: 30px;
}
.rs-products .product-item {
	text-align: center;
	transition: all 0.3s ease 0s;
	background-color: #ffffff;
}
.rs-products .product-item:hover {
	-webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.rs-products .product-item .product-img {
	margin-bottom: 17px;
	overflow: hidden;
}
.rs-products .product-item .product-img img {
	width: 100%;
	transition: all 0.3s ease 0s;
}
.rs-products .product-item .product-img:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.rs-products .product-item .product-title {
	font-size: 20px;
	margin-bottom: 3px;
}
.rs-products .product-item .product-title a {
	color: #212121;
}
.rs-products .product-item .product-title a:hover, .rs-products .product-item .product-title a:focus, .rs-products .product-item .product-title a:active {
	color: #ff3115;
}
.rs-products .product-item .product-price {
	font-size: 16px;
	color: #444;
	display: block;
}
.rs-products .product-item .product-btn {
	margin-top: 20px;
	padding-bottom: 25px;
}
.rs-products .product-item .product-btn a {
	display: inline-block;
	margin-left: auto;
	padding: 2px 15px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid #212121;
	color: #212121;
}
.rs-products .product-item .product-btn a:hover {
	border-color: #ff3115;
	background-color: #ff3115;
	color: #fff;
}
.rs-products .view-btn {
	text-align: center;
	margin-top: 20px;
}
.rs-products .view-btn a {
	display: inline-block;
	margin-left: auto;
	min-width: 170px;
	padding: 8px 20px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	background-color: #ff3115;
	color: #fff;
}
.rs-products .view-btn a:hover {
	background-color: #e41f05;
}
/* ------------------------------------
    18. Testimonial
---------------------------------------*/
.rs-testimonial .owl-stage-outer {
	padding-top: 50px;
	padding-bottom: 55px;
}
.rs-testimonial .testimonial-item {
	padding: 35px;
	background-color: #ffffff;
}
.rs-testimonial .testimonial-item .testi-img {
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 110px;
	height: 110px;
	padding: 5px;
	background: #fff;
	border-radius: 50%;
}
.rs-testimonial .testimonial-item .testi-img img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}
.rs-testimonial .testimonial-item .testi-desc {
	padding: 42px 0;
	position: relative;
}
.rs-testimonial .testimonial-item .testi-desc .testi-name {
	font-size: 20px;
	margin-bottom: 10px;
}
.rs-testimonial .testimonial-item .testi-desc p {
	font-size: 13px;
	line-height: 26px;
	margin-bottom: 0;
}
.rs-testimonial .testimonial-item .testi-desc:before, .rs-testimonial .testimonial-item .testi-desc:after {
	position: absolute;
	font-family: FontAwesome;
	font-size: 26px;
	color: #3288e8;
}
.rs-testimonial .testimonial-item .testi-desc:before {
	content: "\f10d";
	top: 0;
	left: 0;
}
.rs-testimonial .testimonial-item .testi-desc:after {
	content: "\f10e";
	bottom: 0;
	right: 0;
}
.rs-testimonial .owl-controls .owl-dots {
	position: absolute;
	left: 50%;
	bottom: -8px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.rs-testimonial .owl-controls .owl-dots .owl-dot {
	height: 6px;
	width: 22px;
	background-color: #fff;
	display: inline-block;
	transition: all 0.3s ease 0s;
}
.rs-testimonial .owl-controls .owl-dots .owl-dot + .owl-dot {
	margin-left: 8px;
}
.rs-testimonial .owl-controls .owl-dots .owl-dot.active {
	background-color: #efa904;
}
.rs-testimonial .owl-controls .owl-dots .owl-dot:first-child {
	border-radius: 3px 0 0 3px;
}
.rs-testimonial .owl-controls .owl-dots .owl-dot:last-child {
	border-radius: 0 3px 3px 0;
}
.rs-testimonial-2 .owl-stage-outer {
	padding-top: 55px;
	padding-bottom: 30px;
}
.rs-testimonial-2 .testimonial-item {
	padding: 35px;
	background-color: #f0f0f0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	margin: 0 3px;
}
.rs-testimonial-2 .testimonial-item .testi-img {
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 110px;
	height: 110px;
	padding: 5px;
	background: #fff;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
	border-radius: 50%;
}
.rs-testimonial-2 .testimonial-item .testi-img img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}
.rs-testimonial-2 .testimonial-item .testi-desc {
	padding: 42px 0;
	position: relative;
}
.rs-testimonial-2 .testimonial-item .testi-desc .testi-name {
	font-size: 20px;
	margin-bottom: 15px;
}
.rs-testimonial-2 .testimonial-item .testi-desc p {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0;
}
.rs-testimonial-2 .testimonial-item .testi-desc:before, .rs-testimonial-2 .testimonial-item .testi-desc:after {
	position: absolute;
	font-family: FontAwesome;
	font-size: 26px;
	color: #ff3115;
}
.rs-testimonial-2 .testimonial-item .testi-desc:before {
	content: "\f10d";
	top: 0;
	left: 0;
}
.rs-testimonial-2 .testimonial-item .testi-desc:after {
	content: "\f10e";
	bottom: 0;
	right: 0;
}
.rs-testimonial-2 .owl-controls .owl-dots {
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.rs-testimonial-2 .owl-controls .owl-dots .owl-dot {
	height: 6px;
	width: 22px;
	background-color: #fff;
	display: inline-block;
	transition: all 0.3s ease 0s;
}
.rs-testimonial-2 .owl-controls .owl-dots .owl-dot + .owl-dot {
	margin-left: 8px;
}
.rs-testimonial-2 .owl-controls .owl-dots .owl-dot.active {
	background-color: #ff3115;
}
.rs-testimonial-2 .owl-controls .owl-dots .owl-dot:first-child {
	border-radius: 3px 0 0 3px;
}
.rs-testimonial-2 .owl-controls .owl-dots .owl-dot:last-child {
	border-radius: 0 3px 3px 0;
}
.rs-testimonial-3 .testimonial-style3 {
	padding-top: 70px;
	margin: 50px 0 0;
	border: 1px solid #e0e0e0;
	text-align: center;
	position: relative;
	transition: all 0.7s ease 0s;
	background: #e0e0e0;
}
.rs-testimonial-3 .testimonial-style3:hover {
	border-color: #ff3115;
}
.rs-testimonial-3 .testimonial-style3:hover .image {
	border-color: #ff3115;
}
.rs-testimonial-3 .testimonial-style3:hover .testimonial-content {
	background-color: #ff3115;
}
.rs-testimonial-3 .testimonial-style3:hover .testimonial-content .testimonial-profile .name {
	color: #fff;
}
.rs-testimonial-3 .testimonial-style3:hover .testimonial-content .testimonial-profile .post {
	color: lightblue;
}
.rs-testimonial-3 .testimonial-style3:hover .testimonial-content .social-links li {
	background-color: #fff;
}
.rs-testimonial-3 .testimonial-style3:hover .testimonial-content .social-links li a {
	color: #ff3115;
}
.rs-testimonial-3 .testimonial-style3 .image {
	width: 95px;
	height: 95px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	overflow: hidden;
	transition: all 0.7s ease 0s;
	border: 5px solid #f2f2f2;
}
.rs-testimonial-3 .testimonial-style3 .image img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.rs-testimonial-3 .testimonial-style3 .title {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	margin: 0 0 10px 0;
}
.rs-testimonial-3 .testimonial-style3 .description {
	font-size: 15px;
	color: #000;
	line-height: 25px;
	padding: 0 25px 15px;
	margin: 0;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content {
	padding: 15px 25px;
	border-top: none;
	text-align: center;
	transition: all 500ms ease 0s;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .testimonial-profile .name {
	font-size: 16px;
	font-weight: bold;
	color: #ff3115;
	text-transform: uppercase;
	margin-bottom: 5px;
	margin-top: 0;
	transition: all 700ms ease 0s;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .testimonial-profile .post {
	font-size: 14px;
	color: #000;
	margin-bottom: 5px;
	text-transform: capitalize;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .rating {
	display: inline-block;
	margin-bottom: 14px;
	margin-top: 0;
	list-style: none;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .rating li {
	display: inline-block;
	font-size: 14px;
	color: #debe0f;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .social-links {
	padding: 0;
	margin: 0;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .social-links li {
	list-style: none;
	margin-right: 5px;
	display: inline-block;
	background-color: #7f352f;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .social-links li a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	text-align: center;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .social-links li a:hover {
	text-decoration: none;
	color: #150504;
}
.rs-testimonial-3 .owl-theme .owl-controls {
	width: 100%;
	position: absolute;
	top: 50%;
}
.rs-testimonial-3 .owl-theme .owl-controls .owl-buttons div {
	width: 45px;
	height: 40px;
	line-height: 37px;
	border-radius: 3px;
	background: #fff;
	border: 1px solid #ececec;
	padding: 0;
	opacity: 1;
	transition: all 0.4s ease-in-out 0s;
}
.rs-testimonial-3 .owl-theme .owl-controls .owl-buttons div:hover {
	background: #eabd44;
	border-color: #eabd44;
}
.rs-testimonial-3 .owl-prev, .rs-testimonial-3 .owl-next {
	position: absolute;
	left: -3%;
}
.rs-testimonial-3 .owl-next {
	left: auto;
	right: -3%;
}
.rs-testimonial-3 .owl-prev:before {
	content: "\f104";
	font-family: "fontAwesome";
	font-size: 25px;
	color: #ececec;
}
.rs-testimonial-3 .owl-next:before {
	content: "\f105";
	font-family: "fontAwesome";
	font-size: 25px;
	color: #ececec;
}
.rs-testimonial-3 .owl-stage-outer {
	padding-top: 50px;
	padding-bottom: 60px;
}
.rs-testimonial-5 .testimonial-item {
	background: #92278f;
	border-radius: 30px;
	text-align: center;
	max-width: 750px;
	margin: 0 auto;
	padding: 45px 35px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.rs-testimonial-5 .testimonial-item .testi-img {
	top: -125px;
}
.rs-testimonial-5 .testimonial-item .testi-desc {
	padding: 0 30px;
}
.rs-testimonial-5 .testimonial-item .testi-desc .testi-name {
	font-size: 20px;
	margin-top: 4px;
}
.rs-testimonial-5 .testimonial-item .testi-desc .testi-name span {
	display: block;
	font-size: 15px;
	font-weight: 400;
	padding-top: 5px;
}
.rs-testimonial-5 .testimonial-item .testi-desc:before, .rs-testimonial-5 .testimonial-item .testi-desc .testi-name, .rs-testimonial-5 .testimonial-item .testi-desc .testi-name span, .rs-testimonial-5 .testimonial-item .testi-desc p {
	color: #fff;
}
.rs-testimonial-5 .testimonial-item .testi-desc:before {
	display: none;
}
.rs-testimonial-5 .testimonial-item .testi-desc:after {
	display: none;
}
.rs-testimonial-5 .owl-stage-outer {
	padding-top: 125px;
	padding-bottom: 35px;
}
.rs-testimonial-5 .owl-controls .owl-dots .owl-dot.active {
	background: #92278f;
}
/* ------------------------------------
    19. Newsletter
---------------------------------------*/
.rs-newslatter .newslatter-title {
	color: #ffffff;
	margin-bottom: 0;
	font-size: 30px;
}
.rs-newslatter .newslatter-form .form-input {
	width: calc(69% - 25px);
	height: 50px;
	padding: 0 17px;
	border: 0;
	font-size: 16px;
	margin-right: 25px;
}
.rs-newslatter .newslatter-form .form-button {
	width: 30%;
	height: 50px;
	border: 0;
	background-color: #ff3115;
	color: #ffffff;
	cursor: pointer;
	font-weight: 500;
}
.rs-newslatter .newslatter-form .form-button:hover {
	background-color: #e41f05;
}
/* ------------------------------------
    20. Rs-video
---------------------------------------*/
.rs-video {
	padding: 150px 0;
	position: relative;
}
.rs-video:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}
.rs-video .video-content {
	text-align: center;
	position: relative;
	z-index: 11;
}
.rs-video .video-content a {
	display: inline-block;
	color: #ffffff;
	z-index: 99;
	border: 2px solid #ff3115;
	border-radius: 50%;
	width: 124px;
	height: 124px;
	margin: 0 auto;
	padding: 5px;
	margin-bottom: 30px;
}
.rs-video .video-content a i {
	font-size: 50px;
	line-height: 110px;
	border: 2px solid #fff;
	height: 110px;
	width: 110px;
	border-radius: 50%;
	text-align: center;
	color: #ff3115;
	display: block;
	background: #fff;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	margin-bottom: 24px;
	padding-left: 4px;
}
.rs-video .video-content a:hover i {
	border-color: #ff3115;
	background: transparent;
}
.rs-video .video-content span {
	display: block;
	font-size: 30px;
	color: #fff;
	font-weight: 700;
}
/* ------------------------------------
    21. Why Choose Us
---------------------------------------*/
.rs-why-choose .sec-title {
	margin-bottom: 44px;
}
.rs-why-choose .choose-item {
	text-align: center;
}
.rs-why-choose .choose-item .choose-title {
	font-size: 15px;
	margin-bottom: 0;
	margin-top: 25px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
}
.rs-why-choose .choose-item i {
	display: inline-block;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	background-color: #ff3115;
	color: #ffffff;
	border-radius: 50%;
	font-size: 36px;
}
/* ------------------------------------
    22. Pricing Table
---------------------------------------*/
.rs-pricing .pricing-plan {
	text-align: center;
	margin-bottom: 30px;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}
.rs-pricing .pricing-plan .pricing-head {
	background-color: #f0f0f0;
	padding: 35px;
	border-radius: 4px 4px 0px 0px;
}
.rs-pricing .pricing-plan .pricing-head .name {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	line-height: normal;
	margin-bottom: 10px;
	font-weight: 600;
	color: #444;
	text-transform: uppercase;
}
.rs-pricing .pricing-plan .pricing-head .price {
	color: #444;
}
.rs-pricing .pricing-plan .pricing-head .price sup {
	font-size: 20px;
	line-height: 40px;
	top: -3px;
	margin-right: -7px;
	vertical-align: top;
	font-weight: 700;
}
.rs-pricing .pricing-plan .pricing-head .price .duration {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
}
.rs-pricing .pricing-plan .pricing-head .value {
	font-size: 60px;
	line-height: 60px;
}
.rs-pricing .pricing-plan .pricing-body ul {
	padding-left: 0;
	list-style: none;
	font-size: 13px;
	color: #444;
	margin: 0;
}
.rs-pricing .pricing-plan .pricing-body ul li {
	padding: 15px 0;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	color: #303030;
}
.rs-pricing .pricing-plan .pricing-body ul li:nth-child(even) {
	background-color: #f0f0f0;
	padding: 20px 0;
}
.rs-pricing .pricing-plan .pricing-footer .pricing-btn {
	display: block;
	padding: 20px;
	background-color: #212121;
	color: #fff;
	font-size: 15px;
	border-radius: 0 0 4px 4px;
	font-weight: 600;
}
.rs-pricing .pricing-plan:hover .pricing-head .price, .rs-pricing .pricing-plan.featured .pricing-head .price, .rs-pricing .pricing-plan:hover .pricing-head .name, .rs-pricing .pricing-plan.featured .pricing-head .name {
	color: #ff3115;
}
.rs-pricing .pricing-plan:hover .pricing-footer .pricing-btn, .rs-pricing .pricing-plan.featured .pricing-footer .pricing-btn {
	background-color: #ff3115;
}
.rs-pricing .pricing-plan:hover .pricing-footer .pricing-btn:hover, .rs-pricing .pricing-plan.featured .pricing-footer .pricing-btn:hover {
	background-color: #e41f05;
}
/* ------------------------------------
    23. Instagram
---------------------------------------*/
.rs-instagram {
	position: relative;
}
.rs-instagram .instagram-desc {
	max-width: 630px;
	background: #ff3115;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 70px 0;
	z-index: 10;
	text-align: center;
}
.rs-instagram .instagram-desc .title {
	font-size: 30px;
	color: #ffffff;
	margin-bottom: 10px;
}
.rs-instagram .instagram-desc .sub-title {
	font-size: 30px;
	color: #101010;
	margin-bottom: 0;
}
.rs-instagram .instagram-item {
	margin-left: -1px;
}
.rs-instagram .instagram-item a {
	display: block;
	position: relative;
}
.rs-instagram .instagram-item a:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(17, 17, 17, 0.5);
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.rs-instagram .instagram-item:hover a:after {
	opacity: 0;
}
.rs-instagram .rs-carousel:last-child {
	margin-top: -1px;
}
/* ------------------------------------
    24. About Us Page
---------------------------------------*/
.abt-title h2 {
	font-size: 30px;
	line-height: normal;
	margin-bottom: 20px;
	padding-bottom: 16px;
	text-transform: uppercase;
	position: relative;
}
.abt-title h2:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 5px;
	width: 100px;
	background-color: #ff3115;
}
.abt-title.text-center h2:after {
	left: 50%;
	transform: translateX(-50%);
}
.rs-vision .vision-img {
	position: relative;
}
.rs-vision .vision-img:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(33, 33, 33, 0.5);
	opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rs-vision .vision-img:hover:after {
	opacity: 1;
}
.rs-vision .vision-img .popup-youtube {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.rs-vision .vision-img .popup-youtube:after {
	position: absolute;
	font-family: FontAwesome;
	content: "\f04b";
	font-size: 36px;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	transition: all 0.3s ease 0s;
	display: inline-block;
	height: 80px;
	line-height: 80px;
	width: 80px;
	text-align: center;
	border: 3px solid #fff;
	border-radius: 50%;
	padding-left: 8px;
	color: #fff;
}
.rs-branches .branches-item {
	text-align: center;
	position: relative;
	margin-bottom: 30px;
}
.rs-branches .branches-item img {
	margin-bottom: 15px;
}
.rs-branches .branches-item h3 {
	font-size: 20px;
	margin-bottom: 7px;
}
.rs-branches .branches-item h3 span {
	display: block;
}
.rs-branches .branches-item p {
	margin-bottom: 0;
}
.rs-branches [class*="col-"] + [class*="col-"] .branches-item:after {
	position: absolute;
	content: '';
	width: 64%;
	height: 2px;
	background-color: #ff3115;
	left: -38%;
	top: 70px;
}
/* ------------------------------------
    25. Rs Timeline
---------------------------------------*/
.rs-timeline .rs-timeline-icon i {
	color: #ff3115;
}
.rs-timeline .rs-timeline-content .rs-read-more {
	border-color: #ff3115;
	color: #ff3115;
}
.rs-timeline .rs-timeline-content .rs-read-more:hover {
	background-color: #ff3115;
	color: #ffffff;
}
.rs-timeline .rs-timeline-content .rs-date {
	color: #ff3115;
}
.rs-timeline-2 {
	position: relative;
	padding-bottom: 40px;
}
.rs-timeline-2 .arrows {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.rs-timeline-2 .arrows button {
	height: 42px;
	width: 42px;
	font-size: 0;
	margin: 0 5px;
	border: 0;
	background-color: #212121;
	color: #ff3115;
	cursor: pointer;
	outline: 0;
	border-radius: 50%;
	transition: all 0.3s ease 0s;
}
.rs-timeline-2 .arrows button:hover {
	background-color: #ff3115;
	color: #fff;
}
.rs-timeline-2 .arrows button:after {
	font-family: FontAwesome;
	font-size: 22px;
	margin-top: 5px;
	display: inline-block;
}
.rs-timeline-2 .arrows button.arrow__prev:after {
	content: "\f104";
}
.rs-timeline-2 .arrows button.arrow__next:after {
	content: "\f105";
}
.rs-timeline-2 ol li:not(:last-child)::after {
	background: #ff3115;
}
/* ------------------------------------
    26. Elements
---------------------------------------*/
.rs-accordion-style1 .card {
	border: 0;
}
.rs-accordion-style1 .card .card-header {
	padding: 0;
	border: 0;
	margin-bottom: 10px !important;
	background: transparent;
}
.rs-accordion-style1 .card .card-header .acdn-title {
	background-color: rgba(240, 240, 240, 0.8);
	position: relative;
	margin-bottom: 0;
	font-size: 18px;
	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	cursor: pointer;
	font-weight: 500;
	letter-spacing: 0.2px;
	-webkit-transition: 0.2s background-color ease-in-out;
	transition: 0.2s background-color ease-in-out;
}
.rs-accordion-style1 .card .card-header .acdn-title:after {
	position: absolute;
	font-family: FontAwesome;
	content: "\f0da";
	right: 20px;
	transition: all 0.3s ease 0s;
}
.rs-accordion-style1 .card .card-header .acdn-title:not(.collapsed) {
	background-color:#ff2768;
	color: #ffffff; 
}
.rs-accordion-style1 .card .card-header .acdn-title:not(.collapsed):after {
	transform: rotate(90deg);
	color: #ffffff;
}
.rs-accordion-style1 .card .card-body {
	padding: 5px 15px 18px;
}
/* ------------------------------------
    27. Blog Pages
---------------------------------------*/
.blog-page-area .blog-inner {
	overflow: hidden;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
}
.blog-page-area .blog-inner .blog-content {
	margin-top: 6px;
}
.blog-page-area .blog-inner .blog-content .date {
	font-size: 13px;
	font-weight: 600;
}
.blog-page-area .blog-inner .blog-content ul.blog-meta {
	margin: 0 0 10px;
}
.blog-page-area .blog-inner .blog-content ul.blog-meta li {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: #ff3115;
	padding-right: 10px;
}
.blog-page-area .blog-inner .blog-content ul.blog-meta li:last-child {
	padding-right: 0;
}
.blog-page-area .blog-inner .blog-content ul.blog-meta li i {
	font-size: 13px;
}
.blog-page-area .blog-inner .blog-content ul.blog-meta li a {
	display: block;
}
.blog-page-area .blog-inner .blog-content p {
	font-size: 15px;
}
.blog-page-area .blog-inner .blog-content h4 {
	margin: 0 0 8px;
}
.blog-page-area .blog-inner .blog-content h4 a {
	font-size: 20px;
	font-weight: 700;
	color: #212121;
}
.blog-page-area .blog-inner .blog-content a.primary-btn {
	margin-top: 12px;
}
.blog-page-area .blog-inner .blog-images {
	overflow: hidden;
	position: relative;
}
.blog-page-area .blog-inner .blog-images i {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	/* IE 9 */
	-webkit-transform: translate(-50%, -50%);
	/* Safari */
	transform: translate(-50%, -50%);
	z-index: 99;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 100%;
	border: 1px solid #ff3115;
	color: #ff3115;
	opacity: 0;
}
.blog-page-area .blog-inner .blog-images:after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
	transform: scale(0);
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
}
.blog-page-area .blog-inner .blog-images img {
	transform: scale(1);
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
	width: 100%;
}
.blog-page-area .blog-inner:hover .blog-images i {
	opacity: 1;
}
.blog-page-area .blog-inner:hover .blog-images img {
	transform: scale(1.1);
	transition: all 0.3s ease 0s;
}
.blog-page-area .blog-inner:hover .blog-images:after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
	transform: scale(1) !important;
	-webkit-transform: scale(1) !important;
	ms-transform: scale(1) !important;
}
.blog-page-area .blog-inner:hover .blog-content h4 a {
	color: #ff3115;
}
.blog-page-area .pagination {
	margin-top: 0;
}
/* ------------------------------------
    28 .Blog Details 
---------------------------------------*/
.single-blog-details .single-image {
	margin-bottom: 25px;
	overflow: hidden;
}
.single-blog-details .single-image img {
	filter: grayscale(0%);
	transition: all 0.8s ease-in-out 0s;
}
.single-blog-details .single-image img:hover {
	filter: grayscale(100%);
	transform: scale(1.1);
}
.single-blog-details .like-section h5, .single-blog-details h5.top-title {
	font-size: 16px;
	color: #212121;
	margin: 20px 0 15px;
	padding: 0;
	line-height: 25px;
}
.single-blog-details .like-section h5 a {
	color: #212121;
}
.single-blog-details .like-section h5 a:hover {
	color: #ff3115;
}
.single-blog-details h3.top-title, .single-blog-details .like-section h3.title-bg {
	font-size: 20px;
}
.single-blog-details .like-section span.date {
	font-size: 12px;
}
.single-blog-details blockquote {
	background: #f0f0f0;
	border: medium none;
	margin: 25px 0 25px;
	padding: 24px 25px 24px 63px;
	font-size: 16px;
	color: #212121;
	font-style: italic;
	position: relative;
	font-weight: 400;
}
.single-blog-details blockquote i {
	position: absolute;
	left: 22px;
	font-size: 25px;
	top: 21px;
}
.single-blog-details h2 {
	font-size: 20px;
	margin: 0 0 25px;
}
.single-blog-details .share-section {
	border-top: 1px solid #ddd;
	padding-top: 20px;
	padding-bottom: 20px; border-bottom: 1px solid #ddd;
}
.single-blog-details .share-section .share-link1 {
	padding: 0;
	margin: 0;
	float: right;
}
.single-blog-details .share-section .share-link1 li {
	float: left;
	list-style: none;
}
.single-blog-details .share-section .share-link1 li:first-child a {
	margin-left: 0;
}
.single-blog-details .share-section .share-link1 li a {
	padding: 7px 8px;
	border: 1px solid #ddd;
	font-size: 13px;
	font-weight: 400;
	color: #505050;
	border-radius: 4px;
	margin-left: 14px;
}
.single-blog-details .share-section .share-link1 li a:hover {
	background: #ff3115;
	color: #212121;
	border: 1px solid #ff3115;
}
.single-blog-details .share-section .share-link1 li:first-child a {
	background: #ff3115;
	color: #212121;
	border: 1px solid #ff3115;
}
.single-blog-details .share-section .life-style span {
	font-size: 13px;
	font-weight: 400;
	color: #505050;
	margin-right: 12px;
}
.single-blog-details .share-section .life-style span:last-child {
	margin-right: 0;
}
.single-blog-details .share-section .life-style span i {
	margin-right: 4px;
}
.single-blog-details .share-section .life-style span a {
	font-size: 13px;
	font-weight: 400;
	color: #505050;
}
.single-blog-details .share-section .life-style span a i {
	font-size: 13px;
	margin-right: 4px;
}
.single-blog-details .share-section .life-style span a:hover {
	color: #ff3115;
}
.single-blog-details .share-section .life-style span.author a {
	color: #777777;
}
.single-blog-details .share-section .life-style span.author a:hover {
	color: #ff3115;
}
.single-blog-details .share-section2 {
	border: 1px solid #ddd;
	padding: 15px 15px 15px 15px;
}
.single-blog-details .share-section2 span {
	font-size: 15px;
	font-weight: 400;
	color: #212121;
}
.single-blog-details .share-section2 .share-link {
	float: right;
}
.single-blog-details .share-section2 .share-link li {
	float: left;
	list-style: none;
}
.single-blog-details .share-section2 .share-link li:first-child a {
	margin-left: 0;
}
.single-blog-details .share-section2 .share-link li a {
	font-size: 13px;
	font-weight: 400;
	color: #505050;
	padding: 7px 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-left: 14px;
}
.single-blog-details .share-section2 .share-link li a:hover {
	background: #ff3115;
	color: #fff;
	border: 1px solid #ff3115;
}
.single-blog-details .like-section .col-xs-12 h3 {
	margin: 14px 0 6px;
}
.single-blog-details .like-section .col-xs-12 h3 a {
	font-size: 15px;
	font-weight: 400;
	color: #212121;
}
.single-blog-details .like-section .col-xs-12 span {
	font-size: 13px;
	font-weight: 400;
}
.single-blog-details .like-section .col-xs-12 span i {
	font-size: 13px;
}
.single-blog-details .like-section .col-xs-12 .popular-post-img img {
	transition: all 0.3s ease 0s;
}
.single-blog-details .like-section .col-xs-12:hover a {
	color: #ff3115;
}
.single-blog-details .like-section .col-xs-12:hover .popular-post-img img {
	opacity: .5;
}
.single-blog-details .next-pre-section {
	padding: 23px 0 15px;
	margin: 0;
	overflow: hidden;
}
.single-blog-details .next-pre-section li {
	margin: 0;
}
.single-blog-details .next-pre-section li a {
	font-size: 15px;
	color: #505050;
}
.single-blog-details .next-pre-section li a i {
	padding: 0;
	font-size: 15px;
	font-weight: 500;
	color: #212121;
}
.single-blog-details .next-pre-section li a:hover {
	color: #ff3115;
}
.single-blog-details .next-pre-section li a:hover i {
	color: #ff3115;
}
.single-blog-details .next-pre-section li.left-arrow {
	float: left;
	width: 50%;
}
.single-blog-details .next-pre-section li.left-arrow a {
	font-size: 15px;
	font-weight: 500;
	color: #505050;
}
.single-blog-details .next-pre-section li.left-arrow a i {
	padding-right: 5px;
}
.single-blog-details .next-pre-section li.right-arrow {
	float: right;
	width: 50%;
	text-align: right;
}
.single-blog-details .next-pre-section li.right-arrow a {
	font-size: 15px;
	font-weight: 500;
}
.single-blog-details .next-pre-section li.right-arrow a i {
	padding-left: 5px;
}
.single-blog-details .author-comment h3 {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 42px 0 6px;
}
.single-blog-details .author-comment span {
	font-size: 13px;
	font-weight: 500;
}
.single-blog-details .author-comment span a {
	font-size: 13px;
	font-weight: 500;
}
.single-blog-details .author-comment span i {
	font-size: 13px;
}
.single-blog-details .author-comment h4 {
	font-size: 15px;
	font-weight: 700;
}
.single-blog-details .author-comment ul {
	padding: 0;
	margin: 0;
}
.single-blog-details .author-comment ul li {
	margin: 0 0 2px;
	padding: 20px 22px;
	border-bottom: 1px solid #ddd;
}
.single-blog-details .author-comment ul li:nth-child(2) {
	margin-left: 100px;
}
.single-blog-details .author-comment ul li:nth-child(2) .col-sm-2 {
	padding: 0;
}
.single-blog-details .author-comment ul li:last-child {
	border-bottom: none;
}
.single-blog-details .author-comment ul li .image-comments {
	margin-top: 0;
}
.single-blog-details .author-comment ul li .image-comments img {
	width: 90px;
	border-radius: 100%;
}
.single-blog-details .author-comment ul li .reply {
	display: block;
	position: absolute;
	text-align: right;
	width: 95%;
}
.single-blog-details .author-comment ul li .reply a {
	color: #212121;
}
.single-blog-details .author-comment ul li .reply a:hover {
	color: #ff3115;
}
.single-blog-details .author-comment ul li .reply i {
	color: #212121;
}
.single-blog-details .author-comment ul li .dsc-comments h4 {
	margin: 0 0 12px;
}
.single-blog-details .author-comment ul li .dsc-comments a {
	color: #ff3115;
}
.single-blog-details .author-comment ul li .dsc-comments p {
	margin: 6px 0 0;
}
.single-blog-details .leave-comments-area {
	padding-top: 20px;
}
.single-blog-details .leave-comments-area .form-group {
	margin-bottom: 20px;
}
.single-blog-details .leave-comments-area h4 {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 19px;
	font-family: 'Roboto Condensed', sans-serif;
}
.single-blog-details .leave-comments-area label {
	color: #505050;
	font-weight: normal;
	letter-spacing: 1px;
}
.single-blog-details .leave-comments-area input, .single-blog-details .leave-comments-area textarea {
	background: transparent;
	border: 1px solid #ddd;
	box-shadow: none;
	border-radius: 0;
	height: 45px;
	width: 100%;
}
.single-blog-details .leave-comments-area textarea {
	height: 150px;
	width: 100%;
	max-width: 100%;
}
.single-blog-details .leave-comments-area .btn-send {
	background: #ff3115;
	font-weight: 600;
	color: #ffffff;
	font-size: 15px;
	line-height: 24px;
	border: none;
	border-radius: 0px;
	padding: 14px 23px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 14px;
	transition: all 0.3s ease 0s;
	cursor: pointer;
}
.single-blog-details .leave-comments-area .btn-send:hover {
	background: #212121;
	color: #ffffff;
}
/* ------------------------------------
    29. Shop Page Start Here 
---------------------------------------*/
.shop-page-area.single-product-page {
	padding: 100px 0 0;
}
.shop-page-area .single-details {
	padding: 0 0 35px;
	position: relative;
	overflow: hidden;
	text-align: center;
	transition: all 0.3s ease 0s;
	margin-bottom: 15px;
}
.shop-page-area .single-details .triangle_left {
	width: 0;
	height: 0;
	border-top: 70px solid transparent;
	border-right: 140px solid #ff3115;
	border-bottom: 70px solid transparent;
	position: absolute;
	top: -75px;
	left: -117px;
	transform: rotate(48deg);
	opacity: 0;
}
.shop-page-area .single-details:hover {
	background: #f5f5f5;
}
.shop-page-area .single-details:hover .triangle_left {
	opacity: 1;
}
.shop-page-area .single-details:hover h3 a {
	color: #ff3115;
}
.shop-page-area .single-details:hover .add-to-cart {
	background: #ff3115;
	color: #fff !important;
}
.shop-page-area .single-details:hover .images .overley {
	opacity: 1;
	transform: scaleY(1);
}
.shop-page-area .single-details .images {
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
}
.shop-page-area .single-details .images a {
	display: block;
}
.shop-page-area .single-details .images a img {
	transition: all 0.3s ease-out;
	width: 100%;
}
.shop-page-area .single-details .images .overley {
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	top: 0;
	transform: scaleY(0);
	transform-origin: 0 1 0;
	opacity: 0;
	transition: all 0.3s ease 0s;
	padding: 30px;
}
.shop-page-area .single-details .images .overley .winners-details {
	padding: 20% 0;
}
.shop-page-area .single-details .images .overley .winners-details h4 {
	margin-bottom: 10px;
	padding-bottom: 10px;
	color: #ffffff;
	font-size: 18px;
	position: relative;
}
.shop-page-area .single-details .images .overley .winners-details h4:after {
	display: none;
}
.shop-page-area .single-details .images .overley .winners-details .product-info {
	margin: 0;
	padding: 0px;
	list-style: none;
	top: 50%;
	position: absolute;
	transform: translateY(-50%);
	transition: all .9s;
	text-align: center;
	left: 0;
	right: 0;
}
.shop-page-area .single-details .images .overley .winners-details .product-info li {
	display: inline-block;
}
.shop-page-area .single-details .images .overley .winners-details .product-info li a {
	color: #ffffff;
	text-transform: capitalize;
	text-decoration: none;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border: 1px solid #ffffff;
	text-align: center;
	transition: all 0.3s ease 0s;
}
.shop-page-area .single-details .images .overley .winners-details .product-info li a:hover {
	color: #ff3115;
	border: 1px solid #ff3115;
}
.shop-page-area .single-details .images .overley .winners-details .product-info li a i {
	font-size: 16px;
	color: #ffffff;
	margin: 0;
	transition: all 0.3s ease 0s;
}
.shop-page-area .single-details .images .overley .winners-details .product-info li a i:hover {
	color: #ff3115;
}
.shop-page-area .single-details .images .overley .winners-details p {
	margin-bottom: 5px;
	color: #ffffff;
	font-size: 13px;
}
.shop-page-area .single-details .images .overley .winners-details p i {
	color: #ffffff;
	margin-right: 8px;
}
.shop-page-area .single-details h4 {
	margin-bottom: 10px !important;
	margin-left: 0;
	font-weight: 700;
}
.shop-page-area .single-details h4 a {
	color: #212121;
	transition: all 0.3s ease 0s;
	font-size: 20px;
	margin: 0;
}
.shop-page-area .single-details h4 a:hover {
	color: #ff3115;
}
.shop-page-area .single-details .price-details ul {
	margin: 0;
	padding: 0;
	text-align: center;
}
.shop-page-area .single-details .price-details ul li {
	display: block;
}
.shop-page-area .single-details .price-details ul li:first-child {
	font-weight: 600;
	font-size: 15px;
}
.shop-page-area .single-details .price-details ul li:first-child del {
	margin-right: 5px;
	font-weight: 400;
	font-size: 15px;
}
.shop-page-area .single-details .price-details ul li .add-to-cart {
	border: 1px solid #ff3115;
	padding: 8px 18px;
	color: #212121;
	font-size: 15px;
	font-weight: 600;
	display: inline-block;
	margin-top: 15px;
}
.shop-page-area .topbar-area {
	overflow: hidden;
	padding-bottom: 54px;
}
.shop-page-area .topbar-area .showing-Short .seclec-box {
	float: right;
}
.shop-page-area .topbar-area .showing-result ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}
.shop-page-area .topbar-area .showing-result ul li {
	display: inline-block;
	font-weight: 400;
	color: #505050;
	margin-right: 0;
	font-size: 14px;
	height: 25px;
}
.shop-page-area .topbar-area .showing-result ul li .form-group {
	margin: 0;
}
.shop-page-area .topbar-area .showing-result ul li .form-group.seclect-box select.form-control {
	display: inline-block;
	border: 0;
	background: transparent;
	border-radius: 0px;
}
.shop-page-area .pagination {
	margin-top: 0;
}
.shop-page-area .classic-tabs.tabs-cyan {
	display: block;
}
/* ------------------------------------
    30.Shop Single Page Start Here 
---------------------------------------*/
.shop-single-page-area .shop-single-btm-page-area {
	padding-bottom: 74px;
	overflow: hidden;
	padding-top: 60px;
}
.shop-single-page-area .shop-single-btm-page-area .sec-title {
	font-size: 30px;
}
.shop-single-page-area .shop-single-btm-page-area .sec-title:after {
	height: 5px;
}
.shop-single-page-area .shop-single-btm-page-area .sec-sub-title {
	margin-bottom: 42px;
	margin-top: 10px;
	font-size: 30px;
}
.shop-single-page-area .inner-single-product-slider .inner {
	background: #f5f5f5;
	margin-bottom: 26px;
}
.shop-single-page-area .inner-single-product-slider .single-product-nav {
	max-width: 300px;
	margin: 0 auto;
}
.shop-single-page-area .inner-single-product-slider .single-product-nav .slick-slide {
	position: relative;
	margin: 0 5px;
	cursor: pointer;
}
.shop-single-page-area .inner-single-product-slider .single-product-nav .slick-slide:after {
	background: rgba(0, 0, 0, 0.7);
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}
.shop-single-page-area .inner-single-product-slider .single-product-nav .slick-current:after {
	opacity: 0;
}
.shop-single-page-area .inner-single-product-slider .slick-prev:before {
	content: "\f104";
}
.shop-single-page-area .inner-single-product-slider .slick-prev:before, .shop-single-page-area .inner-single-product-slider .slick-next:before {
	font-family: FontAwesome;
	opacity: 1;
	transition: all 0.5s ease 0s;
	font-size: 16px;
	line-height: 20px;
	color: #212121;
}
.shop-single-page-area .inner-single-product-slider .slick-prev:hover:before, .shop-single-page-area .inner-single-product-slider .slick-next:hover:before {
	color: #ff3115;
}
.shop-single-page-area .inner-single-product-slider .slick-next:before {
	content: "\f105";
}
.shop-single-page-area .left-area h4 {
	margin: 0 0 12px;
	color: #212121;
	font-size: 20px;
}
.shop-single-page-area .left-area .cat, .shop-single-page-area .left-area .tag {
	font-size: 13px;
	margin: 0 0 5px;
}
.shop-single-page-area .left-area .cat strong, .shop-single-page-area .left-area .tag strong {
	font-weight: 500;
}
.shop-single-page-area .left-area .cat {
	margin-top: 27px;
}
.shop-single-page-area .tab-btm {
	margin-top: 20px;
	vertical-align: top;
}
.shop-single-page-area .tab-btm .nav-item {
	position: relative;
	display: block;
	width: 100%;
}
.shop-single-page-area .tab-btm .nav-item a {
	font-size: 15px;
	color: #505050;
}
.shop-single-page-area .tab-btm .nav-item .active {
	background: #eee;
}
.shop-single-page-area .tab-btm .nav-item .active:before {
	content: "\f105";
	font-family: FontAwesome;
	opacity: 1;
	transition: all 0.5s ease 0s;
	font-size: 16px;
	line-height: 20px;
	position: absolute;
	top: 14px;
	z-index: 99;
	right: 5px;
}
.shop-single-page-area .tab-btm .tab-content.card {
	border: none;
}
.shop-single-page-area .tab-btm h4 {
	margin: 15px 0 19px;
	font-weight: 500;
	color: #505050;
}
/*-----------------------------------
    25. Check Out css Start Here
-------------------------------------*/
.rs-check-out .title-bg {
	font-size: 24px;
	margin-bottom: 30px;
}
.rs-check-out .check-out-box {
	padding: 0 0 40px 0;
}
.rs-check-out .check-out-box label {
	color: #505050;
	font-weight: 400;
}
.rs-check-out .check-out-box textarea, .rs-check-out .check-out-box input {
	border-color: #bfbfbf;
}
.rs-check-out .check-out-box input {
	height: 40px;
	padding: 0 15px;
}
.rs-check-out .check-out-box select {
	width: 100%;
	min-height: 40px;
	display: block;
	padding: 10px 15px;
	color: #505050;
}
.rs-check-out .check-out-box .checkbox input {
	height: auto;
	margin-top: 7px;
}
.rs-check-out .shipping-box h3.title {
	font-size: 24px;
	margin: 0 0 30px;
}
.rs-check-out .shipping-box .form-group input {
	height: 80px;
}
.rs-check-out .shipping-box input, .rs-check-out .checkbox input {
	margin-right: 15px;
}
.rs-check-out .product-demo {
	width: 100%;
	display: inline-block;
	padding-bottom: 20px;
	padding-top: 8px;
}
.rs-check-out .product-demo h5 {
	margin: 0;
	font-size: 15px;
	color: #505050;
}
.rs-check-out .product-demo .product-image {
	width: 15%;
	float: left;
}
.rs-check-out .product-demo .product-name {
	width: 30%;
	float: left;
	transform: translateY(100%);
}
.rs-check-out .product-demo .product-quantity {
	width: 25%;
	float: left;
	text-align: center;
	transform: translateY(100%);
}
.rs-check-out .product-demo .product-ititial-price {
	width: 30%;
	float: left;
	text-align: center;
	transform: translateY(100%);
}
.rs-check-out .product-price table {
	border: 1px solid #b2b2b2;
	margin-bottom: 25px;
}
.rs-check-out .product-price table tr td {
	padding: 15px 25px;
	border-bottom: 1px solid #b2b2b2;
}
.rs-check-out .product-price table tr td input {
	margin-right: 5px;
}
.rs-check-out .product-price table tr td:last-child {
	text-align: right;
}
.rs-check-out .product-price table tr td.no-border {
	border: none;
}
.rs-check-out .rs-payment-system .payment-radio-btn1 {
	padding: 15px 25px;
	border: 1px solid #b2b2b2;
}
.rs-check-out .rs-payment-system .payment-radio-btn1 p {
	margin: 0;
	padding: 15px 0 15px 25px;
	font-size: 13px;
}
.rs-check-out .rs-payment-system .payment-radio-btn2 {
	padding: 15px 25px;
	border: 1px solid #b2b2b2;
	border-top: none;
}
.rs-check-out .rs-payment-system input {
	margin-right: 10px;
}
.rs-check-out .rs-payment-system input.btn-send {
	width: 100%;
	margin-top: 25px;
	background-color: #ff3115;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	border: none;
	height: 50px;
	line-height: 50px;
	text-align: c center;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-ms-transition: 0.4s;
	cursor: pointer;
}
.rs-check-out .rs-payment-system input.btn-send:hover {
	background: #212121;
}
/*-----------------------------------
    32. Shipping Area Start Here
------------------------------------*/
.shipping-area .button-area ul li a {
	display: block;
	padding: 15px;
	background: #f8f8f8;
	color: #646464;
	font-size: 18px;
}
.shipping-area .button-area ul li.active a {
	background: #ff3115;
	color: #fff;
}
.shipping-area .product-list table {
	margin: 0 0 30px;
}
.shipping-area .product-list table tr {
	border: 1px solid #e7e7e7;
	padding: 25px;
	display: block;
	margin-bottom: -1px;
}
.shipping-area .product-list table tr td {
	padding-right: 52px;
}
.shipping-area .product-list table tr td img {
	width: 100%;
	display: block;
	max-width: 80px;
}
.shipping-area .product-list table tr td .des-pro {
	display: block;
	padding-right: 50px;
	width: 210px;
}
@media screen and (max-width: 991px) {
.shipping-area .product-list table tr td .des-pro {
	width: auto; 
}
}
.shipping-area .product-list table tr td .des-pro h4 {
	margin: 0 0 10px;
	font-size: 20px;
}
.shipping-area .product-list table tr td .des-pro p {
	color: #646464;
	margin: 0;
}
.shipping-area .product-list table tr td strong {
	font-size: 20px;
	display: block;
	padding-right: 100px;
	font-weight: 500;
}
@media screen and (max-width: 991px) {
.shipping-area .product-list table tr td strong {
	padding-right: 10px;
}
}
.shipping-area .product-list table tr td .order-pro {
	position: relative;
	display: block;
	margin-right: 100px;
}
.shipping-area .product-list table tr td .order-pro input {
	width: 110px;
	height: 46px;
	box-shadow: none;
	border: 1px solid #ccc;
	text-align: center;
	padding-right: 10px;
	color: #888888;
	font-size: 18px;
}
.shipping-area .product-list table tr td .order-pro div {
	position: absolute;
	top: 12px;
	right: 0;
	z-index: 999;
	cursor: pointer;
}
.shipping-area .product-list table tr td .order-pro div.btn-plus {
	right: 40px;
}
.shipping-area .product-list table tr td .order-pro div.btn-minus {
	right: 20px;
}
.shipping-area .product-list table tr td .prize {
	color: #ff3115;
	font-size: 18px;
	font-weight: 500;
	padding-right: 50px;
}
.shipping-area .product-list table tr td i {
	display: block;
	width: 30px;
	height: 30px;
	border: 1px solid #cccccc;
	text-align: center;
	line-height: 28px;
	font-size: 15px;
	cursor: pointer;
	color: #ccc;
}
.shipping-area .product-list table tr td i:hover {
	background: #ff3115;
	color: #fff;
}
.shipping-area .product-list .total span {
	font-size: 20px;
	padding-right: 10px;
}
.shipping-area .product-list .total strong {
	font-size: 28px;
	font-weight: 400;
}
.shipping-area .next-step {
	text-align: right;
}
.shipping-area .next-step a {
	padding: 10px 30px;
	border: 1px solid #ff3115;
	background: #ff3115 !important;
	color: #fff;
	text-transform: capitalize;
	font-size: 18px;
	background: transparent;
	margin-top: 25px;
	transition: all 0.3s ease 0s;
	display: inline-block;
}
.shipping-area .next-step a:hover {
	background: #212121 !important;
	color: #fff;
	border: 1px solid #212121 !important;
}
.shipping-area .form-area h3 {
	font-weight: 500;
	padding: 15px 15px;
	font-size: 22px;
}
.shipping-area .form-area form fieldset {
	margin: 0 0 15px;
}
.shipping-area .form-area form fieldset label {
	display: block;
	width: 100%;
	color: #333333;
	font-weight: 400;
	margin: 0 0 10px;
	font-size: 14px;
}
.shipping-area .form-area form fieldset input {
	display: block;
	width: 100%;
	margin: 0 0 10px;
	height: 40px;
	border-radius: 0;
	padding: 0 15px;
	border: 1px solid #ccc;
}
.shipping-area .form-area form fieldset select {
	display: block;
	width: 100%;
	margin: 0 0 10px;
	height: 40px;
	border-radius: 0;
	padding: 0 15px;
	color: #646464;
	font-size: 13px;
	border: 1px solid #ccc;
}
.shipping-area .order-list h3 {
	padding: 15px 0;
	font-size: 24px;
}
.shipping-area .order-list table {
	width: 100%;
}
.shipping-area .order-list table tr {
	width: 100%;
	display: block;
}
.shipping-area .order-list table tr th {
	font-weight: bold;
	width: 50%;
}
.shipping-area .order-list table tr td {
	border: 1px solid #dedede;
	padding: 15px 15px;
	font-weight: normal;
}
.shipping-area .order-list table tr td:first-child {
	width: 400px;
}
@media screen and (max-width: 480px) {
.shipping-area .order-list table tr td:first-child {
	width: 65%;
}
}
.shipping-area .order-list table tr td:last-child {
	width: 150px;
	text-align: center;
}
.shipping-area .order-list table .row-bold td {
	border: 1px solid #dedede;
	font-weight: 700;
}
.shipping-area .panel-group .panel {
	border-radius: 0;
	margin: 0;
}
.shipping-area .panel-group .panel-body {
	padding-left: 40px;
	padding-right: 100px;
}
.shipping-area .panel-group a .checkbox {
	margin: 0;
	padding: 10px 0;
}
.shipping-area .panel-group a .checkbox .cr {
	position: relative;
	display: inline-block;
	background: #cccccc;
	border-radius: 100%;
	float: left;
	margin-top: 0px;
	margin-right: .5em;
	width: 15px;
	height: 15px;
}
.shipping-area .panel-group a .checkbox label {
	margin: 0 !important;
	padding: 0 !important;
	text-transform: capitalize;
	font-size: 18px;
	font-weight: 700;
}
.shipping-area .panel-group a .checkbox label input[type="checkbox"] {
	display: none;
}
.shipping-area .panel-group a .checkbox label input[type="checkbox"] + .cr > .cr-icon {
	opacity: 1;
	display: block;
	color: #ff3115;
	width: 15px;
	height: 15px;
}
.shipping-area .panel-group a .checkbox label input[type="checkbox"] + .cr > .cr-icon {
	opacity: 0;
	transition: all 0.3s ease-in;
	display: block;
	padding: 5px;
	color: #2962ff;
}
.shipping-area .panel-group .panel-default > .panel-heading {
	background: transparent;
}
.order-pro input[type=number]::-webkit-inner-spin-button, .order-pro input[type=number]::-webkit-outer-spin-button {
 opacity: 1;
}
.coupon-fields .input-text {
	padding: 5px 8px;
	width: 75%;
	margin-right: 10px;
	margin-bottom: 25px;
}
.coupon-fields .apply-coupon {
	background: #ff3115;
	border: none;
	color: #fff;
	padding: 6px 8px;
	border: 1px solid #ff3115;
	transition: all 0.3s ease 0s;
}
.coupon-fields .apply-coupon:hover {
	background: #212121 !important;
	border: 1px solid #212121;
	color: #fff;
}
/*-------------------------------------
    32. Contact Page Section Start Here
--------------------------------------*/
.contact-page-section #googleMap {
	height: 490px;
}
.contact-page-section .map-text {
	padding-bottom: 22px;
}
.contact-page-section .map-text h3 {
	font-size: 20px;
	margin: 0;
	padding: 25px 0 10px;
	font-weight: 600;
}
.contact-page-section .map-text p {
	font-size: 15px;
	margin: 0;
	padding: 0;
}
.contact-page-section .contact-address-section {
	text-align: center;
	margin: 50px 0;
}
.contact-page-section .contact-address-section .contact-info {
	background: #f0f0f0;
	border: 1px solid #e1e1e1;
	padding: 25px 0 23px;
}
.contact-page-section .contact-address-section .contact-info .contact-pd {
	padding: 0 10px;
}
.contact-page-section .contact-address-section .contact-info i {
	color: #ff3115;
	font-size: 36px;
	margin: 0;
	padding: 0;
}
.contact-page-section .contact-address-section .contact-info h4 {
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #212121;
	margin: 0;
	padding: 15px 0;
}
.contact-page-section .contact-address-section .contact-info a {
	color: #505050;
	display: block;
}
.contact-page-section .contact-address-section .contact-info a:hover {
	color: #ff3115;
}
.contact-page-section .contact-address-section .contact-info p {
	color: #505050;
	margin: 0;
	padding: 0;
}
.contact-page-section .contact-comment-section h3 {
	font-size: 20px;
	margin: 0;
	padding-bottom: 30px;
	text-transform: uppercase;
	font-weight: 600;
}
.contact-page-section .contact-comment-section form .form-group input {
	height: 43px;
	padding: 0 15px;
}
.contact-page-section .contact-comment-section form .form-group input, .contact-page-section .contact-comment-section form .form-group textarea {
	border: none;
	background: #f5f5f5;
	border-radius: 0;
	box-shadow: none;
}
.contact-page-section .contact-comment-section form .form-group label {
	color: #505050;
	font-weight: 400;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send {
	text-transform: uppercase;
	color: #ffffff;
	background-color: #ff3115;
	margin-top: 15px;
	border: none;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-weight: 600;
	padding: 0 50px;
	cursor: pointer;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-ms-transition: 0.4s;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send:hover {
	background: #212121;
}
/* ------------------------------------
    33. Rs Gallery
---------------------------------------*/
.rs-gallery .gallery-item {
	position: relative;
}
.rs-gallery .gallery-item .gallery-desc {
	position: absolute;
	top: 50%;
	width: 100%;
	padding: 25px;
	text-align: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.rs-gallery .gallery-item .gallery-desc h3 {
	margin-bottom: 12px;
	font-size: 24px;
	transition: all 0.3s ease 0s;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	opacity: 0;
}
.rs-gallery .gallery-item .gallery-desc h3 a {
	color: #ffffff;
}
.rs-gallery .gallery-item .gallery-desc p {
	color: #e1e1e1;
	margin-bottom: 30px;
	transition: all 0.3s ease 0s;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	opacity: 0;
}
.rs-gallery .gallery-item .gallery-desc .image-popup {
	display: inline-block;
	width: 50px;
	line-height: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	background-color: #0f325f;
	color: #ffffff;
	font-size: 18px;
	-webkit-transform: translateY(35px);
	transform: translateY(35px);
	transition: all 0.3s ease 0s;
	opacity: 0;
}
.rs-gallery .gallery-item:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(33, 33, 33, 0.8);
	opacity: 0;
	transition: all 0.3s ease 0s;
}
.rs-gallery .gallery-item:hover:before {
	opacity: 1;
}
.rs-gallery .gallery-item:hover h3, .rs-gallery .gallery-item:hover p, .rs-gallery .gallery-item:hover .image-popup {
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}
.rs-gallery .row {
	margin-bottom: 30px;
}
.rs-gallery-section .single-gallery {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.rs-gallery-section .single-gallery:after {
	content: "";
	width: 80%;
	height: 80%;
	background: #92278f;
	position: absolute;
	top: 10%;
	left: 10%;
	display: block;
	overflow: hidden;
	opacity: 0.8;
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-ms-transition: 0.4s;
}
.rs-gallery-section .single-gallery .popup-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	text-align: center;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 11;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.rs-gallery-section .single-gallery .popup-icon a {
	font-size: 20px;
	display: inline-block;
	margin: 0 8px;
	color: #fff;
}
.rs-gallery-section .single-gallery:hover:after {
	opacity: 0.8;
	visibility: visible;
	transform: scale(1);
}
.rs-gallery-section .single-gallery:hover .popup-icon {
	opacity: 1;
	visibility: visible;
}
/* ------------------------------------
    34. ScrollUp
---------------------------------------*/
#scrollUp {
text-align: center;
bottom: 78px;
cursor: pointer;
display: none;
position: fixed;
right: 15px;
z-index: 999999999 !important;
}
#scrollUp i {
background: linear-gradient(to right, #281c5f, #ff2768);
    height: 47px;
    font-size: 24px;
    width: 47px;
    color: #ffffff;
    line-height: 42px;
    transition: all 0.3s ease 0s;
    margin-left: 2px;
}
#scrollUp i:hover {
	background-color: #ff2768;
	color: rgba(255, 255, 255, 0.7);
}
/* ------------------------------------
    35.404 Page Area Start Here 
---------------------------------------*/
.error-page-area {
	text-align: center;
}
.error-page-area .error-page {
	background: #f0f0f0;
	background-position: center center;
	background-size: cover;
	padding: 60px 0 100px;
}
.error-page-area .error-page h1 {
	font-size: 250px;
	color: #212121;
	line-height: 230px;
	margin: 0;
}
.error-page-area .error-page p {
	font-size: 18px;
	color: #212121;
	font-weight: 500;
	letter-spacing: 3px;
	margin-bottom: 50px;
}
.error-page-area .error-page-message {
	margin-top: 0;
}
.error-page-area .error-page-message p {
	font-size: 20px;
	color: #212121;
}
.error-page-area .error-page-message .home-page a {
	display: inline-block;
	text-decoration: none;
	font-size: 15px;
	color: #ffffff;
	background: #ff3115;
	padding: 15px 35px;
	transition: all 0.3s ease 0s;
	font-weight: 700;
}
.error-page-area .error-page-message .home-page a:hover {
	background: #212121;
}
/*-------------------------
    36.Preloader css
---------------------------*/
.book_preload {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999999999 !important;
}
.book {
	top:35%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	position: relative;
	margin: 0 auto;
	width:200px;
	height:100px;
}
.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: #333;
	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: #000;
}
 29.9% {
 background: #000;
}
 30% {
 -webkit-transform: perspective(200px) rotateY(-90deg);
 transform: perspective(200px) rotateY(-90deg);
 background: #e41f05;
}
 54.999% {
 opacity: 1;
}
 55% {
 opacity: 0;
}
 60% {
 -webkit-transform: perspective(200px) rotateY(-180deg);
 transform: perspective(200px) rotateY(-180deg);
 background: #e41f05;
}
 100% {
 -webkit-transform: perspective(200px) rotateY(-180deg);
 transform: perspective(200px) rotateY(-180deg);
 background: #e41f05;
}
}
@keyframes flip {
 0% {
 -webkit-transform: perspective(600px) rotateY(0deg);
 transform: perspective(600px) rotateY(0deg);
}
 20% {
 background: #000;
}
 29.9% {
 background: #000;
}
 30% {
 -webkit-transform: perspective(200px) rotateY(-90deg);
 transform: perspective(200px) rotateY(-90deg);
 background: #000;
}
 54.999% {
 opacity: 1;
}
 55% {
 opacity: 0;
}
 60% {
 -webkit-transform: perspective(200px) rotateY(-180deg);
 transform: perspective(200px) rotateY(-180deg);
 background: #000;
}
 100% {
 -webkit-transform: perspective(200px) rotateY(-180deg);
 transform: perspective(200px) rotateY(-180deg);
 background: #000;
}
}
/* ------------------------------------
    37. Rs Footer
---------------------------------------*/
.rs-footer {
	color: #e8e8e8;
	margin-top: 0px;
}
.rs-footer .footer-title {
	margin-bottom: 10px;
	padding-bottom: 5px;
	color: #ffffff;
	font-size: 16px;
	position: relative;
	font-weight: 600;
	text-align: center;
}

.main_title{margin-bottom: 40px !important;}

.rs-footer .footer-title:after {
	content: '';
	position: absolute;
	left: 48%;
	bottom: -18px;
	height: 1px;
	width: 50px;
}
.rs-footer .container {
	position: relative;
}
.rs-footer .footer-contact-desc {
	margin: 0;
	text-align: center;
	padding: 35px;
	position: absolute;
	left: 0;
	right: 0;
	margin: -100px auto 0;
	z-index: 111;
	background: #0062A0;
}
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner {
}
.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;
	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;
	width: 45px;
	height: 45px;
	border: 1px solid #457581;
	border-radius: 100%;
	line-height: 1.6;
}
.rs-footer .footer-contact-desc .contact-inner .contact-title {
	margin-bottom: 10px;
	color: #ffffff;
	font-size: 20px;
	text-transform: uppercase;
}
.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: 30px; padding-bottom: 10px;
}
.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: #f8b239;
	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;
	font-size: 13px;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-title a:hover, .rs-footer .footer-top .recent-post-widget .post-item .post-title a:focus {
	color: #bbbbbb;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-category {
	font-size: 15px;
}
.rs-footer .footer-top .recent-post-widget .post-item + .post-item {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(102, 102, 102, 0.5);
}
.rs-footer .footer-top .sitemap-widget li {
	width: 50%;
	float: left;
	line-height: 33px;
}
.rs-footer .footer-top .sitemap-widget li a {
	color: #e8e8e8;
	display: inline-block;
	position: relative;
	font-size: 13px;
}
.rs-footer .footer-top .sitemap-widget li a:hover, .rs-footer .footer-top .sitemap-widget li a:focus {
	color: #fff;
}
.rs-footer .footer-top .sitemap-widget li a i {
	padding-right: 10px;
}
.rs-footer .footer-top .flickr-feed li {
	display: inline-block;
	margin: 2px 3px;
	overflow: hidden;
	position: relative;
	width: 76px;
}
.rs-footer .footer-top .flickr-feed li img {
	-webkit-transition: .3s ease all;
	transition: .3s ease all;
}
.rs-footer .footer-top .flickr-feed li:hover img {
	opacity: 0.7;
}
.rs-footer .footer-top .news-form {
	position: relative;
}
.rs-footer .footer-top .news-form input {
	background: rgba(0, 0, 0, 0);
	border: 1px solid #ff3115;
	color: #ffffff;
	height: 50px;
	outline: 0 none;
	padding: 5px 15px;
	width: 100%;
}
.rs-footer .footer-top .news-form button {
	background: #ff3115;
	border: none;
	color: #ffffff;
	font-size: 18px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 60px;
	transition: all 0.3s ease 0s;
	cursor: pointer;
}
.rs-footer .footer-top .news-form button:hover {
	background: #e41f05;
}
.rs-footer .footer-top .about-widget img {
	margin-bottom: 25px;
}
.rs-footer .footer-share {
	text-align: center;
}
.rs-footer .footer-share ul li {
	display: inline-block;
}
.rs-footer .footer-share ul li a {
	font-size: 20px;
	display: block;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	line-height: 2.1;
	text-align: center;
	color: #fff;
	transition: all .3s ease 0s;
	background: rgba(0, 0, 0, 0.6);
}
.rs-footer .footer-share ul li a:hover {
	background-color: #ff4e31;
	color: #ffffff;
}
.rs-footer .footer-share ul li + li {
	margin-left: 5px;
}
.rs-footer .footer-bottom {
	text-align: center;
	padding: 26px 0;
	margin-top: 27px; margin-top: 10px;
} 
.rs-footer .footer-bottom .copyright p {
	opacity: 0.95;
	margin-bottom: 0;
	font-size: 12px;
}
.rs-footer-2 .footer-share {
	margin-top: 20px;
}
.logo-area img {
	width: 110px;
}
.bottn {
	margin: 0px;
	padding: 0px;
}
.bottn a {
	padding: 5px 15px;
	font-size: 14px;
	color: #FFF;
	background: #3a801d;
	float: left;
	margin-top: 5px;
	transition: all ease 0.5s;
}
.bottn a:hover {
	background: #efa904;
	transition: all ease 0.5s;
}
.view {
	text-align: center;
	margin: 0 auto;
	margin-top: 20px;
}
.view a {
	padding: 9px 15px;
	font-size: 14px;
	color: #FFF !important;
	background: #3a801d;
	transition: all ease 0.5s;
	line-height: 3.5;
}
.view a:hover {
	background: #efa904;
	transition: all ease 0.5s;
}
.border-logo {
	border: 1px solid #CCC;
	width: 100px;
}
.services-desc p {
	font-size: 12px;
	color: #141212 !important;
}
.bg4 {
	background-image: url(images/bg/counter-footer.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
}
.bg10 {
	background-image: url(http://british-school.org/wp-content/uploads/2019/04/footer.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
}
.covervideo {
	position: relative;
	height: 100%;
	width: 100%;
}
#myVideo {
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	position: relative;
	width: 100%;
	height: 100%;
}
.covervideo::after {
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	width: 100%;
	height: 100%;
}
.carousel-caption h5 small {
	font-size: 24px;
	display: block;
	font-weight: 300;
	padding-left: 4px;
	margin-bottom: 10px;
	color: #000 !important;
	text-transform: uppercase;
}
.carousel-caption h5 span {
	font-size: 44px;
	line-height: 55px;
}
.carousel-caption p {
	font-size: 14px;
	font-weight: 300;
	margin: 15px 6px 20px 0;
	color: #000 !important;
}
.carousel-caption .btn {
	text-shadow: none;
}
.carousel-caption a {
	font-weight: bold;
	margin-right: 15px;
}
.btn-light-sm {
	color: #fffefe;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	color: white !important;
	font-weight: 600;
}
.btn-light-sm:hover {
	color: #000 !important;
}
.btn-round {
	padding-left: 0px !important;
	padding-right: 0px !important;
}
.view-details {
	margin: 0 auto;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 30px;
}
.view-details a {
	background: #3a801d;
	color: #FFF;
	padding: 7px 20px;
}
.view-details a:hover {
	background: #efa904;
	color: #FFF;
	transition: all ease 0.5s;
}
.carousel-caption a:hover {
	color: #333;
}
.specing {
	margin-top: 20px;
}
.center {
	text-align: center;
	margin: 0 auto;
}
.close-btn {
	color: #FFF;
	line-height: 2.5;
}
.send {
	font-size: 14px;
	color: #FFF;
	background:#1b4a56;
	border: none;
	padding: 3px 15px;
	cursor: pointer;
	
}
/*sticky header position*/
.sticky.is-sticky {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	padding: 14px 135px !important;
}
.sticky.is-sticky .navbar-brand {
	position: absolute;
	z-index: 2;
	top: -43px;
	left: -27px;
}
.round-border {
	border: 1px solid #eee;
	border: 1px solid rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 10px;
	margin-bottom: 5px;
}
button.iconcs {
	background: none !important;
	border: none !important;
	position: relative;
	left: -30px;
	top: 17px;
	z-index: 9999 !important;
	cursor: pointer !important;
	outline: none !important;
	float: right;
	margin: 0px 20px;
}
button.iconcs::focus {
outline: none !important;
}
button.iconcs i {
	font-size: 24px;
	color: #002854;
}
.dropbtn {
	background-color: #fff;
	color: #274374;
	padding: 11px;
	font-size: 16px;
	border: none;
	cursor: pointer;
	border-top-left-radius: 28px;
}
.dropbtn:hover, .dropbtn:focus {
	background-color: #2980B9;
}
.dropdown {
position: fixed;
display: inline-block;
top:70%;
z-index: 9;
right: 0px;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 36px;
	overflow: auto;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	right: 0px; top:50px;
}
.dropdown-content a {
	color: black;
	padding: 12px 8px;
	text-decoration: none;
	display: block;
	font-size: 15px;
	text-align: center;
}
.dropdown a:hover {
	background-color: #ddd;
}

.course-body p {
	font-size: 14px;
	color: #333;
	margin-bottom: 0px !important;
	margin-top: 10px;
}
.wdyh {
	width: 10%;
	float: left;
}
.wdyhs {
	width: 90%;
	float: left;
}
.wdyh2 {
	width: 14%;
	float: left;
}
.wdyhs2 {
	width: 86%;
	float: left;
}
.wdyh3 {
	width: 32%;
	float: left;
}
.wdyhs3 {
	width: 67%;
	float: left;
	margin-top: 5px;
}
.containers {
	width: 1200px;
	margin: 0 auto;
}
.cource-item {
	padding: 0px 0px !important;
}
.rs-courses .cource-item .cource-img {
	transition: all ease 0.3s;
}
.rs-courses .cource-item .cource-img:hover {
	box-shadow: 0 0 150px #ccc;
	transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	transition: all ease 0.3s;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0.5;
}
.about-img img {
	width: 100%;
}
.hvr-float-shadow::before {
	height: 1px !important;
}
.latest-news-nav h5 {
	color: #fff;
	line-height: 1.5;
	margin-top: 5px;
	position: absolute;
	top: 140px;
	left: 25px;
	padding: 5px;
	font-size: 19px;
	text-align: right;
	width: 85%;
	font-weight: 500;
	text-shadow: 2px 2px 2px #000;
}
.news-normal-block h4 {
	font-size: 18px;
	color: #fff;
	font-weight: normal;
	margin-bottom: 10px;
	line-height: 1.6;
}
.mrctop {
	margin-top: 10px;
	float: left;
}
.copyright a {
	color: #FFF;
	font-size: 12px;
}
.abslite {
	position: absolute;
	top: 30%;
	width: 92%;
	float: left;
	padding: 20px;
	text-align: center;
}
.abslite h5 {
	font-size: 36px;
	color: #fff;
	margin: 10px 0px;
	text-align: center;
}
.pa200 {
	margin-top: 0px !important;
}
.wdyh4 {
	width: 15%;
	float: left;
}
.wdyhs4 {
	width: 85%;
	float: left;
}
.paddins {
	padding: 0px 10px !important;
}
.bnaner_heading {
	position: absolute;
	bottom: 57px;
	text-align: center;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	width: 100%;
}
.bnaner_heading h5 {
	font-size: 24px;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 5px 20px;
}
.in_thissection {
	width: 100%;
	padding: 6px 10px;
	font-size: 16px;
	color: #FFF;
	text-align: center;
	text-transform: uppercase;
	margin-top: 1px;
	background: #0062A0;
}
.bottm_section {
	margin-top: 0px;
	float: left;
	width: 100%;
	margin-bottom: 30px;
}
.list-group-item-success {
	color: #155724;
	background-color: #fff;
	font-size: 14px;
}
.list-group-item:first-child {
	border-top-left-radius: 0rem;
	border-top-right-radius: 0rem;
}
.list-group-item-success i {
	float: right;
}
.fsElementContent {
	width: 100%;
	float: left;
	padding: 5px 39px;
	top: 445px;
}
.fsElementContent ul {
	float: left;
	margin: 0px;
	padding: 0px;
}
.fsElementContent ul li {
	list-style: none;
	margin: 0px;
	padding: 0px;
	float: left;
	font-size: 13px;
}
.fsElementContent ul li a {
	float: left;
	margin: 0px;
	padding: 0px;
	color: #2c2c2c;
	font-size: 12px;
}
.fsElementContent ul li i {
	margin: 5px 13px;
	float: left;
	color: #B8B8B8;
	font-size: 16px;
}
span.fsNavBreadcrumbSeperator {
	position: relative;
	padding: 4px 15px;
	display: inline-block;
}
.admission_details {
	width: 100%;
	float: left;
	margin-top: 10px;
	margin-bottom: 30px;
}
.admission_details h4 {
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 2px;
	margin: 10px 0px;
	float: left;
	width: 100%;
	text-transform: uppercase;
}
.admission_details p {
	font-size: 13px;
	color: #000;
	font-weight: normal;
	letter-spacing: 1px;
	float: left;
	margin: 3px 0px;
	width: 100%;
	line-height: 1.8;
}
.admission_details2 {
	width: 100%;
	float: left;
	background-size: auto;
	margin-top:0px;
	background-size: cover;
	padding-bottom: 15px;
}
.admission_details2 h1 {
	font-size: 28px;
	color: #151515;
	font-weight: normal;
	letter-spacing: 2px;
	margin-bottom: 10px;
	text-align: center;
}
.admission_details2 p {
	font-size: 13px;
	color: #151515;
	font-weight: normal;
	letter-spacing: 1px;
	text-align: center;
	margin-top: 8px;
	padding: 10px;
}
.page_item_has_children {
	cursor: pointer;
	float: left;
	width: 100%;
}
.page_item a {
	font-size: 13px !important;
	text-transform: uppercase;
	border-bottom: 1px solid #b9b9b9;
	margin: 0px 0px;
	width: 100%;
	padding: 8px 10px;
	float: left;
}
.rs-offcanvas-link {
	position: absolute !important;
	right: 0px !important;
	top: 17px !important;
	margin: 0px -10px;
}
/* #Canvas Element Circular charts
================================================== */
canvas, video {
	display: inline-block;
}
.stats-container {
	padding: 0;
	list-style: none;
	text-align: center;
	padding-bottom: 0px;
	margin-top: 23px;
}
.stats-container li {
	display: inline-block;
	margin: 0 4% 5px;
	position: relative;
}
.circular-stat {
	position: relative;
}
.circular-stat .digit-label {
	color: #2980B9;
	font-family: "Noto Sans", "Helvetica Neue", Helvetica, arial, sans-serif;
	font-size: 32px;
	text-align: center;
	display: inline-block;
	position: absolute;
	top: 14.5%;
	width: 75%;
	left: 6.5%;
	padding: 30px 0 0 30px;
 text-shadow:-1px 1px 0px #fff white-space: nowrap;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.circular-stat .text-label {
	color: #333;
	font-size: 11px;
	top: 50%;
	left: 14.875%;
	width: 71.25%;
	padding-top: 6px;
	display: inline-block;
	position: absolute;
	text-align: center;
	border-top: 1px solid #999;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1.6;
}
span.text-title {
	color: #444;
	font-family: "Noto Sans", "Helvetica Neue", Helvetica, arial, sans-serif;
	text-align: center;
	letter-spacing: -1px;
	font-size: 1.3em;
	font-weight: 400;
	text-shadow: -1px 1px 0px #FFF;
	padding: 30px 10px 0 0px;
	margin-top: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 99999;
	display: block;
	text-shadow: -1px 1px 0px #fff;
}
span.text-dates {
	font-size: 1.5em;
	font-family: "Noto Sans", "Helvetica Neue", Helvetica, arial, sans-serif;
	color: #999;
	text-shadow: -1px 1px 0px #fff;
}
 @media only screen and (min-width: 1010px) {
.stats-container li {
	margin: 0 2% 5px;
}
}
@media only screen and (max-width: 1009px) {
.stats-container li {
	margin: 0 -.2em 5px;
}
}
.admission_details h3 {
	margin-top: 17px;
	font-size: 21px;
	color: #2980B9;
	font-weight: normal;
	float: left;
	width: 100%;
}
.admission_details ul {
	float: left;
	margin: 10px 0px;
	width: 100%;
}
.admission_details li {
	font-size: 13px;
	color: #000;
	line-height: 2;
	letter-spacing: 1px;
	display: flex;
}
.admission_details li i {
	font-size: 13px;
	color: #2980B9;
	line-height: 1;
	margin: 7px 5px;
}
.paddins2 {
	padding: 0px 0px;
}
.ltsnew {
	position: relative;
	top: 0px;
}
.news_details {
	padding: 30px 0px !important;
}
.news_details h4 {
	font-size: 24px;
	color: #000;
	margin: 10px 0px;
}
.news_details p {
	font-size: 14px;
	color: #1e1e1e;
	line-height: 1.8;
}
.news_details a {
	color: #333 !important;
	margin: 5xp 0px !important;
}
.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999999999999 !important;
	display: none;
	overflow: hidden;
	outline: 0;
}
nav#cssmenu ul li a i {
	font-size: 22px;
	position: relative;
	top: 4px;
}
/* footer start
================================================== */


.footertbs {
	width: 100%;
	float: left;
	background: #231f20;
	padding: 40px 0px;
}
img.fterlogo {
	width: 90%;
	margin-bottom: 5px;
}
.listfooter h4 {
	color: #FFF;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.listfooter p {
	color: #FFF;
	font-weight: normal;
	line-height: 1.6;
	font-size: 13px;
}
ul.listliks {
	float: left;
	margin: 0px;
	padding: 0px;
	width: 100%;
}
ul.listliks li {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
ul.listliks li a {
	font-size: 13px;
	color: #FFF;
	float: left;
	width: 100%;
	border-bottom: 1px solid #fffefe;
	padding: 5px 0px;
}
.topadd2 ul li {
	display: inline-block;
	padding: 2px 0px;
}
.social2 > li {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	width: 26px;
	height: 26px;
	padding-top: 1px;
	text-align: center;
	margin: 0 2px;
	line-height: 1;
}
.topadd2 ul li a {
	display: block;
	color: #fff;
	padding: 0px 7px;
	font-size: 13px;
	text-transform: uppercase;
	line-height: 26px;
	width: 28px;
	height: 28px;
	border: 1px solid #ccc;
	border-radius: 30px;
}
.footerbottom {
	width: 100%;
	float: left;
	text-align: center;
	padding: 10px 0px;
	color: #ccc;
	font-size: 12px;
	background: #3b3b3b;
}
.footerbottom a {
	color: #CCC;
}
.align {
	margin-top: 33px !important;
}
.header_icon {
	position: absolute;
	top: 16px !important;
}
.bgtransparet {
	background: #FFF !important;
}
.color1 {
	background: #0062A0 !important;
	padding: 10px !important;
	height: 250px;
}
.color2 {
	background: #FFD212 !important;
	padding: 10px !important;
	height: 250px;
}
.color3 {
	background: #08B99F !important;
	padding: 10px !important;
	height: 250px;
}
.color4 {
	background: #71D505 !important;
	padding: 10px !important;
	height: 250px;
}
.color5 {
	background: #ECA807 !important;
	padding: 10px !important;
	height: 250px;
}
.color6 {
	background: #EF693D !important;
	padding: 10px !important;
	height: 250px;
}
.latest-news-nav h5 {
	color: #fff;
	line-height: 1.5;
	margin-top: 5px;
	position: absolute;
	top: 89px;
	left: 10px;
	padding: 5px;
	font-size: 20px;
	text-align: center;
	width: 90%;
	font-weight: 500;
	text-shadow: 1px 1px 1px #423f3f;
}
h5.fadeInUp{padding: 30px 0px; font-size: 40px; text-align:center;}
h4.fadeInUp{font-size: 16px; color:#000; text-align:center;}


.deta{position: absolute; top:250px; z-index: 9999999; width:100%; margin:0 auto;}

/* History
================================================== */
.process-wrapper {
	margin: auto;
	max-width: 1080px;
}
#progress-bar-container {
	position: relative;
	width: 90%;
	margin: auto;
	height: 100px;
	margin-top: 0px;
}
#progress-bar-container ul {
	padding: 0;
	margin: 0;
	padding-top: 15px;
	z-index: 9999;
	position: absolute;
	width: 100%;
	margin-top: -40px
}
#progress-bar-container li:before {
	content: " ";
	display: block;
	margin: auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	transition: all ease 0.3s;
}
#progress-bar-container li.active:before, #progress-bar-container li:hover:before {
}
#progress-bar-container li {
	list-style: none;
	float: left;
	width: 14%;
	text-align: center;
	color: #000;
	text-transform: uppercase;
	font-size: 11px;
	cursor: pointer;
	font-weight: 700;
	transition: all ease 0.2s;
	vertical-align: bottom;
	height: 60px;
	position: relative;
	background: none;
}
#progress-bar-container li .step-inner {
	position: absolute;
	width: 100%;
	bottom: 0;
	color: black;
	font-size: 17px;
}
#progress-bar-container li.active, #progress-bar-container li:hover {
	color: #444;
}
#progress-bar-container li:after {
	content: " ";
	display: block;
	width: 6px;
	height: 6px;
	background: #777;
	margin: auto;
	border: solid 7px #363737;
	border-radius: 50%;
	margin-top: 40px;
	box-shadow: 0 2px 13px -1px rgba(0,0,0,0.3);
	transition: all ease 0.2s;
}
#progress-bar-container li:hover:after {
	background: #555;
}
#progress-bar-container li.active:after {
	background: #207893;
}
#progress-bar-container #line {
	width: 84%;
	margin: auto;
	background: #413f3f;
	height: 6px;
	position: absolute;
	left: 7%;
	top: 57px;
	z-index: 1;
	border-radius: 50px;
	transition: all ease 0.9s;
}
#progress-bar-container #line-progress {
	content: " ";
	width: 3%;
	height: 100%;
	background: #207893;
	background: -moz-linear-gradient(left, #207893 0%, #2ea3b7 100%);
	background: -webkit-linear-gradient(left, #207893 0%, #2ea3b7 100%);
	background: linear-gradient(to right, #207893 0%, #2ea3b7 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#207893', endColorstr='#2ea3b7', GradientType=1 );
	position: absolute;
	z-index: 2;
	border-radius: 50px;
	transition: all ease 0.9s;
}
#progress-content-section {
	width: 90%;
	margin: auto;
	background: #f3f3f3;
	border-radius: 4px;
}
#progress-content-section .section-content {
	padding: 0px 0px;
	text-align: left;
}
#progress-content-section .section-content h2 {
	font-size: 22px;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	margin-top: 15px;
}
#progress-content-section .section-content p {
	font-size: 15px;
	line-height: 1.8em;
	color: #fefefe;
}
#progress-content-section .section-content {
	display: none;
	animation: FadeInUp 700ms ease 1;
	animation-fill-mode: forwards;
	transform: translateY(15px);
	opacity: 0;
}
#progress-content-section .section-content.active {
	display: block;
}
 @keyframes FadeInUp {
 0% {
 transform:translateY(15px);
 opacity:0;
}
 100% {
 transform:translateY(0px);
 opacity:1;
}
}
/* --- ORANGE --- */

body.blue #color .drop {
	background: #207893;
	background: -moz-linear-gradient(45deg, #207893 25%, #2ea3b7 100%);
	background: -webkit-linear-gradient(45deg, #207893 25%, #2ea3b7 100%);
	background: linear-gradient(45deg, #207893 25%, #2ea3b7 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#207893', endColorstr='#2ea3b7', GradientType=1 );
}
body.blue h1 {
	background: rgb(206,119,68);
	background: -moz-linear-gradient(left, rgba(206,119,68,1) 0%, rgba(230,125,36,1) 100%);
	background: -webkit-linear-gradient(left, rgba(206,119,68,1) 0%, rgba(230,125,36,1) 100%);
	background: linear-gradient(to right, rgba(206,119,68,1) 0%, rgba(230,125,36,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ce7744', endColorstr='#e67d24', GradientType=1 );
}
body.blue li.active:after {
	background: #e67d24;
}
body.blue #line-progress {
	background: rgb(206,119,68);
	background: -moz-linear-gradient(left, rgba(206,119,68,1) 0%, rgba(230,125,36,1) 100%);
	background: -webkit-linear-gradient(left, rgba(206,119,68,1) 0%, rgba(230,125,36,1) 100%);
	background: linear-gradient(to right, rgba(206,119,68,1) 0%, rgba(230,125,36,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ce7744', endColorstr='#e67d24', GradientType=1 );
}
/* --- SOURCE --- */

#inspiration {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 15px;
	font-size: 11px;
	color: #bbb;
	background: #333;
}
#inspiration a {
	color: #777;
}
nav#cssmenu ul li a i {
	font-size: 26px !important;
	position: relative;
	top: 6px;
}
.bghs {
	background: #F6F6F6;
	width: 100%;
	padding: 40px 0px;
	border: 1px solid #d8d1d1;
}
/* admissions
================================================== */

.admission_list {
	width: 100%;
	background: #F7F7F7;
	text-align: center;
	padding: 10px;
	border: 1px solid #e2e0e0;
}
.admission_list h4 {
	font-size: 18px;
	color: #000;
	margin: 10px 0px;
}
.admission_list p {
	font-size: 13px;
	color: #000;
	margin: 0px 0px;
}
a.collapsed i {
	float: right;
	font-size: 18px;
	color: #acacac;
	line-height: 1.5;
}
.nav-link {
	display: block;
	padding: 5px 10px;
}
li.submenu a {
	padding: 15px 10px;
}
a.nav-link i {
	float: right;
	line-height: 1.8;
}
.contact_form {
	width: 100%;
	float: left;
	margin-top: 0px;
	padding: 0px 8px;
	background: #F5F5F5;
}
.contact_form p {
	font-size: 20px;
	color: #000;
	margin-left: 10px;
}
.contact_form {
	font-size: 20px;
	color: #000;
	line-height: 1.5;
}
#headerr_inner {
	width: 100%;
	padding: 24px 35px;
	z-index: 9999999;
	border-bottom: 1px solid #ccc;
	position: sticky;
    top: 0px;
    background-color: #fff; height: 116px;
}
.containerx {
	padding: 0px 35px;
}
.inner_section {
	width: 100%;
	padding-top: 0px;
	padding-bottom: 40px;
	margin-top: 20px;
	background: #EAEAEA;
}
.bottm_boxes {
	margin-top: 0px;
	border-top: 4px solid #2980B9;
	transition: all ease 0.5s;
}
.bottm_boxes h3 {
	position: absolute;
	bottom: 20px;
	text-align: center;
	color: #FFF;
	width: 95%;
	font-size: 15px;
}
.bottm_boxes img:hover {
	opacity: 0.8;
	transition: all ease 0.5s;
}
.inner_section h4 {
	font-size: 24px;
	color: #002854;
	margin: 30px 0px;
	text-align: center;
	letter-spacing: 1px;
	font-weight: normal;
}
span.enquiry {
	float: left;
	color: #333;
	font-size: 12px;
	border: 1px solid #CCC;
	padding: 2px 10px;
	margin-top: 8px;
}
.left_section {
	width: 100%;
	float: left;
}
.right_section {
	width: 28%;
	float: right;
	margin: 0px 10px;
}
.admission_details h5 {
	font-size: 16px;
	float: left;
	width: 100%;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.admission_details ol {
	width: 100%;
	float: left;
	margin: 3px 0px;
}
.admission_details ol li {
	width: 100%;
	float: left;
	margin: 3px 0px;
}
.position {
	position: relative;
	margin-bottom: 0px;
}
.alignnone {
	margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}
.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}
.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}
a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}
a img.alignnone {
	margin: 5px 20px 20px 0;
}
a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}
a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%; /* Image does not overflow the content area */
	padding: 5px 3px 10px;
	text-align: center;
}
.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}
.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}
.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;/* Above WP toolbar. */
}
.form-control {
	display: block !important;
	width:100% !important;
	padding: 0.375rem 0.75rem !important;
	font-size: 12px !important;
	line-height: 1.5 !important;
	color: #495057 !important;
	background-color: #fff;
	background-clip: padding-box !important;
	border: 1px solid #d0cece !important;
	border-radius: 0px !important;
	transition: border-color .3s ease-in-out, box-shadow .3s ease-in-out;
	float: left !important;
	margin-bottom: 10px !important;
}
.widget {
	margin-bottom: 10px;
	float: left;
	width: 100%;
	margin-top: 10px;
}
.widget p {
	font-size: 13px;
	text-align: center;
	color: #333;
	margin-top: 15px;
}
.textwidget {
	text-align: center;
}
code {
	font-size: 14px !important;
	color: #1c4f8f;
	font-weight: normal;
	line-height: 1.5;
	margin: 3px 0px;
}
code, kbd, pre, samp {
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
.toplse {
	position: absolute !important;
	top: 17px !important;
}
.section {
	margin-bottom: 40px;
	margin-top: 5px;
	float: left;
	width: 100%;
}
.lft_section {
	width: 100%;
	float: left;
	margin: 0px;
	padding: 0px;
}
.rgt_section {
	width: 100%;
	float: left;
	margin: 0px;
	padding: 0px 0px;
}
.rgt_section h4 {
	font-size: 26px;
	color: #ef7110;
	text-transform: uppercase;
	margin: 10px 0px;
}
.rgt_section h3 {
	font-size: 18px;
	color: #333;
	text-transform: uppercase;
	margin: 10px 0px;
}
.rgt_section h5 {
	font-size: 14px;
	color: #002854;
	margin: 10px 0px;
	text-align: center;
	font-weight: normal;
	line-height: 1.5;
}
.rgt_section p {
	font-size: 14px;
	color: #000;
	line-height: 1.8;
	width: 100%;
	float: left;
}
.list_box {
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 0px;
}
.list_box a {
	color: #FFF;
	width: 30%;
	float: left;
	padding: 3px;
	background: #0C79BF;
	font-size: 14px;
	margin: 0px 5px;
	text-align: center;
	border: 2px solid #f5b07b;
	transition: all ease 0.5;
	margin-bottom: 10px;
}
.list_box a:hover {
	background: #ef7110;
	color: #FFF;
	transition: all ease 0.5;
	border: 2px solid #ef7110;
}
.note {
	color: #777;
	font-size: 0.85em;
}
.table-bordered td, .table-bordered th {
	border: 1px solid #dee2e6;
	font-size: 14px !important;
	font-weight: normal !important;
}
.bgcolort {
	background: #262626;
	color: #FFF;
	padding: 5px 10px;
}
.table td, .table th {
	padding: 5px 15px !important;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
}
.bs-example {
	margin-bottom: 30px;
}
button.bttnsub {
	padding: 5px 20px;
	float: left;
	background: #002854;
	color: #FFF;
	border: none;
	cursor: pointer;
}
select.selectoption {
	padding: 5px 10px;
	font-size: 14px;
	width: 16%;
}
.inner-banner-bootom {
	width: 100%;
	float: left;
	margin-bottom: 30px;
	padding-bottom: 5px;
	background: #dd6a13;
}
.banner_heading {
	position: absolute;
	top: 185px;
	left: 0%;
	width: 100%;
	padding: 20px 40px;
}
.banner_heading h6 {
	font-size: 24px;
	color: #FFF;
}
ul.bradcrumb {
	float: right;
}
ul.bradcrumb li {
	list-style: none;
	margin: 0px 0px;
	float: left;
}
ul.bradcrumb li a {
	font-size: 12px;
	color: #FFF;
	padding: 0px 10px;
	float: left;
}
.section_l {
	width: 50%;
	float: left;
	margin-bottom: 20px;
}
.section_l h4 {
	font-size: 18px;
	color: #333;
	margin-bottom: 10px;
	float: left;
	padding: 0px 10px;
	font-weight: 500;
	text-transform: uppercase;
}
.section_l p {
	font-size: 13px;
	color: #333;
	margin-bottom: 10px;
	float: left;
	padding: 0px 10px;
	width: 100%;
}
.all_details {
	width: 100%;
	float: left;
	border-bottom: 1px solid #dad9d9;
	margin-bottom: 20px;
}
.all_details h5 {
	font-size: 24px;
	color: #dd6a13;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.all_details p {
	font-size: 14px;
	color: #333;
	margin-bottom: 10px;
}
ul.list {
	width: 100%;
	float: left;
	margin: 0px;
	padding: 0px 14px;
}
ul.list li {
	font-size: 13px;
	color: #333;
	margin: 5px 0px;
	list-style: none;
}
ul.list li i {
	font-size: 13px;
	color: #F90;
	margin: 5px 0px;
	list-style: none;
}
.gallery h4 {
	text-align: center;
	margin: 10px 0px;
	font-size: 16px;
	color: #333;
	font-weight: normal;
}
.gallery a {
	padding: 5px 10px;
	width: 100%;
	float: left;
	background: #002854;
	font-size: 13px;
	color: #FFF;
	text-align: center;
}
.gallery img {
	transition: all ease 0.5s;
}
.gallery img:hover {
	opacity: 0.6;
	transition: all ease 0.5s;
}
.h_section {
	width: 50%;
	float: left;
}
.contact_form {
	font-size: 20px;
	color: #000;
	line-height: 1.5;
	margin-bottom: 30px;
	margin-top: 20px;
}
.form-group {
	width: 100%;
	float: left;
	margin: 4px 10px;
	padding: 4px 10px;
}
.form-group label {
	
}
.form-group2 label {
	float: left;
	font-size: 14px;
	color: #333;
	margin-top: 10px;
	margin-bottom: -2px;
	margin-left: 10px;
	float: left;
	width: 100%;
}
.form-group2 {
	float: left;
	width: 100%;
}
.form-group2 textarea {
	width: 95%;
	float: left;
	padding: 10px;
	height: 140px;
	font-size: 14px;
	color: #333;
	border: 1px solid #CCC;
	margin: 10px 10px;
}
.form-group button {
	border: none;
	padding: 6px 20px;
	float: left;
	font-size: 14px;
	color: #fff;
	background: #1b4a56;
	cursor: pointer;
	margin-bottom: 30px;
}
.contact_form h3 {
	font-size: 18px;
	color: #333;
	text-transform: uppercase;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: 10px;
}
.dropdown-toggle::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: 0.4em solid !important;
	border-right: .4em solid transparent !important;
	border-bottom: 0;
	border-left: .4em solid transparent !important;
	float: right;
	margin-top: 11px !important;
	color: gray !important;
}
#demo ul li a {
	padding: 0px 31px !important;
	background-color: #e1e1e1;
	font-size: 11px !important;
}
.sublinks_list {
	width: 100%;
	text-align: center;
	margin: 10px 0px;
}
.sublinks_list a {
	font-size: 14px;
	color: #FFF;
	margin: 0px 10px;
	float: left;
}
.footer-title a {
	font-size: 13px;
	color: #CCC;
	margin: 0px 10px;
	text-transform: uppercase;
}
.gallerys {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
}
.gallerys .content-overlay {
	background: rgba(91, 204, 13, 0.5);
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
.gallerys:hover .content-overlay {
	opacity: 1;
}
.content-image {
	width: 100%;
}
.content-details {
	position: absolute;
	text-align: center;
	padding-left: 1em;
	padding-right: 1em;
	width: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.gallerys:hover .content-details {
	top: 50%;
	left: 50%;
	opacity: 1;
}
.content-details h3 {
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.15em;
	margin-bottom: 0.5em;
	text-transform: uppercase;
}
.content-details p {
	color: #fff;
	font-size: 0.8em;
}
.fadeIn-bottom {
	top: 80%;
}
.fadeIn-top {
	top: 20%;
}
.fadeIn-left {
	left: 20%;
}
.fadeIn-right {
	left: 80%;
}
.gallery_Page h3 {
	font-size: 15px;
	color: #fff;
	margin: 0px 0px;
	text-align: center;
	font-weight: 500;
	background: #cfb10b;
	padding: 10px 10px;
}
.content-details a {
	padding: 7px 20px;
	font-size: 12px;
	color: #131313;
	background: #fff;
	text-transform: uppercase;
	border-radius: 30px;
}
.bottm_section h4 {
	margin-top: 12px;
	width: 100%;
	margin-bottom: 5px;
	margin-left: 0px;
}
.inner-banner img {
	width: 100%;
	margin-bottom: 20px;
}
.panel-default {
	width: 100%;
	color: #FFF;
	margin: 5px 0px;
	padding: 0px 0px;
	float: left;
}
.panel-default a {
	color: #FFF;
	font-weight: normal;
}
h6.panel-title {
	padding: 10px 10px;
}
.panel-body {
	padding: 10px 10px;
	background: #F9F9F9;
	float: left;
	width: 100%;
}
.panel-body p {
	font-size: 13px;
	color: #000;
	line-height: 1.8;
}
.panel-body a {
	font-size: 13px;
	color: #1a6e9a;
}
.panel-group {
	margin-top: 15px;
}
.table thead th, tr {
	vertical-align: bottom;
	border-bottom: 2px solid #dee2e6;
	color: #000;
	font-size: 13px;
}
.table thead td {
	color: #000;
	font-size: 13px !important;
}
.right_panel {
	width: 100%;
	text-align: center;
	margin-top: 0px;
	padding: 10px;
	background-color: #f1f8ff;
	margin-bottom: 0px;
	float: left;
}
.right_panel h2 {
	text-align: center;
	font-size: 18px;
	color: #333;
	margin-top: 15px;
	margin-bottom: 14px;
	font-weight: normal;
	text-transform: uppercase;
}
.right_panel h4 {
	text-align: center;
	font-size: 16px;
	color: #1b4a56;
	margin-top: 3px !important;
	font-weight: normal;
}
.right_panel p {
	text-align: center;
	font-size: 13px;
	color: #000;
	margin: 5px 0px;
}
a.apllynow {
	width: 100%;
	margin-top: 5px;
	background: #0062A0;
	color: #FFF !important;
	padding: 8px 10px;
	float: left;
	margin-bottom: 0px;
}
a.apllynow:hover {
}
.left_bottom_panel {
	padding: 10px;
	text-align: center;
	background: #e2a715;
	font-size: 16px;
	text-transform: uppercase;
	width: 100%;
	float: left;
	margin-bottom: 10px;
}
.left_bottom_panel img {
	width: 100px;
}
.left_bottom_panel p {
	color: #FFF;
	margin-top: 10px;
	font-weight: 500;
}
a.pdf {
	padding: 6px 10px;
	background: #EEE;
	color: #333;
}
input.radio {
	margin: 0px 5px;
	position: relative;
	top: -5px;
}
.lft {
	float: left;
	margin: 0px 7px;
	padding: 0px 0px;
}
.lft label {
	float: left;
	font-size: 13px;
	color: #333;
}
.panel-collapse ul li a {
	font-size: 12px;
	padding: 5px 25px;
	background-color: transparent !important;
}
.panel-collapse ul li a:hover {
	color: #fff!important;
	background: #7788bb !important;
}
.sticky img {
	margin-top: 6px !important;
}
.menu-sticky.sticky .rs-offcanvas-link {
	margin-top: 18px !important;
	margin-right: 11px !important;
}
.link {
	font-size: 13px !important;
	color: #1a194f !important;
	text-transform: uppercase;
	border-bottom: 1px solid #b9b9b9;
	padding: 10px 10px;
	width: 100%;
	margin: 0px 0px;
	background: #F6F6F6;
}
.link i {
	float: right !important;
	margin-top: 6px;
	color: #535353;
}
.submenu {
	display: none;
	font-size: 14px;
}
ul.submenu li a {
	padding: 6px 30px;
}
.forms {
	width: 48%;
	float: left;
}
.form_group_search {
	width: 100%;
	float: left;
}
.form_group_search input {
	width: 88% !important;
	float: left;
}
a.search_d {
	padding: 2px 20px !important;
	font-size: 13px !important;
	color: #fff;
	background: #333;
	float: left;
	margin-top: 10px;
	margin-bottom: 20px;
}
a.search_d:hover {
	color: #FFF;
}
.panel-body p i {
	color: #2980b9;
}
.panel-body h6 {
	margin-top: 10px;
	margin-bottom: 5px;
	float: left;
}
.nav-item {
	background: #2980b9;
}
.form_fild {
	width: 100%;
	float: left;
	margin: 10px 0px;
}
.form_fild label {
	width: 100%;
	float: left;
	margin: 5px 0px;
	font-size: 13px;
	color: #333;
}
.form_fild input {
	width: 100%;
	padding: 3px 10px;
	font-size: 12px;
	color: #666;
	border: 1px solid #CCCCCC;
}
.form_fild select {
	width: 100%;
	padding: 7px 10px;
	font-size: 12px;
	color: #666;
	border: 1px solid #CCCCCC;
}
.yesno {
	float: left;
	width: 25%;
}
.yesno input {
	float: left;
	width: 24%;
}
.yesno p {
	font-size: 13px;
	float: left;
	width: 37%;
	line-height: 1.2;
}
.submit button {
	padding: 6px 15px;
	float: right;
	margin: 10px 0px;
	font-size: 14px;
	color: #FFF;
	background: #333;
	border: none;
	cursor: pointer;
}
.footer-share ul li a{border-bottom: none !important;}
.footer-share ul li a:hover {
    background: none !important;
    border-bottom: none !important;
}
a.statutory {
	float: right;
	position: relative;
	top: -27px;
}
.inner-banner h5 {
	position: absolute;
	top: 300px;
	color: #fff;
	text-align: center;
	margin: 0 43%;
	font-size: 30px;
	text-transform: uppercase;
}
.bannerhover {
	padding: 0px 0px; 
}
.cont_details {
	width: 100%;
	float: left;
	margin: 0px 0px;
	padding: 0px;
}
.cont_details p {
	font-size: 14px;
	color: #252424;
	line-height: 1.8;
}
.cont_details h3 {
	font-size: 18px;
	color: #191919;
	margin-top: 15px;
	margin-bottom: 10px;
	font-weight: 500;
}
.cont_details h5 {
	font-size: 24px;
	color: #2b2b2b;
	margin: 15px 0px;
	text-transform: uppercase;
}
ul.points {
	float: left;
	margin-bottom: 10px;
}
ul.points li {
	font-size: 14px !important;
	font-weight: normal !important;
	color: #2b2b2b !important;
	line-height: 1.8 !important;
	display: flex !important;
	margin: 5px 0px !important;
	width: 100%;
    float: left;
}
ul.points li i {
	font-size: 14px !important;
	color: #0062A0 !important;
	line-height: 1.8 !important;
	margin: 0px 5px !important;
}
.services {
	margin-bottom: 30px;
	position: relative;
	background: #f2f3f7;
	padding: 20px 10px;
	z-index: 0;
	height: 157px;
	border: 1px solid #1b4a56;
}
.services .icon {
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	width: 100px;
	height: 50px;
	display: table;
	margin: 0 auto;
	background: #1b4a56;
}
.services .icon::before {
	top: -30px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 50px 30px 50px;
	border-color: transparent transparent #1b4a56 transparent;
}
.services .icon::before, .services .icon::after {
	position: absolute;
	left: 0;
	right: 0;
	content: '';
}
.services .icon i {
	font-size: 30px;
	color: #fff;
	z-index: 1;
	display: table-cell;
	vertical-align: middle;
}
.services .icon::after {
	bottom: -30px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 50px 0 50px;
	border-color: #1b4a56 transparent transparent transparent;
}
.services .icon::before, .services .icon::after {
	position: absolute;
	left: 0;
	right: 0;
	content: '';
}
.boxes {
	width: 30%;
	float: left;
	margin: 0px 10px;
}
.boxlist {
	margin-top: 10px;
	float: left;
	padding: 10px 10px;
	background: #fff;
	width: 100%;
	border: 1px solid #cbcbcb;
	margin-bottom: 20px;
}
.boxlist ul {
	width: 100%;
	float: left;
	margin: 0px 0px;
}
.boxlist ul li {
	font-size: 16px;
	color: #191919;
	margin: 5px 0px;
	font-weight: 500;
	display: flex;
}
.boxlist ul li i {
	font-size: 16px;
	color: #0062A0;
	margin: 3px 4px;
}
.desc p {
	margin-top: 50px;
	font-size: 14px;
}
.fa-browser::before {
	content: "\f37e";
}
.icon img {
	margin-top: 5px;
}
.right_panel_sction {
	width: 100%;
	float: left;
}
.admisions {
	width: 100%;
	text-align: center;
	background: #f2f2f2;
	padding: 10px 0px;
}
.admisions h3 {
	font-size: 18px;
	color: #333;
	margin: 10px 0px;
	text-transform: uppercase;
	font-weight: normal;
}
.admisions p span {
	font-size: 15px;
	color: #ff2768;
	font-weight: normal;
}
.admisions p {
	font-size: 14px;
	color: #333;
	font-weight: normal;
}
.progresbar {
	margin-top: 40px;
	float: left;
	width: 100%;
	background: #f2f2f2;
	padding: 10px;
}
#accordian {
	background: #fefefe;
	width: 100%;
	color: white;
}
#accordian h3 {
}
#accordian h3 a {
	padding: 5px 20px;
	font-size: 12px;
	line-height: 34px;
	display: block;
	color: #0d0d0d;
	text-decoration: none;
	font-weight: normal;
	text-transform: uppercase;
	border-bottom: 1px solid #d1d1d1;
}
#accordian h3 a:hover {
	background: #0062A0;
	transition: all ease 0.5s;
	color: #FFF;
}
#accordian h3:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
#accordian li {
	list-style-type: none;
}
#accordian ul ul li a, #accordian h4 {
	color: white;
	text-decoration: none;
	font-size: 11px;
	line-height: 27px;
	display: block;
	padding: 0 15px;
	transition: all 0.15s;
	position: relative;
	text-transform: uppercase;
}
#accordian ul ul li a:hover {
	background: #05578A;
	border-left: 5px solid #fff;
}
#accordian ul ul {
	display: none;
}
#accordian li.active>ul {
	display: block;
}
#accordian ul ul ul {
	margin-left: 15px;
	border-left: 1px dotted rgba(0, 0, 0, 0.5);
}
#accordian a:not(:only-child):after {
	content: "\f104";
	font-family: fontawesome;
	position: absolute;
	right: 10px;
	top: 0;
	font-size: 14px;
}
#accordian .active>a:not(:only-child):after {
	content: "\f107";
}
#accordion .panel-heading {
	padding: 0;
}
#accordion .panel-title > a {
	display: block;
	padding: 0.4em 0.6em;
	outline: none;
	font-weight: bold;
	text-decoration: none;
}
#accordion .panel-title > a.accordion-toggle::before, #accordion a[data-toggle="collapse"]::before {
	content: "\e113";
	float: left;
	font-family: 'Glyphicons Halflings';
	margin-right : 1em;
}
#accordion .panel-title > a.accordion-toggle.collapsed::before, #accordion a.collapsed[data-toggle="collapse"]::before {
	content: "\e114";
}
.infograph {
	width: 100%;
	float: left;
	margin-top: 20px;
	background-color: #fafafa;
	border: 1px solid #f1e4e8;
}
.infograph p {
	font-size: 14px;
	color: #333;
	text-align: center;
	margin: 10px 0px;
}
.c-pie {
	height: 200px;
	transform: rotate(-90deg);
}
.c-pie-cont {
	display: inline-block;
	position: relative;
	margin-bottom: 10px;
	margin-left: 76px;
	margin-top: 0px;
}
.c-pie-text {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 24px;
	transform: translate(-50%, -50%);
}
.c-pie-text--2 {
	display: inline-block;
	padding: 5px 12px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
}
.Wnaplcation {
	width: 100%;
	float: left;
	margin: 0px;
	padding: 0px;
}
.Wnaplcation a {
	padding: 10px 10px;
	float: left;
	margin: 5px 0px;
background:#/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,207cca+47,207cca+47,2989d8+50,7db9e8+100 */
background: #1e5799; /* Old browsers */
	background: -moz-linear-gradient(45deg, #1e5799 0%, #207cca 47%, #207cca 47%, #2989d8 50%, #7db9e8 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #1e5799 0%, #207cca 47%, #207cca 47%, #2989d8 50%, #7db9e8 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #1e5799 0%, #207cca 47%, #207cca 47%, #2989d8 50%, #7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8', GradientType=1 ); /* IE6-9 fallback on horizontal gradient */;
	color: #fff;
	font-size: 15px;
	width: 100%;
}
.Wnaplcation a:hover {
	color: #FFF;
background:#/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,207cca+47,207cca+47,2989d8+50,7db9e8+100 */
background: #1e5799; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #1e5799 0%, #207cca 47%, #207cca 47%, #2989d8 50%, #7db9e8 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #1e5799 0%, #207cca 47%, #207cca 47%, #2989d8 50%, #7db9e8 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #1e5799 0%, #207cca 47%, #207cca 47%, #2989d8 50%, #7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8', GradientType=1 ); /* IE6-9 fallback on horizontal gradient */;
}
.Wnaplcation a img {
	color: #FC0;
	margin: 0px 10px;
}
#accordian a i {
	float: right;
	margin-top: 10px;
}
.cont_details h3 span {
	font-size: 22px;
	color: #1A1A1A;
	margin-top: 15px;
	margin-bottom: 10px;
	font-weight: 500;
}
.video {
	width: 60%;
	float: left;
	margin: 0px 10px;
}
.videocontant {
	width: 46%;
	float: left;
	margin: 0px 10px;
}
.videocontant h3 {
	font-size: 22px;
	color: #1A1A1A;
	margin-top: 15px;
	margin-bottom: 10px;
	font-weight: 500;
}
.box_s_l {
	width: 100%;
	float: left;
	margin-bottom: 20px;
	text-align: center;
}
.box_s_l img {
	width: 80%;
	margin: 0 auto;
}
.box_s_l h5 {
	font-size: 16px;
	color: #1c1c1c;
	margin-bottom: 20px !important;
	margin-top: 0px !important;
	text-align: center;
	background-color: #eee;
	padding: 10px 0px;
	font-weight: normal;
}
.logo_panel {
	width: 18%;
	padding: 10px 0px;
	float: left;
	margin: 0px 10px;
}
.logo_panel img {
	border: 1px solid #CCC;
	padding: 10px;
}
.logo_panel h2 {
	font-size: 18px;
	color: #333;
	margin: 0px 10px;
}
.profile img {
	text-align: center;
	margin: 0 22%;
}
a:hover, a:focus {
	text-decoration: none;
	outline: none;
}
#accordion .panel {
	border: none;
	box-shadow: none;
	border-radius: 0;
	margin-bottom: 6px;
}
#accordion .panel-heading {
	padding: 0;
}
#accordion .panel-title a {
	display: block;
	padding: 15px 18px;
	background: #fff;
	font-size: 18px;
	font-weight: bold;
	color: #454441;
	border: 1px solid #eaeaea;
	border-left: 3px solid #0062A0;
	position: relative;
	font-weight: normal;
}
#accordion .panel-title a.collapsed {
	color: #333;
}
#accordion .panel-title a:before, #accordion .panel-title a.collapsed:before {
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	display: none;
	font-weight: 900;
	font-size: 14px;
	color: #333;
	line-height: 24px;
	position: absolute;
	top: 23px;
	right: 25px;
}
#accordion .panel-title a.collapsed:before {
	content: "\f106";
}
#accordion .panel-title a:hover, #accordion .panel-title a.collapsed:hover, #accordion .panel-title a:before, #accordion .panel-title a:hover:before {
	color: #fbc02d;
}
#accordion .panel-body {
	padding: 15px 27px;
	font-size: 14px;
	color: #808080;
	line-height: 23px;
	border: 1px solid #eaeaea;
	border-top: none;
	border-left: 3px solid #eaeaea;
}
#accordion .panel-body p {
	margin-bottom: 0;
}
#accordion .panel-title a span {
	font-size: 16px !important;
	color: #333 !important;
	margin: 0px 10px;
}
.panel-body span {
	font-size: 18px !important;
	color: #fff !important;
	margin: 0px 10px;
	float: left;
}
.canvasjs-chart-toolbar {
	display: none;
}
.spce {
	margin-top: 20px;
	float: left;
}
.box2 {
	width: 22%;
	float: left;
	margin: 0px 10px;
	background: #F4F4F4;
	padding: 5px;
	margin-bottom: 20px;
	border: 1px solid #d9d6d6;
	transition: all ease 0.5s;
}
.box2:hover {
	transition: all ease 0.5s;
	opacity: 0.8;
}
.box2 h6 {
	font-size: 15px;
	color: #333;
	text-transform: uppercase;
	margin: 10px 0px;
	text-align: center;
	font-weight: 500;
}
.lstbox {
	float: left;
	margin: 10px 5px;
	width: 31%;
}
.lstbox a {
	width: 100%;
	background: #0062A0;
	padding: 10px 6px;
	text-align: center;
	color: #fff;
	font-size: 13px;
	float: left;
}
.lstbox2 {
	float: left;
	margin: 10px 5px;
	width: 30%;
}
.lstbox2 a {
	width: 100%;
	background: #FE881A;
	padding: 10px 6px;
	text-align: center;
	color: #fff;
	font-size: 13px;
	float: left;
}
.lstbox3 {
	float: left;
	margin: 10px 5px;
	width: 30%;
}
.lstbox3 a {
	width: 100%;
	background: #242425;
	padding: 10px 6px;
	text-align: center;
	color: #fff;
	font-size: 13px;
	float: left;
}
.list_section {
	width: 100%;
	float: left;
	margin: 0px 5px;
	margin-bottom: 18px !important;
}
.box3 {
	width: 22%;
	float: left;
	margin: 0px 10px;
	background: #F4F4F4;
	padding: 5px;
	margin-bottom: 20px;
	border: 1px solid #d9d6d6;
	transition: all ease 0.5s;
}
.box3:hover {
	transition: all ease 0.5s;
	opacity: 0.8;
}
.box3 h6 {
	font-size: 15px;
	color: #333;
	text-transform: uppercase;
	margin: 10px 0px;
	text-align: center;
	font-weight: 500;
}
.boxeslixt {
	margin-top: 20px;
}
.blogs {
	width: 100%;
	float: left;
	margin-top: 15px;
	margin-bottom: 15px;
	background: #fff;
	padding: 10px;
	
}
.blogs h6 {
	font-size: 24px;
	color: #333;
	margin-bottom: 15px;
}
.blogs h5 {
	font-size: 18px;
	color: #0062A0;
	margin: 10px 0px;
	font-weight: normal;
}
.blogs p {
	font-size: 14px;
	color: #333;
	margin: 0px 0px;
	font-weight: normal;
	margin: 10px 0px;
}
.blogs h6 i {
	font-size: 24px;
	color: #0062A0; display:none;
}
.blogs a {
	font-size: 14px;
	color: #F90;
	margin: 10px 0px;
	font-size: 14px;
	color: #FFF;
	margin: 10px 0px;
	padding: 7px 10px;
	background-color: #0062A0;
}
.blogs a:hover {
	color: #FFF;
}
.post {
	margin: 0px;
	padding: 0px;
}
.imaghover {
	width: 100%;
	float: left;
	background-size: cover !important;
	background-color:#f8f8f8;
	height: 100%;
	margin-bottom: 40px;
	padding-bottom: 30px;
}
.blogs_side {
	width: 100%;
	float: left;
	margin-top: 15px;
	margin-bottom: 15px;
	background: #fff;
	padding: 10px;
	height: 100%;
}
.blogs_side ul li {
	padding: 10px 10px;
	float: left;
	width: 100%;
	border-bottom: 1px solid #CCC;
	font-size: 14px;
	color: #000;
	display: flex;
}
.blogs_side ul li a {
	color: #000;
}
.blogs_side ul li i {
	color: #0062A0;
	line-height: 1.8;
	margin: 0px 5px;
}
.post h4 {
	width: 100%;
	padding: 5px 10px;
	background-color: #0062A0;
	color: #FFF;
	font-weight: 500; text-align: center;
}
/*======================================================================================================================================

														Aryan css
	
========================================================================================================================================*/

/*====================================================================
							Top Banner
======================================================================*/
.page-heading {
	background-position: center bottom;
	background-repeat: repeat;
	background-size: cover;
	background-position: 50% 15%;
	width: 100%;
	float: left;
}
.page-heading {
	position: relative;
	background-color: #000; height: 550px;
} 
.headinginn {
	background-color: #000; height: 250px;
}
.page-heading .page-overlay {
	background-color: rgba(17,24,42,0.1);
}
.page-heading .page-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.page-heading .page-titles-wrap {
	padding-top: 90px;
	padding-bottom: 80px;
}
.page-heading .breadcrumbs {
	border-bottom: none;
	border-top: 1px solid rgba(255,255,255,.08);
}
.breadcrumbs {
	background-color: rgba(255,255,255,0.08);
}
.breadcrumbs {
	position: relative;
	margin-top: 0;
	z-index: 2;
	border-bottom: 1px solid rgba(0,0,0,.08);
	background-color: rgba(255,255,255,.08);
}
.breadcrumbs .breadcrumb {
	display: inline-block;
	background-color: transparent;
	margin-bottom: 0px;
}
.breadcrumbs .breadcrumb span {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	-webkit-transition: color 100ms ease-in-out;
	transition: color 100ms ease-in-out;
}
.breadcrumbs .breadcrumb span {
	color: #fff;
}
.page-heading .page-title {
	margin: 0;
	font-size: 40px;
	color: #fff;
	line-height: 1.25;
	letter-spacing: -.5px;
	text-shadow: 0 1px 5px rgba(0,0,0,.2);
	word-wrap: break-word;
}
.page-heading .page-titles-wrap {
	position: relative;
	padding: 135px 0;
	z-index: 2;
}
@media (min-width: 576px) {
.breadcrumbs .breadcrumb>span {
	padding: 18px 0;
}
}
.breadcrumbs .breadcrumb a::after {
	position: relative;
	margin-left: 15px;
	content: "\f105";
	font-family: "FontAwesome";
	color: rgba(255,255,255,.5);
}
.breadcrumbs .breadcrumb a {
	position: relative;
	display: inline-block;
	margin-right: 10px;
}
.page-heading .page-subtitle {
	margin: 0;
	color: #fff;
	font-size: 16px;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    perspective: 1500px; 
}


#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: linear-gradient(to right, #281c5f, #ff2768);
    color: #fff;
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: bottom left; height: 100%; z-index: 99;
}
#sidebar h2 {font-size: 18px; color: #fff; text-transform: uppercase; padding:3rem 0; text-align: center; font-weight:700;  }
#sidebar.active {
    margin-left: -250px;
    transform: rotateY(100deg);
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}

#sidebar ul.components { padding-bottom:20px;
   
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 6px 10px;
    display: block;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #8a324d;
    font-weight: 500;
}
#sidebar ul li a:hover {
    color: #020202;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="false"] {
    color: #fff;
    background: #1c1d15;
}


a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 30%;
    right: 20px;
    transform: translateY(-50%);
}
ul.main-nav > li:hover > a {
    color: #333 !important; background:#fff;
    font-weight: 600;
}
ul.main-nav > li:hover > span::after {
    color: #333 !important; border-color:#000;
}
ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article, a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}



/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    width: 100%;
    transition: all 0.3s;
}

#sidebarCollapse {
width: 50px;
height: 50px;
background: #ff2768;
cursor: pointer;
border: none;
float: left;
position: fixed;
top: 58%;
}

#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #fffcfc;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
    transition-delay: 0.2s;
}

#sidebarCollapse span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
    opacity: 0;
}
#sidebarCollapse span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
}


#sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 9px auto;
}


/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
        transform: rotateY(90deg);
    }
    #sidebar.active {
        margin-left: 0;
        transform: none;
    }
    /*#sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }
    #sidebarCollapse.active span {
        margin: 0 auto;
    }
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 0;
    }
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(-45deg) translate(1px, -1px);
    }*/

}

/*=============================================================
						Section Block		
===============================================================*/

.section-background-block {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	overflow: hidden
}
.section-background-block.background-image {
	background-size: cover;
	background-position: center center;
}
.section-background-block.background-image1 {
	background-position: center top;
}
.section-background-block.background-fixed {
	background-attachment: fixed
}
.ff-section-fullwidth {
	position: relative;
	background: no-repeat center center
}
.ff-section-fullwidth.dark-bg {
	background-color: #181818;
	color: #fff
}
.parallax {
	background-attachment: fixed!important;
	-webkit-background-size: cover!important;
	background-size: cover!important
}
.top-banner-botm-area {
	padding: 1% 0;
}
/**** Creative Wrapper ****/
.creative-wrapper {
	width: 100%;
}
.creative-wrapper h2 {
margin-bottom: 1px;
color: #0062A0;
font-weight: 500;
margin-top: 10px; font-size: 30px;
}
.creative-wrapper h3 {
	color: #333;
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 5px;
	padding: 0;
}
.creative-wrapper .line {
	background: #1d2833 none repeat scroll 0 0;
	display: inline-block;
	height: 1px;
	margin: 13px 0;
	width: 100px;
}
.creative-wrapper h4 {
	color: #1d2833;
	font-size: 18px;
	font-weight: 500;
	margin: 5px 0;
	padding: 0;
	text-transform: uppercase;
}
.creative-wrapper p {
	color: #1d2833;
	font-size: 15px;
	margin: 0;
	padding: 0;
}
.creative-wrapper [class*="col-sm-"] {
margin: 0 0 10px;
}
.creative-text.bor {
	padding: 0 30px 0 0;
	position: relative;
}
.creative-img.bor-lft {
	padding: 0 0px 0 30px;
	position: relative;
}
.creative-img.bor-lft:before {
	content: "";
	height: 100%;
	position: absolute;
	left: 0;
	top: 0px;
	width: 1px;
	background: #8e9399;
}
.creative-text.bor1 {
	padding: 0 0 20px 30px;
	position: relative;
}
.creative-text.bor:before {
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0px;
	width: 1px;
	background: #8e9399;
}
.creative-text.bor1:before {
	content: "";
	height: 93%;
	position: absolute;
	left: 0;
	top: 0px;
	width: 1px;
	background: #8e9399;
}
.team-area {
	padding: 5% 0;
	margin-bottom: 2rem;
}
.team-area h2 {
	font-size: 30px;
	margin-bottom: 20px;
	color: #0062A0;
}
.team-area .inner-content {
	background-color: rgba(255, 255, 255, 1);
	padding: 45px;
	max-width: 87%;
}
.bg-overlap.right {
	background-size: 90%;
	background-repeat: no-repeat;
	background-position: 0 50%;
}
.bg-overlap.lft {
	background-size: 90%;
	background-repeat: no-repeat;
	background-position: 100% 50%;
}
.hr-connect {
	padding: 5% 0 5% 5%;
	margin-bottom: 2rem;
}
.hr-connect h2 {
	font-size: 42px;
}
.hr-connect .inner-content {
	background-color: rgba(255, 255, 255, 1);
	padding: 45px 45px 45px 100px;
	max-width: 87%;
}
.apply-now {
	padding: 3% 0;
	text-align: center;
	color: #fff; margin-top: 40px !important;
}
.apply-now-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5)
}
.apply-now .admision {
	width: 100%;
	text-align: center;
	padding: 10px 0px;
}
.apply-now .admision h3 {
	font-size: 30px;
	color: #000;
	margin: 10px 0px;
	text-transform: uppercase;
	font-weight: normal;
}
.apply-now .admision p span {
	color: #fff;
	font-weight: normal;
	font-size: 16px;
}
.apply-now a {
	color: #fff;
}
.apply-now .admision p {
	font-size: 14px;
	color: white !important; margin: 8px 0px !important;
	font-weight: normal;
}
.apply-now .btn {
	border-radius: 0px;
	line-height: 40px;
	padding-left: 25px;
	padding-right: 25px;
	border-color: #fff; margin-top: 10px;
	color: #fff;
}

.sectionTitle {
    margin-bottom: 25px;
    text-align: left;
    margin-left: 0px;
    margin-right: 0px;
	position: relative;
}

.sectionTitle::after {
    background: #9a9a9a none repeat scroll 0% 0%;
    content: "";
    display: block;
    width: 94px;
    height: 2px;
    margin: 12px auto;
}
.apply-now  h2 { text-align: center; font-weight:700; color: #fff;}

.after-school {padding: 1% 0 !important;}
.after-school h2 { text-align: center; font-weight:7000}

span.sbmenu{ font-size:14px; color:#333; margin: -5px 16px;}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #0062A0 !important;
    border-color: #0062A0 !important;
}






.tabs_wrapper{margin:40px 0px;}
.tab_content h2{font-size:24px;color:#000; margin:10px 0px;}
.tab_content p{font-size:14px;color:#000; margin:10px 0px;}
.active{background: #FFF;}




/* ----------- History Section */
.bgs{background-image: url(images/history/hsbg.jpg);
background-size: cover;
background-attachment: fixed;
background-position: center top; padding: 40px 0px; margin: 30px 0px;}

#tabs {
overflow: hidden;
width: 100%;
margin: 0;
padding: 0;
list-style: none;
}
#tabs li {
float: left;
margin: 0 -15px 0 0;
}
#tabs a {
    float: left;
    position: relative;
    padding: 0 14px;
    height: 0;
    line-height: 30px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #067bce;
    border-bottom-color: rgb(6, 123, 206);
    border-bottom-color: #777\9;
    opacity: .8 !important;
    filter: alpha(opacity=30);
    font-size: 13px;
}
#tabs a:hover,  #tabs a:focus {
border-bottom-color: #2ac7e1;
opacity: 1;
filter: alpha(opacity=100);
}
#tabs a:focus {
outline: 0;
}
#tabs #current {
z-index: 3;
border-bottom-color: #fc9600;
opacity: 9 !important;
filter: alpha(opacity=100);
}
/* ----------- */
#content {
background: #fff;

}

#content p {
font-size: 14px;
color: #414141;
line-height: 26px !important; font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* Demo page only */
#about {
color: #999;
text-align: center;
font: 0.9em Arial, Helvetica;
}
#about a {
color: #777;
}
/* ----------- History Section */
.rs-about{margin-top:30px;}
.team-img img{width: 300px;
height: 260px;
border-radius: 100%;
border: 5px solid #dad7d7;
transition: all ease 0.5s;}
.team-img img:hover{ border:1px solid red; border-radius:100%; transition:all ease 0.5s;}


.timeline-1 .timeline-item {
  background: #fff;
  border: 0;
}
.timeline-detail h4{margin:10px 0px; width:100%; font-size:24px; color:#333;}
.timeline-detail p{margin:10px 0px; width:100%; font-size:14px; color:#333;}

#colorlib-main {
    width: 100%;
    float: right;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.footer-share{/*margin-top:40% !important;*/ position:absolute; bottom: 21px; width:100%;}
.footer-top{margin-top:0;}
.footer-top ul li a{width: 35px;
float: left;
height: 35px;
margin: 0px 4px;
line-height: 1;
text-align: center;
border-radius: 100%;}
.footer-top ul{margin-left:20px;}
.footer-top h4{font-size:16px; color:#FFF; margin:15px 0px; text-align:center; margin-top: 35% !important}
.footer-share ul li a i{font-size:22px !important;
line-height: 0.8;
text-align: center;}

#sidebarCollapse2 {
    width: 32px;
     height: 32px;
	background: linear-gradient(to right, #ff2768, #281c5f);
    cursor: pointer;
    border: none; float:right;
}
#sidebarCollapse2 span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse2 span:nth-of-type(2) {
    opacity: 0;
}
#sidebarCollapse2 span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
}
#sidebarCollapse2 span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #fffcfc;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
        transition-delay: 0s;
    transition-delay: 0.2s;
}


a.linkbox{ padding:5px 10px; float:left; margin-left:18px; background:#0062A0; color:#FFF; }
a.linkbox:hover{ color:#FFF;}

.seprat{ margin-left:0px; padding:10px 0px;}


.right_p {
    width: 100%;
    text-align: center;
    margin: 0px 0px;
    padding: 14px 0px;
    background: #F5F5F5;
}
.right_p h2 {
    font-size: 16px;
    color: #333;
    margin: 0px 0px;
    font-weight: 600;
}
.right_p h3 {
    font-size: 15px;
    color: #333;
    margin: 15px 0px;
}
.right_p p {
    font-size: 14px;
    color: #333;
}
a.apllynow {
    width: 100%;
    margin-top: 5px;
    background: #ff2768;
    color: #FFF !important;
    padding: 8px 10px;
    float: left;
    margin-bottom: 20px;
}




.wrapper2{
    margin-top: 21px;
    background-color: #F5F5F5;
    padding: 0px 10px;
}
.skill {
        margin-bottom: 35px;
        position: relative; margin-top: 5px !important;
			
    }
    .skill > p {
        font-size: 18px;
        font-weight: 700;
        color: #1a1716;
        margin-bottom: 15px !important;
    }
    .skill:before{
        width: 100%;
        height: 5px;
        content: "";
        display: block;
        position: absolute;
        background: #959595;
        bottom: 0;
    }
    .skill-bar {
        width: 100%;
        height: 5px;
        background:#f4392f;
        display: block;
        position: relative;
    }

    /* SKILL 1 */
    .skill1{
        width: 95%;
			
    }
    .skill-bar span{
        position: absolute;
        top: -30px;
        padding: 0;
        font-size: 18px;
        padding: 3px 0;
        font-weight: 500;
    }
    .skill-bar {
        position: relative;
			
    }

    .skill1 .skill-count1 {
        right: 0;
    }
    /* SKILL 2 */
    .skill2{
        width: 85%;
    }

    .skill2 .skill-count2 {
        right: 0;
    }
    /* SKILL 3 */
    .skill3{
        width: 75%;
    }
    .skill3 .skill-count3 {
        right: 0;
    }

    /* SKILL 4 */
    .skill4{
        width: 65%
    }

    .skill4 .skill-count4 {
        right: 0;
    }

    /* SKILL 5 */
    .skill5{
        width: 80%;
    }

    .skill5 .skill-count5 {
        right: 0;
    }

    /* SKILL 6 */
    .skill6{
        width: 90%
    }

    .skill6 .skill-count6 {
        right: 0;
    }
/* GITHUB SOURCE STYLE  */
.github-source{
	float:right;
	display:block;
	color:#fff;
	margin:0 20px;
	position: relative;
	z-index:999999;
	top:0;
}
.github-source i{
	font-size:50px;
	color:#000
}
span.sbmenu a{color:#333; font-size:13px;}






.menu-sticky2.sticky2 {
    top: 0px;
    z-index: 999;
    margin: 0 auto !important;
    padding: 0;

    -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;

}

#sidebar2{min-height:100% !important; z-index:999 !important; column-fill:auto;}

.timeline-dots{transform: translate3d(50px, 0px, 0px) !important;}














img{max-width:100%;}

.do-circle p {
font-size: 11px;
color: #FFF;
line-height: 1.5;
margin-top: 25px;
padding: 10px;
}
.do-circle {
  border-radius: 50%;
}

.do-item {
  width: 100%;
  position: relative;
}

.do-item-circle {
width: 100%; text-align: center;
}

.do-item-square {
width: 250px;
height: auto;
position: relative;
height: 250px;
}

.do-info-wrap {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  transition: all 0.4s ease-in-out;
  perspective: 800px;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 3px rgba(115, 114, 115, 0.2);
}

.do-info {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform-style: preserve-3d;
}

.do-info > div {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.do-info .do-info-back {
  transform: rotate3d(0, 1, 0, 180deg); background:rgba(0, 0, 0, 0.7);
}

.do-info h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin: 0 15px;
  padding: 40px 0 0 0;
  height: 90px;
  font-family: 'Open Sans', Arial, sans-serif;
  text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, 0.3);
}

.do-info-back {
  text-align: center;
}

.do-info-back > div {
  color: #fff;
  padding: 10px 5px;
  margin: 0 30px;
  font-size: 12px;
  border-top: 1px solid #fff; margin-top: 62px;
}

.do-item:hover .do-info-wrap {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), inset 0 0 3px rgba(255, 255, 255, 0.8);
}

.do-item:hover .do-info {
  transform: rotate3d(0, 1, 0, -180deg);
}

.since h4{text-align:center; font-size:18px; color:#fff; margin:10px 0px;}


.owl-item{background-color:transparent;}


.main_footer{margin-top: 92px !important; padding-top:150px !important;}
.right_icon {
    float: right;
    position: relative;
    top: -30px;
    left: 33px;
}
.right_icon img {
    position: relative;
    left: 38px;
}

.bor-lft img{width:100%;}


















.result_section{margin: 20px 0px;
float: left;
width: 100%;}
.result_section h2{ font-size: 30px;
color: #000;
font-weight: normal; margin-bottom:15px;}
.res_sections{width:100%; float:left; margin:20px 0px; }
.res_sections h3{ font-size:22px; color:#333;}
.res_sections h4{ font-size:18px; color:#333; margin:20px 0px; float:left; width:100%; font-weight:500;}
.res_sections p{ font-size:14px; color:#333; width:100%; font-weight:normal;}
.res_sections a{ font-size:13px; color:#fff; background:#ff2768; padding:5px 15px; float:left;}
.res_sections a:hover{ color:#FFF;}
.res_sections img{margin:10px 0px;}
.single-blog-details .like-section h5, .single-blog-details h5.top-title {
    font-size: 28px !important;
    color: #212121 !important;
    margin: 20px 0 15px !important;
    padding: 0 !important;
    line-height: 25px !important;
    font-weight: 500 !important;
}
.single-blog-details h4{font-size: 18px;
color: #333;
margin-bottom: 15px;
font-weight: 500;
margin-top: 10px;
float: left;
width: 100%}

.more_details{float:right;}
.more_details a{float:right; font-size:13px; color:#FFF; background:#ff2768; padding:3px 15px;}
.more_details a:hover{ color:#FFF;}
.blkdetils{margin-bottom:20px; float:left; width:100%;}
.sidebar-area .cate-box {
    margin-bottom: 45px !important;
}
.sidebar-area .title {
    font-size: 20px !important;
    color: #fbfafa !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    display: block !important;
    margin-bottom: 25px !important;
    padding: 10px 10px !important;
    background-color: #ff2768 !important;
}

.sidebar-area .cate-box ul li a {
    color: #505050;
    padding: 0 0 0 5px;
    display: flex !important;
}
.cate-box ul li i{float: left !important;
line-height: 1.5;
color: #ff2768;}
.blkdetils img{margin:10px 0px;}




.section-padding{ padding:60px 0;}
.sec-paddtop{ padding-top:60px;}
.educator-sectio { width:100%; padding:4% 0 2% 0;}
.educator-sectio  h2 {  font-size:44px;  text-align: center; color: #0062A0;}

.educator-sectio-below { background:#f2f2f2; width:100%; padding:2% 0;}
.educator-sectio-below  .box-detail { text-align: center; padding:2rem;}
.educator-sectio-below  .box-detail h2 { text-align: center; font-size:45px; color: #0062A0; font-weight:500;}
.educator-sectio-below  .box-detail h5 { font-size:14px;}
.educator-sectio-below .border-rgt { border-right: 2px solid #e9e9e9;}

ul.homelink{ list-style:none; display:flex; margin:20px 0 !important;}
ul.homelink li{ margin:0 10px; width:32%; text-align:center;}
ul.homelink li a{ text-decoration:none; color:#FFF;  height:60px; line-height:60px; display:block;}
ul.homelink li.inter{ background:#ff2768;}
ul.homelink li.indi{ background:#4d4e47;}
ul.homelink li.sport{ background:#171810;}


.hiring-list td{ font-size:14px; text-align:center; color:#666 !important}
.hiring-list td:first-child{ text-align:left;}
.hiring-list th{ font-size:16px !important; text-align:center; color:#333 !important;}
.hiring-list th:first-child{ text-align:left;}
.shot-detail .btn{ margin-top:15px;	}
.hiring-list p{ font-size:16px; font-weight:bold;}

.job-detail{ min-height:500px;}
.job-detail .content { /*padding:60px; background:#fff; border: 1px solid #e9e9e9;*/ margin-bottom:40px;}
.job-detail .content  ul { padding-left:0px;}
.job-detail .content  ul li{ list-style-type: none; padding:0 15px; position: relative;}
.job-detail .content  ul li:before { position: absolute; left:0; top:0; color: #ff2768; content:"\f101"; font-family:'FontAwesome';}

.job-detail .content  ul li ul{ padding-left:10px;}
.job-detail .content  ul li ul li{ list-style-type:square; padding-left:0px;}
.job-detail .content  ul li ul li:before { display:none;}
.shot-detail {}
.shot-detail ul { padding-left:0;}
.shot-detail ul li {
    overflow: hidden;
    vertical-align: middle;
    display: block;
	padding-top:10px !important;
	padding-bottom:10px !important;
	padding-left:0px !important; padding-right:0px !important;
    border-bottom: 1px solid #c8c8c8;
}
.shot-detail ul li:before { display: none}
.shot-detail ul li .con { color: #F00;}
h3.titles {
    position: relative;
    padding-bottom:10px;
    margin-bottom: 20px;
}
h3.titles:after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 80px;
    background: #000;
    content: '';
}

.btn-apply {

    color: #ff2768;
    border: 1px solid #ff2768;
    border-radius: 0px;

}
.btn-apply:hover { background:#ff2768; color: #fff;}

ul.lists{ margin-bottom:20px;}
ul.lists li{ position:relative; padding-left:20px; font-size: 14px;}
ul.lists li:before {
    position: absolute;
    left: 0;
    top: 0;
    color: #ff2768;
    content: "\f101";
    font-family: 'FontAwesome';
}

ul.lists li ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    color: #333; font-size:10px;
    font-family: 'FontAwesome';
}
.footer-powerd{ text-align:center; width:100%; font-size:12px; padding-bottom: 20px;}
.footer-powerd a{color:#FFF !important;}

.login-section { padding: 5% 0;  float: left; width:100%; position: relative; }
/*.login-section:before { position: absolute; top:0; left:0; height:100%; width:100%; background-color:rgba(255, 39, 104, 1); content:''; }*/

.login-form { background-color: transparent; width:100%; margin:5% 0; display:table; height:50vh;}
.login-form .login-form-inn { display:table-cell; vertical-align:middle; position: relative; box-shadow: 0 0 10px rgba(0,0,0,0.2); border-radius: 10px; padding: 30px 70px; text-align: center;}

.login-form h1 { text-align: center; font-size:30px; line-height:70px; font-weight:700; color: #000; text-transform:uppercase;}
.login-form a { color: #ff2768;}
.login-form p{margin-bottom:0px !important; }
.login-form .form-group { margin-bottom:0px;}
.login-form input, .login-form select { border-radius: 50px !important;	}
.login-form .form-control { font-size:13px; height:45px; padding: 10px 20px;}
.login-form .btn-primary { background-color: #ff2768; border-color: #ff2768;}
.btn-default {
background: linear-gradient(to right, #ff2768, #281c5f) !important;
text-transform: uppercase;
float: left;
padding:6px 21px !important;
color: #fff;
border-radius: 0px !important;
}
button.btn-default:hover{background: linear-gradient(to right, #281c5f, #ff2768) !important;}


ul.components li.current_page_item a {
    color: #fff !important;
    background: #ff2768;
}




.share { position:fixed; top:92%; right:0px; z-index: 9999999999; background-color: white; border-bottom-left-radius: 30px;}


.share > a {
display: inline-block;
padding: 6px 10px !important;
z-index: 1;
font-weight: bold;
color: #112255;
border-radius: 3px;
font-size: 16px;
}

.share > a:hover {

}

.share div {
position: absolute;
width: 110px;
height: 8px;
overflow: hidden;
left: 0px;
bottom: -48px;
-webkit-transition: all 150ms linear;
-moz-transition: all 150ms linear;
-o-transition: all 150ms linear;
transition: all 150ms linear;
}

.share:hover div {
	height:200px;
	/*
	 * 26px (height of <li>) times the number of <li>s, plus 16px for grippy
	 */
}

.share ul {
	position: absolute;
bottom: 86px;
left: 0;
padding-left:0;
background: #56A0F9;
z-index: 9999;
}

.share ul::before {

}

.share ul::after {
	content: '.';
	
	display: block;
	background: #fff;
	width: 5px;
	height: 5px;
	position: absolute;
	bottom: -2px;
	left: 42px;
	border-radius: 15px;
	border: 1px solid #666;
	box-shadow: 0 -1px 0 rgba(255,255,255,0.5);
	z-index: 0;
}

.share.orange ul {
	background: #FF8100;
}

.share.orange ul::before {
	background: #FF8100;
}

.share.yellow ul {
	background: #B4E12C;
}
.share.yellow ul::before {
	background: #B4E12C;
}

.share.black ul {
	background: #2C2D32;
}
.share.black ul::before {
	background: #2C2D32;
}

.share:hover ul {
	bottom: none;
}

.share ul li {
	list-style: none;
	
}

.share ul li a {
display: block;
padding: 1px 10px !important;
color: #fff;

text-shadow: 0 1px 0 rgba(0,0,0,0.25);

border-bottom: 1px solid #ccc;
}

.share ul li a:hover {
	text-decoration: underline;
}


a.footer_link_s{color:#fff;}

.btn-default:hover{background:#000 !important; color:#fff !important;}








.content-quality{float:left;width:193px;}
.content-quality p{margin-left:10px;font-family:'Open Sans', sans-serif;font-size:14px;font-weight:600;line-height:17px;}
.content-quality p span{display:block;}
.tabtop li a{font-weight:500;color:#1b2834;border-radius:0px;margin-right:22.008px;border:1px solid #ebebeb !important;}
.tabtop .active a:before{content:"♦";position:absolute;top:15px;left:82px;color:#e31837;font-size:30px;}
.tabtop li a:hover{text-decoration:none; }
.tabtop .active a:hover{color:#fff !important;}
.tabtop .active a{background-color:#e31837 !important;color:#FFF !important;}
.margin-tops{margin-top:30px;}
.tabtop li a:last-child{padding:10px 31px; margin-top: 20px; float:left}
.tab-pane{background:#fff !important;}
.thbada{padding:10px 28px !important;}
section p{font-family:'Lato', sans-serif;}
.margin-tops4{margin-top:20px;}
.tabsetting{padding-top:6px;}
.services{background-color:#d4d4d4;min-height:710px;padding:65px 0 27px 0;}
.services a:hover{color:#000;}
.services h1{margin-top:0px !important;}
.heading-container p{font-family:'Lato', sans-serif;text-align:center;font-size:16px !important;text-transform:uppercase;}

.main_menu{width:100%; float:left;}
.main_menu ul{width:100%; float:left; margin:0px; padding:0px;}
.main_menu ul li{ list-style:none; margin:0px; padding:0px;}
.main_menu ul li a{ font-size:14px; color:#333; padding:10px 20px; float:left;}

.active{background:#988670; color: #fff !important;}
.nav-tabs {
    border-bottom:0px solid #dee2e6 !important;
}
.apllynow_job{width:100%; float:left;  text-align:center; margin-top:30px; margin-bottom:10px;}
.apllynow_job img{width: 45px;}
.apllynow_job h4{text-align:center; font-size:15px; color:#333; margin-top:15px; font-weight:600;}

.heading_tab h5{width: 100%;
float: left;
text-align: left;
font-size: 13px;
color: #2c2c2c !important;
padding: 10px 0px; border-bottom:1px solid gray;
font-weight: normal;}


.apli_hed p{font-size:14px !important; color:#333 !important; padding: 10px 0px !important; letter-spacing:0.5; margin-bottom:0px !important;}

.apli_form{width:100%; float:left; background:#F4F4F4; padding:20px 20px;}
span.nme_spn{color:#2c2c2c; font-size: 10px;}
.form_spc{margin-bottom:20px;}
input.frm_degn{width: 100%;
float: left;
background: #fff;
font-size: 13px;
color: #666;
padding: 4px 5px;
border: none;
margin: 5px 0px;
border: 1px solid #c5c5c5;} 
.left_apli_form{width:80%; float:left;}
.photos{width:18%; float:right; text-align:center;}
.photos input{ color:#000; margin-top:20px; width: 51%;}
select.frm_degn{width: 100%; float: left; background: #fff; font-size: 13px; color: #666; padding:8px 10px; border: none; margin: 5px 0px;
border: 1px solid #c5c5c5;}

img#blah{width: 150px;
height: 150px;
margin-top:0px;}
.photos{float:left;}


.pass_manegment{width:40%; margin:0 auto; text-align:center; background:#988670; margin-top:30px; padding-bottom:20px; border-radius:20px;}
.pass_manegment h4{ color:#fff; font-size:22px; padding:20px 10px;}

.pass_manegment span{font-size:16px; color:#fff; text-align:left; float:left;}
.pass_manegment input{font-size:13px; color:#fff !important; text-align:left; border:1px solid #fff; border-radius:30px; padding:4px 10px; background-color: #2d2e2e; width:70%; margin-bottom:10px;}

.pass_manegment button{padding:6px 20px;color:#000; background: #decaba; margin-top:10px; border:none; cursor:pointer;}

.singn_out a{position: absolute; right: 8%; background-color: #988670; padding: 2px 30px; border-bottom-right-radius: 15px; border-bottom-left-radius: 15px; color:#fff; font-size:13px;}
.singn_out a:hover{ color:#fff;} 

.full_bord{border:1px solid #ebebeb; margin:10px 0px;}

.nospace{padding:0px 5px !important;}
tr.center th{padding:0px 10px;}
table.colr_opton th{ color:#000;}
span.label-bold-style{color:#232323; margin-top:16px; margin-bottom:0px; float:left; font-weight:normal;}
.welcome img{margin-top:30px;}
ul.bottm_menu{float:left !important;}
ul.bottm_menu li a{font-size: 10px !important;
color: #000;
padding: 8px 15px !important;
float: left;
font-weight: 500 !important;}

.table-striped{margin-top:10px; float:left;}
a.icon_s i{font-size:18px; color:#333; margin: 0px 6px;}
th.main_font{color:#333 !important; }

.main_font{ font-size:16px !important;}
button.send_bottom{padding:3px 20px; font-size:12px; color:#fff; margin-top:29px; background:#ff2768; cursor:pointer; border:none; border:2px solid #ccc;}

button.save_button{padding:7px 15px; background:#3e3e3e; margin-top:20px; color:#fff; border:none; cursor:pointer;}
button.save_button2{padding:7px 15px; background:#988670; margin-left:15px; color:#fff; border:none; margin-top:20px; cursor:pointer;}

.subtitle_h{font-size:16px; color:#333; font-weight:500; margin-bottom:5px; margin-top:10px; float:left; border:1px solid #CCC; padding:5px 10px; width:100%; background-color:#E6E6E6; text-transform: uppercase;}

tr.table_color th{color:#000 !important; font-size:16px !important; font-weight:500 !important; vertical-align: baseline !important;}

span.form_text{float:left; margin: 0px 5px;}
span.form_text p{font-size:14px !important; margin:0px 6px !important;}

span.table-remove{position:relative; top:-22px;}
a.text-success i{position:relative; top:7px;}
.card{margin-bottom:30px; padding: 10px;}
textarea.frm_degn {
    width: 100%;
    float: left;
    background: #fff;
    font-size: 13px;
    color: #666;
    padding: 4px 5px;
    border: none;
    margin: 5px 0px;
    border: 1px solid #c5c5c5; height:100px;
}
.label-style{color:#000;}

textarea.frm_degn_words{ width: 100%;
    float: left;
    background: #fff;
    font-size: 13px;
    color: #666;
    padding: 4px 5px;
    border: none;
    margin: 5px 0px;
    border: 1px solid #c5c5c5; height:200px;}
	
span.label-bold-style i{ font-size:19px; color:#0077B5;}	

input.date{border: 1px solid #d0cece !important;
color: #1b1b1b;
font-size: 12px !important;
width: 100%;
padding: 2px 10px;}	
select.date{border: 1px solid #d0cece !important;
color: #1b1b1b;
font-size: 12px !important;
width: 48%;
padding: 7px;}	
	
select.date{width:100%;}	

span.top_text{float: left;

font-size: 9px;

/*width: 68%;*/

color: #000;}

.datepicker {
    direction: ltr;
    background-color: #2b65aa;
}
.datepicker table tr td span:hover {
    background: #eeeeee;
    color: #000;
}
.datepicker table tr td span.old, .datepicker table tr td span.new {
color: #fff !important;;

}

.default_4{font-size:14px; color:#333; padding: 10px 20px; font-weight: 500; float:left;} 
p.content_p{font-size:14px; color:#000;}
.drop_fil{margin-top:10px;}
.bltop{float:left;}
.yesno{ width:100%;}
.yesno span{ float: left;

width: 43%;}
.right{float:right;}
.center_bttn{text-align:center;}


@media screen and (max-width:640px)
{
	.cc-color-override-259567231.cc-window {
    background-color: rgba(255,39,104,1) !important;
    text-align: center !important;
    padding-left: 0px !important;
    width: 100% !important;
}
.cc-compliance {
    padding-right:0px !important;
}

	ul.tabsetting li{width: 49%; float: left; font-size: 11px;}
	.left_apli_form {
    width:100% !important;
    float: left;
    }
	.photos {
    width:100%;
    float: right;
    text-align: center; margin-top:20px;
     }
	 .footer-title a {
    font-size: 11px;
    color: #CCC;
    margin: 0px 10px;
    text-transform: uppercase;
     }
	 .button {
    width: 55px;
    height: 46px;
    position: absolute;
    right: 0;
    top: 14px !important;
    cursor: pointer;
    z-index: 12399994;
     }
	 #cssmenu ul {
    width: 100%;
    display: none;
    margin-top: 45px !important;
    }
	.tabtop li a:last-child {
    padding: 10px 40px;
    margin-top: 20px;
    float: left;
     }
	 .apllynow_job h4 {
		text-align: center;
		font-size: 11px;
		color: #333;
		margin-top: 15px;
		font-weight: 600;
     }
	}
.img-box img {
    border: 1px solid #ccc;
    text-align: center !important;
    border-radius: 5px;
}
.add-image label.upload-image:first-child {
    margin-left: 0;
}

.add-image label.upload-image {
    width: 26%;
    height: 45px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    position: relative;
    margin-bottom: 0;
    margin-top: 10px !important;
    cursor: pointer;
}
.add-image label.upload-image::before {
    position: absolute;
    content: "\f055";
    font-family: 'FontAwesome';
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: #c2c2c2;
    cursor: pointer;
    margin-top: -14px;
    margin-left: -14px;
    line-height: 30px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.add-image label.delete-image::before {
    position: absolute;
    content: "\f057";
    font-family: 'FontAwesome';
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: #c2c2c2;
    cursor: pointer;
    margin-top: -14px;
    margin-left: -14px;
    line-height: 30px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.add-image label.upload-image input {
    display: none;
}

.add-image label.delete-image {
    width: 26%;
    height: 45px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    position: relative;
    margin-bottom: 0;
    margin-top: 10px !important;
    cursor: pointer;
}
.footer-share ul li a:hover{ color: #f99bb7 !important;}
.footer-share ul li a i:hover {
    color: #f99bb7 !important;
    transition: all ease 0.5s;
    background-color: transparent !important;
}
.footer-top ul {
    margin-left: 15px;
}




.main-footer {
    position: relative;
    float: left;
    width: 100%;
}
.main-footer .footer-upper {
    position: relative;
    background: linear-gradient(to right, #ff2768, #281c5f);
}
.main-footer .footer-lower {
    position: relative;
    background-color: #ffffff;
    padding: 18px 0 15px;
}
.footer_inner_box {
    background-color: transparent !important;
}
.footer-lower .inner-box {
    position: relative;
    text-align: center;
}
.footer_inner_box ul li {
    margin-top: 0px !important;
}
.footer-social-links li {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 25px;
    color: #777777;
    font-weight: 400;
    padding: 0 22px;
}
.footer_inner_box ul li a {
    color: #fff !important;
}
.footer-social-links li a {
    color: #4d4d4d;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
.footer-social-links li::before {
    position: absolute;
    right: 0;
    top: 6px;
    height: 13px;
    width: 2px;
    background-color: #ff679a;
    content: "";
}





.main-header .header-lower {
    position: relative;
    background-color: #001d55;
    width: 100%;
}
.main-header .nav-outer {
    position: relative;
    padding: 0px 25px;
}
.close:not(:disabled):not(.disabled) {
	cursor: pointer !important;
	margin-top: -4% !important;
	color: #090909 !important;
	font-size: 32px;
	height: 40px !important;
	width: 49px !important;
	text-align: center !important;
	line-height: 40px !important;
	border-radius: 50% !important;
}
.main-header .logo {
    position: relative;
    padding: 12px 0px;
}
.logo {
    width: 130px;
    float: left;
}
.logo img {
    width: 100px;
    float: left;
}
.main-header .header-lower .outer-box {
    position: relative;
    float: right; display: none;
    padding: 15px 0;
    width: 8%;
}

/*
.serc input 
{
  position:absolute;
  top:45%;
  width: 42px;
  height: 42px;
  border-style:none;
  border-radius:100px;
  padding: 10px 20px;
  background-color:transparent; border:1px solid #777;
  transition-duration:500ms;
  cursor:pointer;
background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAWpJREFUWEfNljFOxDAQRbehoKDnIjTcgYtwAHpOwhE4BA3Vig6Je9ABYZ60kZbVc5xkifRHelrleRzP2rGT3TAM0ahMQmUSKpNQmYTKJFQmoTIJlUmonMFlcV88FW/F5+GXazzt1m8xKjvcFh/FVNBOnvVfhMoJHorvgtgXzNZNcXX45RpPkEe+3Wc2KhswIwz6VTwWF4Xl4Wknj/yzZlKlwDM1LiuDW84p5BH0W/1MqhRYOoLla83cKeSNy01/y+miUmB3EksHGv8Y/a29i0qBI4RgI1h7C/IJ+lt7F5UC5xzBbrX2FuQT9Lf2LiqF+BmMfwbHgWJ3cfw5CEvfJD8FcVdY3ixUTrDkXTzGe3Fd2P26qOww92uGmaM4YnWRKmfAM8VssTs5QlrfgxR1VpEq/5mzilS5AauLVLkRq4pUuSHHRb4WlvMHlRtDkS/F85FrojIJlUmoTEJlEiqTUJmEyiRUJqEyh2H3Cz4WH1fC57RBAAAAAElFTkSuQmCC);
  background-repeat:no-repeat;
  font-family:'Segoe UI';
  font-size:15px;
  color:transparent;
  overflow:hidden; z-index:99999; right:60px;
}
.serc input:focus
{
  width:250px;
  cursor:text;
  padding-left:40px;
  color:#A0A0A0;
}
.serc input:hover,input:focus
{
  background-color:#FFFFFF;
  background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAJTSURBVFiF7ZdNSxtRFIafM5PgJGqXxXy4DIziJhBdFLrwnyi4cym40S4ClkJ/g2B/Qv+BC0s3CtkIDWYZasWtXxEzebswQxGt3sk0Nou8cHfnPTycc+fOOSaJUZb3vwFe0hgwrcaAaTUGTKuRB8wMYrLZ2dxEd3rVPC2aqAoqBi0ZDfXs8DZzsad2++ZfAFrSP0m+NPdO4gtQeSasZcbK9c8f39PAQcIW50vzmxIHQEXQkGzdU2+pc6c3nnpLkq0LGkBF4iBfmt9MC+hcwX7lDgBhfOycTu5IR3ePElotGxSvthFbgJnxPlUlJb14KJdzQSE8CQqhgmJYd/EExbAeFEIFhfCEcjnn4nnqOLV4oju9Sr+tndPJHRdP53RyJ2533z+QnADN0yIAst2n2vqUpKM7ZLsP/EMDFFUAn+gwSfI4PvYPIidA9Z+U6641kySP4/X8k/Ss3CoILYB8RmGS5HF87B9EbhU0GgARfqK7FMfH/kHkBtiz+7tnWjOrZV08ZrUsprUH/mEB3mYu9oCWQTUoXm27eILi1bZBFWj1/cMDVLt9Y8YK0ENs5Upz9b9V0qyWzZXm6ogPAF6PjTSDQ6Jh4f5frE+AJ2gg2/WJDq+71sxnFEb4i5jW+pWL1fS7/vLl+fHZ0AHvId2mGa/HRs/jMxCmgUwMCO7z4NTbhZkoE+2ngRwIMInSQg595L88Pz7zu/4y0ATCKBPtT71dmHH1v8pOkgby1ZamR5DZ6KuL71W3uj+Q9k3SLxfP0D+StBr5vXgMmFZjwLQaA6bVyAP+BkJqfmMbSKF/AAAAAElFTkSuQmCC);
}*/
.div1
{
  position:absolute;
  left:0px;
  top:45px;
  width:50px;
  height:5px;
}



.searchbox-open{
    width:100%;
}


.chat-call {
    z-index: 99999;
    cursor: pointer; float:right; margin-top:4px;
}
.chat-call a {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-border-radius: 50%;
    width:45px;
    height:45px;
    background-color: rgba(255, 255, 255, .8);
    display: inline-block;
    text-align: center;
    padding: 0.5em;
    font-size:20px;
    background: #fff;
    box-shadow: 0 0px 15px rgba(0,0,0,0.2);
    line-height: 1.3; transition:all ease 0.5s;
}
.chat-call a i:hover{ color:#f62768; transition:all ease 0.5s;}

.chat-call div {
    position: absolute; transition:all ease 1s;
    width: 50px;
    height: 8px;
    overflow: hidden;
    top: 15px;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
.chat-call ul {
    position: absolute; transition:all ease 1s;
    bottom: 52px;
    left: 0;
    z-index: 9999;
    background: #fff;
    border-radius: 50px;
}
.chat-call:hover div {
    height: 300px; transition:all ease 1s;
}

.chat-call div li i{margin-top: 3px !important; color:#3d61cb;}




.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.ic.close {
    opacity: 0;
    font-size: 0px;
    font-weight: 300;
    color: #fff;
    top: 8px;
    height: 40px;
    display: block;
    outline: none;
}
.ic {
    position: absolute;
    cursor: pointer;
    display: inline-block;
    right: 25px;
    width: 32px;
    height: 24px;
    text-align: center;
    top: 0px;
    outline: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
ul.main-nav {
	 display:none;
    position: relative;
    list-style-type: none;
    padding: 0px;
    font-size: 0px;
    margin: 36px auto;
    float: left;
    width: 78%;
    text-align: right;
}
ul.main-nav > li {
    display: inline-block;
    padding: 0;
}
ul.main-nav > li > a {
    display: block;
    position: relative;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    text-transform: uppercase; padding: 10px 7px;
}
ul.main-nav > li > a::after {
    content: '';
    width: 1px;
    height: 62px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
}

ul.main-nav > li ul.sub-menu-lists {
    margin: 5px 0px;
    padding: 0px;
    list-style-type: none;
    display: block;
}
ul.main-nav > li ul.sub-menu-lists > li {
   padding:3px 0;
    text-align: left;
}
ul.main-nav > li ul.sub-menu-lists > li > a {
    font-size: 12px; font-weight:600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase; margin-left: 15px; width: 100% !important;
float: left;
padding: 0px;
margin: 3px 10px;
}
ul.main-nav > li ul.sub-menu-lists > li > a:hover {
    color: #f99bb7 !important; transition:all ease 0.4s;


}
ul.main-nav > li:hover > div.sub-menu-block {
    background: linear-gradient(to right, #281c5f, #ff2768);
    visibility: visible;
    opacity: 1;
    border-bottom: 10px solid #fff;
	 border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
	transform: translate(0, 10px); margin-top: -9px; transition: all ease 0.3s;
transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;	
}
ul.main-nav > li > div.sub-menu-block {
    visibility: hidden;
    background-color: #f9f9f9;
    position: absolute;
    color: #333;
    left: 0;
    box-sizing: border-box;
    z-index: 3;
    font-size: 16px;
   padding: 10px;   
opacity:1;
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center; transition: all ease 0.1s;
background: linear-gradient(to right, #281c5f, #ff2768);
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
border-bottom: 10px solid #fff;
}


 /* Drop Down/Up Arrow for Mega Menu */
  ul.main-nav > li > a.mega-menu > span { display: block; vertical-align: middle; }
  ul.main-nav > li > a.mega-menu > span:after {
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
    content: '';
    background-color: transparent;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
  }
  .sticky-header ul.main-nav > li > a.mega-menu > span:after {
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
    content: '';
    background-color: transparent;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
  }

  ul.main-nav > li:hover > a.mega-menu span:after{
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #666;
    border-bottom: 0px solid transparent;
  }


ul.main-nav > li > a::after {
    content: '';
    width: 1px;
    height: 62px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
}

.main-header {
    position:sticky;
    left: 0px;
    top: 0px;
    z-index: 999;
    width: 100%;
}

.sub-menu-block p{text-align:left !important; color:#fff !important; font-size:13px !important; margin-top:10px !important;}


.skiptranslate {
z-index: 9999999 !important;
position: fixed;
bottom: 0px;
right: 4px;
}

a.apply{background: linear-gradient(to right, #281c5f, #ff2768); color:#fff; border:none;}
a.apply:hover{background: linear-gradient(to right, #281c5f, #ff2768); color:#fff;}


span.moreandless{background: linear-gradient(to right, #281c5f, #ff2768);
	color: #fff;
	border: none;
	padding: 3px 10px;
	display: block;
	font-size: 14px;}
span.moreandless:hover{background: linear-gradient(to right, #281c5f, #ff2768); color:#fff;}






p, details{
	display:inline;
  }
  
  details {
	position:relative; top: 5px;
  }
  details summary {
	display:block;
	cursor: pointer;
	color:#000; 
  }
  .body ol{margin-bottom:20px;}
  details summary:focus {
	outline:none;
  }
  details[open] {
	display:block;
	padding-bottom:25px;
	padding-top:10px;
	animation: open .2s linear;
  }
  details[open] summary {
	position:absolute;
	bottom: 0;
	left:0;
  }
  
  details #open{text-align:middle;}
  details #open:after{
	  display: inline-block;
	  position:relative;
	  top: -3px;
	  padding-left: 8px;
	  content: "\00bb";
	  transform: rotate(90deg);
  }
  details[open] #open{display:none;}
  details #close{display:none;}
  details[open] #close{display:block;}
  
  ::-webkit-details-marker {display: none;}
  
  
  
  
  
  @keyframes open {
	0% {
	  opacity: 0;
	  transform: translateY(-10px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }



  .footerb{margin-top: 20px;}
  .footer_links {
    margin: 0 auto width: 100%;
    text-align: center;
}
.footer_links li a:hover {
	color: #001d55;
  }
.footerb2 ul {
	padding: 30px 10px;
  }

  .footer_links li {
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 25px;
	color: #777777;
	font-weight: 400;
	padding: 0 22px;
  }

  .footer_links li a {
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
  }
a.btn-apply{ background: #988670 !important; color: #fff; font-size: 13px;}

/* .position-relative{ position: relative !important;}

.alert_message{  position: absolute;
	top: 1%;
	left: 21%;
  } */


  .form-control[readonly] {
	background-color: #fff !important;
	opacity: 1;
  }