	/**
* Template Name: Vesperr - v2.1.0
* Template URL: https://bootstrapmade.com/vesperr-free-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html {
	font-size: 100%;
}

body {
	color: #444444;
	font-family: montserrat, Montserrat;
}

a {
	color: #ff9163;
}

a:hover {
	color: #e67843;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: #e67843;
	color: #fff;
	transition: all 0.4s;
}

.back-to-top i:hover {
	background: #ff9163;
	color: #fff;
}

.donate_btn {
    position: fixed;
    top: 50%;
    right: 0;
    background: #e54f16;
    color: #fff;
    transform: rotate(-90deg) translate(-50%, 44px);
    padding: 4px 10px;
    z-index: 9999;
}
.donate_btn:hover,.donate_btn:focus{
    color:#fff;
    background:#b53606;
    text-decoration:none;
}
.modal{
    z-index:99999;
}
button.btn.close_btn {
    background-color: #e67843;
    color: #fff;
    float:right;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
	z-index: 997;
	transition: all 0.5s;
	background: #fff;
}

.header-link {
	background: #fff;
}

#header.header-scrolled .header-link {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	animation: slide-down 0.7s;
	position: fixed;
	top: -1px;
	z-index: 9999;
	width: 100%;
	border: none;
	transition: 0.5s;
	margin: 0;
}

#header .logo {
	max-width: 74%;
}

#header .logo h1 {
	font-size: 20px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
}

#header .logo h1 .logo-caption {
	margin-left: 15px;
	text-align: center;
	font-size: 18px;
	color: #e67843;
	line-height: 20px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: #222222;
	text-decoration: none;
}

#header .logo img {
	padding: 5px 0;
	margin: 0;
	max-width: 204px;
}

.header-top {
	background: #fc9c74;
	color: #fff;
	font-size: 11px;
	padding: 5px 0;
}

.header-top p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
}

@media (max-width: 768px) {
	#header {
		background: #fff;
	}
	#header .logo h1 {
		font-size: 28px;
	}
}

.top-bar {
	background: #000;
	padding: 0 46px;
}

form div.required label.control-label:after {
    content:" * ";
    color:red;
}
/******************************************************* loader CSS ***************************************/

.loader_body {
	overflow: hidden;
}

.loader_outer {
	background: rgba(0, 0, 0, .3);
	width: 100%;
	height: 100%;
	z-index: 1060;
	/* width: 100%;
    max-height: 100vh;
    position: absolute;
    float: left;
    background: rgba(0, 0, 0, 0.5);
    height: -webkit-fill-available;
    z-index: 9999999; */
}

.loader_container {
	position: absolute;
	width: 200px;
	height: 200px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.loader_container,
.loader_outer {
	display: inline-block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.loaderitem {
	width: 100px;
	height: 100px;
	position: absolute;
}

.item-1 {
	background-color: #f08a94;
	top: 0;
	left: 0;
	z-index: 1;
	animation: item-1_move 1.8s cubic-bezier(.6, .01, .4, 1) infinite;
}

.item-2 {
	background-color: #9d6ff8;
	top: 0;
	right: 0;
	animation: item-2_move 1.8s cubic-bezier(.6, .01, .4, 1) infinite;
}

.item-3 {
	background-color: #89aecd;
	bottom: 0;
	right: 0;
	z-index: 1;
	animation: item-3_move 1.8s cubic-bezier(.6, .01, .4, 1) infinite;
}

.item-4 {
	background-color: #f6cf7b;
	bottom: 0;
	left: 0;
	animation: item-4_move 1.8s cubic-bezier(.6, .01, .4, 1) infinite;
}

@keyframes item-1_move {
	0%,
	100% {
		transform: translate(0, 0)
	}
	25% {
		transform: translate(0, 100px)
	}
	50% {
		transform: translate(100px, 100px)
	}
	75% {
		transform: translate(100px, 0)
	}
}

@keyframes item-2_move {
	0%,
	100% {
		transform: translate(0, 0)
	}
	25% {
		transform: translate(-100px, 0)
	}
	50% {
		transform: translate(-100px, 100px)
	}
	75% {
		transform: translate(0, 100px)
	}
}

@keyframes item-3_move {
	0%,
	100% {
		transform: translate(0, 0)
	}
	25% {
		transform: translate(0, -100px)
	}
	50% {
		transform: translate(-100px, -100px)
	}
	75% {
		transform: translate(-100px, 0)
	}
}

@keyframes item-4_move {
	0%,
	100% {
		transform: translate(0, 0)
	}
	25% {
		transform: translate(100px, 0)
	}
	50% {
		transform: translate(100px, -100px)
	}
	75% {
		transform: translate(0, -100px)
	}
}


/***** ends here *****************************/


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
	list-style: none;
}

.navbar {
	padding: 0;
	margin: 0;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	float: left;
}

.nav-menu a {
	display: block;
	position: relative;
	color: #555555;
	padding: 6px 0 6px 25px;
	transition: 0.3s;
	font-size: 14px;
}

.header-link .nav-menu a {
	font-weight: bold;
	text-transform: uppercase;
	padding: 29.5px 18px;
	color: #fff;
	font-size: 14px
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
	color: #ff9163;
	text-decoration: none;
}

.header-link .nav-menu a:hover,
.header-link .nav-menu .active>a,
.header-link .nav-menu li:hover>a {
	color: #fff;
	background: #ff9163;
}

.nav-menu .get-started a {
	background: #e67843;
	color: #fff;
	border-radius: 50px;
	padding: 10px 20px;
}

.nav-menu .get-started a:hover {
	background: #ff9163;
	color: #fff;
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 0px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
	border-radius: 0px;
	padding: 0;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 15px;
	font-size: 13px;
	text-transform: none;
	color: #232323;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: #fc9c74;
	background: #fff;
}

.nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
	font-size: 12px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}
	.nav-menu .drop-down .drop-down:hover>ul {
		left: -100%;
	}
	.nav-menu .drop-down .drop-down>a:after {
		content: "\ea9d";
	}
}


/* Mobile Navigation */

.mobile-nav-toggle {
	position: fixed;
	left: 10px;
	top: 3px;
	z-index: 99999;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #222222;
	padding: 5px 15px;
	font-weight: 500;
	outline: none;
	font-size: 14px;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	color: #ff9163;
	text-decoration: none;
}

.mobile-nav .get-started {
	text-align: center;
	margin-top: 10px;
}

.mobile-nav .floating-btn .get-started a {
	background: #3498db;
	color: #fff;
	border-radius: 50px;
	margin: 0 15px;
	padding: 10px 30px;
	display: none;
}

.mobile-nav .get-started a:hover {
	background: #57aae1;
	color: #fff;
}

.mobile-nav .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down>a:after {
	content: "\eaa1";
}

.mobile-nav .drop-down>a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(9, 9, 9, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
	width: 100%;
	padding: 0;
	/*--height: 70vh;
 
  background:url("../images/main-banner.jpeg");
  background-position:center -200px;
  background-size:cover;--*/
}

#hero h1 {
	margin: 0 0 10px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: black;
}

#hero h2 {
	color: #484848;
	margin-bottom: 50px;
	font-size: 24px;
}

#hero .btn-get-started {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 50px;
	transition: 0.5s;
	color: #3498db;
	border: 2px solid #3498db;
}

#hero .btn-get-started:hover {
	background: #3498db;
	color: #fff;
}

#hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
	#hero {
		background-attachment: fixed;
	}
}

@media (max-width: 991px) {
	#hero .animated {
		-webkit-animation: none;
		animation: none;
	}
	#hero .hero-img {
		text-align: center;
	}
	#hero .hero-img img {
		width: 50%;
	}
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 28px;
		line-height: 36px;
	}
	#hero h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}
	#hero .hero-img img {
		width: 70%;
	}
}

@media (max-width: 575px) {
	#hero .hero-img img {
		width: 80%;
	}
}

@-webkit-keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

div#login_content {
	width: 100%;
}

section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f8f8f8;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	color: #222222;
	padding: 0 15px;
	display: inline-block;
}

.section-title h2::before,
.section-title h2::after {
	content: '';
	width: 50px;
	height: 2px;
	background: #ff9163;
	display: inline-block;
	position: absolute;
	top: 50%;
}

.section-title h2::before {
	margin: 0 15px 10px 0;
	left: -50px;
}

.section-title h2::after {
	margin: 0 0 10px 15px;
	right: -50px;
}

.section-title p {
	margin: 15px 0 0 0;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
	/*--background:#f8f8f8;--*/
	text-align: center;
}

.clients .col-lg-2 {
	display: flex;
	align-items: center;
	justify-content: center;
}

.clients .section-title {
	padding-bottom: 15px;
}

.clients img {
	/*-- -webkit-filter: grayscale(100);
  filter: grayscale(100);--*/
	transition: all 0.4s ease-in-out;
	display: inline-block;
	padding: 10px 0;
}

.clients img:hover {
	-webkit-filter: none;
	filter: none;
	cursor: pointer;
	transform: scale(1.1);
}

@media (max-width: 768px) {}

@media (max-width: 575px) {}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about .content h3 {
	font-weight: 600;
	font-size: 26px;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding-left: 28px;
	position: relative;
}

.about .content ul li+li {
	margin-top: 10px;
}

.about .content ul i {
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 20px;
	color: #3498db;
	line-height: 1;
}

.about .content p:last-child {
	margin-bottom: 0;
}

.btn-learn-more {
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 50px;
	transition: 0.3s;
	line-height: 1;
	color: #e67843;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	margin-top: 6px;
	border: 2px solid #e67843;
	background: #fff;
}

.btn-learn-more.fill-btn {
	background: #e67843;
	color: #fff;
}

.facebook-btn {
	background: #39579a;
	color: #fff;
	border-color: #39579a !important;
}

.facebook-btn:hover {
	background: #39579a !important;
	opacity: 0.8;
}

.top-bar .nav-menu table.vol-avail a {
	padding: 0;
	padding-left: 3px;
}

.google-btn {
	background: #df4a32;
	color: #fff;
	border-color: #df4a32;
}

table.vol-avail input {
	width: 18px;
	margin-top: 3px;
	height: 18px;
}

table.vol-avail a:after {
	content: '\f046';
	font-family: 'FontAwesome';
	font-size: 13px;
}

.google-btn:hover {
	background: #df4a32 !important;
	opacity: 0.8;
}

table.vol-avail input {
	width: 18px;
	height: 18px;
	margin-top: 3px;
}

table.vol-avail {
	font-size: 14px;
}

table.vol-avail input.small-checkbox {
	width: 11px;
}

table.vol-avail th {
	text-align: center;
	padding-right: 5px;
}

table.vol-avail tr {
	vertical-align: baseline;
}

legend {
	background: #fc9c74;
	padding: 10px;
	border-radius: 0px;
	font-size: 17px;
	color: #fff;
	margin: 15px 0;
	padding: 8px 15px;
	font-weight: 500;
	text-transform: uppercase;
}

input[type=radio]:checked:after {
	color: #5B534B;
	content: '\f111';
	font-family: 'FontAwesome';
	font-size: 11px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	text-align: center;
	line-height: 15.5px;
	left: 2.5px;
	position: absolute;
}

input[type=radio] {
	background-color: #F0EFE9;
	box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.8);
	border-radius: 22px;
	content: "";
	display: inline-block;
	height: 15px;
	margin-left: 5px;
	margin-right: 2px;
	vertical-align: middle;
	width: 15px;
	/* border-radius: 100%; */
	-webkit-appearance: none;
}

input[type=radio]:focus {
	outline: none;
}

.btn-learn-more.fill-btn:hover {
	color: #e67843;
	background: #fff;
}

.btn-learn-more:hover {
	background: #e67843;
	color: #fff;
	text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts .content {
	padding: 0;
}

.counts .content h3 {
	font-weight: 700;
	font-size: 34px;

	color: #222222;
}

.counts .content p {
	margin-bottom: 0;
}

.counts .content .count-box {
	padding: 10px 0;
	width: 100%;
	text-align: center;
}


/*.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #3498db;
  float: left;
}*/

.counts .content .count-box span {
	font-size: 28px;
	line-height: 28px;
	display: block;
	font-weight: 700;
	color: #222222;
	margin-left: 50px;
}

.counts .content .count-box p {
	padding: 10px 0 0 0;
	font-family: "Raleway", sans-serif;
	font-size: 14px;
	color: #484848;
}

.counts .content .count-box a {
	font-weight: 600;
	display: block;
	margin-top: 20px;
	color: #484848;
	font-size: 15px;
	font-family: "Poppins", sans-serif;
	transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
	color: #6f6f6f;
}

@media (max-width: 1024px) {
	.counts .image {
		text-align: center;
	}
	.counts .image img {
		max-width: 70%;
	}
}

@media (max-width: 667px) {
	.counts .image img {
		max-width: 100%;
	}
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
	padding: 30px;
	position: relative;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
	transition: all 0.3s ease-in-out;
	border-radius: 8px;
	z-index: 1;
	width: 100%;
}

.services .icon-box::before {
	content: '';
	position: absolute;
	background: #ff916347;
	right: -63px;
	top: -47px;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	transition: all 0.3s;
	z-index: -1;
}


/*.services .icon-box:hover::before {
  background: #e67843;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon-box:hover .images img {
  filter: grayscale(1);
}*/

.services .icon {
	margin: 0 auto 20px auto;
	padding-top: 9px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	background: #e67843;
	transition: all 0.3s ease-in-out;
	font-weight: bold;
	font-size: 27px;
	color: #fff;
}

.services .icon i {
	font-size: 36px;
	line-height: 1;
	color: #fff;
}

.services .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px;
}

.services .title a {
	color: #111;
}

.services .description {
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 0;
}
#projects.services .description {
	min-height:80px;
	max-height:80px;
}
.services .description p{
	margin-bottom:0;
}


/*.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
    color: #e67843;
}

.services .icon-box:hover .icon i {
  color: #e67843;
}*/


/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/

.more-services {
	padding-top: 20px;
}

.more-services .card {
	border: 0;
	padding: 160px 20px 20px 20px;
	position: relative;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.more-services .card-body {
	z-index: 10;
	background: rgba(255, 255, 255, 0.9);
	padding: 15px 30px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	transition: ease-in-out 0.4s;
	border-radius: 5px;
}

.more-services .card-title {
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
}

.more-services .card-title a {
	color: #222222;
}

.more-services .card-text {
	color: #5e5e5e;
}

.more-services .read-more a {
	color: #777777;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	transition: 0.4s;
}

.more-services .read-more a:hover {
	text-decoration: underline;
}

.more-services .card:hover .card-body {
	background: #3498db;
}

.more-services .card:hover .read-more a,
.more-services .card:hover .card-title,
.more-services .card:hover .card-title a,
.more-services .card:hover .card-text {
	color: #fff;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features .icon-box {
	display: flex;
	align-items: center;
	padding: 20px;
	background: #f6f6f6;
	transition: ease-in-out 0.3s;
}

.features .icon-box i {
	font-size: 32px;
	padding-right: 10px;
	line-height: 1;
}

.features .icon-box h3 {
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-size: 16px;
}

.features .icon-box h3 a {
	color: #222222;
	transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
	color: #3498db;
}

.features .icon-box:hover {
	background: #eef7fc;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonial-wrap {
	padding-left: 50px;
}

.testimonials .testimonial-item {
	box-sizing: content-box;
	padding: 30px 30px 30px 60px;
	margin: 30px 15px;
	min-height: 200px;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
	position: relative;
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 10px;
	border: 6px solid #fff;
	position: absolute;
	left: -45px;
}

.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #111;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: #ff916347;
	font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto 15px auto;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
	margin-top: 5px;
	text-align: center;
}

.testimonials .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

.testimonials .owl-dot.active {
	background-color: #e67843!important;
}

@media (max-width: 767px) {
	.testimonials .testimonial-wrap {
		padding-left: 0;
	}
	.testimonials .testimonial-item {
		padding: 30px;
		margin: 15px;
	}
	.testimonials .testimonial-item .testimonial-img {
		position: static;
		left: auto;
	}
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
	margin-bottom: 30px;
}

.portfolio {
	padding-bottom: 0;
}

.portfolio #portfolio-flters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}

.portfolio #portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 15px 10px 15px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #222222;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
	color: #fff;
	background: #e67843;
}

.portfolio #portfolio-flters li:last-child {
	margin-right: 0;
}

.portfolio .portfolio-wrap {
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
	content: "";
	background: rgba(34, 34, 34, 0.6);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all ease-in-out 0.3s;
	z-index: 2;
	opacity: 0;
}

.portfolio .portfolio-wrap img {
	transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
	text-align: center;
	z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
	color: #fff;
	margin: 0 5px 0 0;
	font-size: 28px;
	display: inline-block;
	transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
	color: #ff9163;
}

.portfolio .portfolio-wrap:hover::before {
	opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
	transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
	opacity: 1;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team .member {
	margin-bottom: 20px;
	overflow: hidden;
	text-align: center;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
	position: relative;
	overflow: hidden;
}

.team .member .social {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	height: 40px;
	opacity: 0;
	transition: ease-in-out 0.3s;
	text-align: center;
	background: rgba(255, 255, 255, 0.85);
}

.team .member .social a {
	transition: color 0.3s;
	color: #222222;
	margin: 0 10px;
	padding-top: 8px;
	display: inline-block;
}

.team .member .social a:hover {
	color: #e67843;
}

.team .member .social i {
	font-size: 18px;
	margin: 0 2px;
}

.team .member .member-info {
	padding: 25px 15px;
}

.team .member .member-info h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 18px;
	color: #222222;
}

.team .member .member-info span {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: #aaaaaa;
}

.team .member .member-info p {
	font-style: italic;
	font-size: 14px;
	line-height: 26px;
	color: #777777;
}

.team .member:hover .social {
	opacity: 1;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
	padding: 20px;
	background: #f9f9f9;
	text-align: center;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	border: 2px solid #f9f9f9;
}

.pricing .box h3 {
	font-weight: 400;
	padding: 15px;
	margin-top: 15px;
	font-size: 18px;
	font-weight: 600;
	color: #222222;
}

.pricing .box h4 {
	font-size: 42px;
	color: #ff9163;
	font-weight: 500;
	font-family: "Open Sans", sans-serif;
	margin-bottom: 20px;
}

.pricing .box h4 sup {
	font-size: 20px;
	top: -15px;
	left: -3px;
}

.pricing .box h4 span {
	color: #bababa;
	font-size: 16px;
	font-weight: 300;
}

.pricing .box ul {
	padding: 0;
	list-style: none;
	color: #222222;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
}

.pricing .box ul li {
	padding-bottom: 16px;
}

.pricing .box ul i {
	color: #3498db;
	font-size: 18px;
	padding-right: 4px;
}

.pricing .box ul .na {
	color: #ccc;
	text-decoration: line-through;
}

.pricing .box .btn-wrap {
	padding: 15px;
	text-align: center;
}

.pricing .box .btn-buy {
	display: inline-block;
	padding: 10px 40px 12px 40px;
	border-radius: 50px;
	border: 2px solid #3498db;
	color: #3498db;
	font-size: 14px;
	font-weight: 400;
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	transition: 0.3s;
}

.pricing .box .btn-buy:hover {
	background: #3498db;
	color: #fff;
}

.pricing .recommended {
	border-color: #3498db;
}

.pricing .recommended .btn-buy {
	background: #3498db;
	color: #fff;
}

.pricing .recommended .btn-buy:hover {
	background: #2383c4;
	border-color: #2383c4;
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/

.faq .faq-item {
	margin: 20px 0;
	padding: 20px 0;
	border-bottom: 1px solid #eeeeee;
}

.faq .faq-item i {
	color: #8bc4ea;
	font-size: 24px;
	float: left;
	line-height: 0;
	padding: 13px 0 0 0;
	margin: 0;
}

.faq .faq-item h4 {
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	margin: 0 0 10px 32px;
	font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
	font-size: 15px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .contact-about h3 {
	font-size: 28px;
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 1px;
	color: #222222;
}

.contact .contact-about p {
	font-size: 14px;
	line-height: 24px;
	font-family: "Raleway", sans-serif;
	color: #888;
}

.social-links {
	display: flex;
	align-items: center;
}

.social-links a {
	display: inline-block;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 8px;
	border-radius: 50%;
	text-align: center;
	width: 28px;
	height: 28px;
	transition: 0.3s;
	background-color: #fff;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.social-links a:hover {
	opacity: .9;
	color: #fff;
}

.social-links {
	padding: 4.5px 0;
}

.contact .info {
	color: #444444;
}

.contact .info i {
	font-size: 32px;
	color: #e67843;
	float: left;
	line-height: 1;
}

.contact .info p {
	padding: 0 0 10px 42px;
	line-height: 28px;
	font-size: 14px;
}

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br+br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

.contact button[type="submit"] {
	background: #e67843;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.contact button[type="submit"]:hover {
	background: #ff9163;
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
	padding: 15px 0;
	background: #f8f8f8;
	min-height: 40px;
	margin-top: 86px;
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 72px;
	}
}

.breadcrumbs h2 {
	font-size: 28px;
	font-weight: 400;
	margin: 0;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

@media (max-width: 992px) {
	.breadcrumbs ol {
		margin-top: 10px;
	}
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #3c3c3c;
	content: "/";
}

@media (max-width: 768px) {
	.breadcrumbs .d-flex {
		display: block !important;
	}
	.breadcrumbs ol {
		display: block;
	}
	.breadcrumbs ol li {
		display: inline-block;
	}
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
	padding-top: 20px;
}

.portfolio-details .portfolio-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
	margin-top: 5px;
	text-align: center;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
	background-color: #3498db !important;
}

.portfolio-details .portfolio-info {
	padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 20px;
}

.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
	margin-top: 10px;
}

.portfolio-details .portfolio-info p {
	font-size: 15px;
	padding: 15px 0 0 0;
}

@media (max-width: 992px) {
	.portfolio-details .portfolio-info {
		padding-top: 20px;
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
	background: #222222;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
	padding: 30px 0;
	color: #fff;
	font-size: 14px;
}

#footer .credits {
	font-size: 13px;
	padding-top: 5px;
}

#footer .footer-links a {
	color: #fff;
	padding-left: 15px;
	font-size: 13px;
}

#footer .footer-links a:first-child {
	padding-left: 0;
}

#footer .footer-links a:hover {
	color: #ff9163;
}

.topr-bar {
	width: 100%;
}

.top-bar .nav-menu li {
	position: relative
}

.top-bar .nav-menu li a i {
	color: #fff;
	margin-right: 3px;
	font-size: 15px;
}

.top-bar .nav-menu li a {
	font-size: 15px;
}

.top-bar .nav-menu .get-started a {
	font-size: 14px;
}

.contact .info h4 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 7px;
}

.slider-section .carousel {
	min-height: 300px;
	min-width: 100%;
}

.slider-section .carousel img {
	min-height: 260px;
	width: 70%;
}

.slider-section .carousel .carousel-caption {
	color: white;
	right: 0;
	text-align: center;
	max-width: 30%;
	left: unset;
	top: 0px;
	background: #e67843;
	padding: 10px;
	height: 100%;
	width: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.slider-section {
	padding-top: 0;
}

.slider-section .item {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.slider-section .carousel-caption h1 {
	font-size: 32px;
}

.slider-section .carousel-caption:before {
	content: "";
	background: #e67843;
	width: 100%;
	height: 100%;
	position: absolute;
	left: -28px;
	transform: skewX(-10deg);
	z-index: -1;
}

.slider-section .carousel-indicators li {
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 100%;
	padding: 0;
	box-sizing: border-box;
	border: none;
	opacity: 1;
}

.slider-section .carousel-indicators li.active {
	background: #f68149;
}

.banner-form {
	padding-top: 0;
}

.banner-form img {
	max-width: 72px;
	margin-bottom: 10px;
}

.banner-form h3 {
	margin-bottom: 0px;
}

.counts iframe {
	border: 10px solid #e5e4e4;
	/*border-radius: 100px 0 100px 0;*/
}

.count-box img {
	max-width: 60px;
	filter: grayscale(100%);
}

.count-box:hover {
	cursor: pointer;
}

.count-box:hover img {
	filter: inherit;
}


/*.counts .content .count-box:hover p{
	color:#ff9163;
}
*/

.feeds-section .read-more a {
	color: #777777;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	transition: 0.4s;
}

.feeds-section .read-more a:hover {
	text-decoration: underline;
}

.root-qr-code img {
	max-width: 118px;
	border: 1px solid;
	text-align: right;
}

.details {
	font-size: 22px;
}

.name {
	color: #e67843;
	font-size: 20px;
	/* font-style: italic; */
	font-weight: 600;
}

.slider-section .carousel-control-next,
.slider-section .carousel-control-prev {
	display: none;
}

.top-bar .navbar-expand-lg .navbar-nav .nav-link {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: -.3px;
	color: #fff;
	padding: 7.1px 9px;
}

.top-bar .navbar-expand-lg .navbar-nav {
	flex-direction: row;
}

.nav-item.notification {
	background: #1c1c1c;
}

.navbar {
	min-height: auto;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
	background-color: #0000004f;
	background-repeat: no-repeat;
	background-position: center;
	width: 50px;
	height: 50px;
	font-size: 22px;
	background-size: 16px;
	border-radius: 4px;
	background-image: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 5px solid #ffffff5c;
	min-width: 50px;
}

#hero .carousel-control-next,
#hero .carousel-control-prev {
	width: 5%;
}

#hero .carousel-control-next {
	justify-content: flex-end;
	right: 15px;
}

#hero .carousel-control-prev {
	justify-content: flex-start;
	left: 15px;
}

#hero .carousel-indicators {
	display: none;
}

.icon-box .images img {
	width: 100% !important;
	margin-bottom: 20px;
	border: 1px solid #eee;
	padding: 10px;
	height:auto !important;
	background: #fff;
	  
	
}
#projects .icon-box .images img{
	min-height: 83px;
    object-fit: cover;
    min-width:100%;
}
.press-release .images {
	width: 40%;
	float: left;
	max-width: 200px;
	padding-right: 20px;
}

.press-release .icon-text {
	width: 60%;
	float: right;
}

.press-release .title {
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 18px;
}

.press-release .img-wrapper {
	max-height: 150px;
	min-height: 150px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #eee;
	background: #fff;
	object-position: center;
}

.press-release .icon-box .images img {
	border: none;
	margin-bottom: 0;
	background: #fff;
	height: 100%;
	object-fit: cover;
	padding: 0;
}

.press-release .read-more {
	margin-top: 15px;
}

#hero .carousel-inner img {
	height: auto;
	width: 100%;
}

.press-release .icon-box:hover::before {
	content: '';
	position: absolute;
	background: #ff916347;
	right: -63px;
	top: -47px;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	transition: all 0.3s;
	z-index: -1;
}

.press-release .icon-box:hover .title a,
.press-release .icon-box:hover .description {
	color: #444;
}

.header-link .top-bar .navbar-expand-lg .navbar-nav>li:last-child .nav-link {
	padding-right: 0;
}

.google-map iframe {
	border: 1px solid #eee;
}

#projects {
	padding-top: 0;
}

.volunteer {
	background: #e67843;
	color: #fff;
	padding: 80px 0;
}

.volunteer .border {
	border-color: #ffffff47!important;
}

.volunteer .section-title h2,
.volunteer .btn-learn-more {
	color: #fff;
}

.volunteer .section-title h2 {
	margin-bottom: 5px;
}


.volunteer .btn-learn-more {
	border-color: #fff;
	margin: 0;
	    background: #e67843;
}

.volunteer .section-title h2::before,
.volunteer .section-title h2::after {
	background: #fff;
}

.volunteer .section-title p {
	margin: 0;
	font-size: 18px;
}

.volunteer .btn-learn-more:hover {
	background: #fff;
	color: #e67843;
}

.events .event-detail {
	margin: 0 0 0 20px;
}

.notices .event-detail {
	margin: 0 0 0 0px;
}

.counts .content .events .count-box {
	text-align: left;
}

.counts .content .events .count-box h3 {
	font-size: 20px;
	line-height: 26px;
	display: block;
	font-weight: 700;
	color: #222222;
}

.counts .tab-content {
	background: #fff;
	box-shadow: 1px 1px 9px #00000017;
}

.counts .nav-tabs .nav-item.show .nav-link,
.counts .nav-tabs .nav-link.active {
	color: #ffff;
	background-color: #e67843;
	border-bottom: transparent;
}

.counts .content .events .count-box p {
	padding-top: 0;
}

.counts .nav-tabs {
	border-bottom: 2px solid #e67843;
}

.counts .content .events .date {
	margin: 0;
	font-size: 14px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	background: #e67843;
	width: 70px;
	height: 70px;
	min-width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	line-height: 17px;
}

.counts .content .events .date span {
	margin: 0;
	display: block;
	color: #fff;
}

.counts .content .events .read-more a {
	margin-top: 5px;
}

.counts .content .events .read-more {
	text-align: right;
}

.counts .content .events .read-more:hover a {
	color: #ff9163;
}

#projects .carousel-item {
	margin-right: 0;
	padding: 12px 15px;
}

#projects .carousel-control-next,
#projects .carousel-control-prev {
	width: 40px;
}

#projects .carousel-control-next-icon,
#projects .carousel-control-prev-icon {
	background: #00000075;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 100%;
	border: 4px solid #ffffffa8;
	width: 40px;
	height: 40px;
	background-size: 11px;
}

#projects .carousel-control-prev-icon:before {
	content: "\f177";
	font-family: fontawesome;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

#projects .carousel-control-next-icon:before {
	content: "\f178";
	font-family: fontawesome;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

#projects .icon-box,
#projects .panel.panel-default,
#projects .panel-thumbnail {
	/*height: 100%;*/
}

@media (min-width: 768px) {
	/* show 3 items */
	#projects .carousel-inner .active,
	#projects .carousel-inner .active+.carousel-item,
	#projects .carousel-inner .active+.carousel-item+.carousel-item,
	#projects .carousel-inner .active+.carousel-item+.carousel-item+.carousel-item {
		display: block;
	}
	#projects .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
	#projects .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item,
	#projects .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item+.carousel-item,
	#projects .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item+.carousel-item+.carousel-item {
		transition: none;
	}
	#projects .carousel-inner .carousel-item-next,
	#projects .carousel-inner .carousel-item-prev {
		position: relative;
		transform: translate3d(0, 0, 0);
	}
	#projects .carousel-inner .active.carousel-item+.carousel-item+.carousel-item+.carousel-item+.carousel-item {
		position: absolute;
		top: 0;
		right: -25%;
		z-index: -1;
		display: block;
		visibility: visible;
	}
	/* left or forward direction */
	#projects .active.carousel-item-left+.carousel-item-next.carousel-item-left,
	#projects .carousel-item-next.carousel-item-left+.carousel-item,
	#projects .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item,
	#projects .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item+.carousel-item,
	#projects .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item+.carousel-item+.carousel-item {
		position: relative;
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	/* farthest right hidden item must be abso position for animations */
	#projects .carousel-inner .carousel-item-prev.carousel-item-right {
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		display: block;
		visibility: visible;
	}
	/* right or prev direction */
	#projects .active.carousel-item-right+.carousel-item-prev.carousel-item-right,
	#projects .carousel-item-prev.carousel-item-right+.carousel-item,
	#projects .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item,
	#projects .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item+.carousel-item,
	#projects .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item+.carousel-item+.carousel-item {

		position: relative;
		transform: translate3d(100%, 0, 0);
		visibility: visible;
		display: block;
		visibility: visible;
	}
}

.floating-btn {
	position: fixed;
	transform: rotate(-90deg);
	top: 52%;
	z-index: 999999;
	right: -76px;
	margin: 0;
}

.floating-btn .get-started a {
	border-radius: 5px;
	border-radius: 5px 5px 0px 0px;
}

.top-bar .floating-btn .get-started a i {
	color: #fff;
	font-size: 16px;
}

.search-box {
	padding: 0px 15px;
}

.search-box .form-control,
.search-box .btn {
	border: none;
}

.search-box .form-control {
	font-size: 13px;
	border-radius: 100px;
	color: #555555;
}

.search-box button {
	color: #e67843;
}

.search-box button:hover {
	color: #ff9163;
}

.search-box .form-control:focus,
.search-box .btn:focus {
	outline: none;
	box-shadow: none;
}

.top-bar .nav-menu .notification a {
	font-size: 19px;
	position: relative;
	color: #e67843;
}

.notification a .count {
	background: #e67843;
	font-size: 10px;
	color: #fff;
	width: 12px;
	height: 12px;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	position: absolute;
	top: 7px;
	right: 6px;
	line-height: 19px;
}

.banner-caption {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	background: #00000026;
	z-index: 0;
}

.logo-caption {
	font-size: 25px;
	text-align: center;
	color: #fff;
	display: block;
	padding: 20px 10px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(5, 5, 5, 0.84) 50%, rgba(0, 0, 0, 0));
	width: 100%;
}

.banner-caption .container {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 100%;
	padding-bottom: 25px;
}

.banner-outer {
	position: relative;
}

.visitors-count .counter {
	font-size: 40px;
	font-weight: bold;
	color: #e67843;
	line-height: 42px;
}

.visitors-count p {
	display: block;
	margin-bottom: 0;
}

footer .border {
	border-color: #ffffff1a !important;
}

.header-link {
	padding: 0 0 0 46px;
}

.header-link .nav-menu {
	justify-content: flex-end!important;
	background-color: transparent;
	/*background-image: linear-gradient(110deg, rgba(255, 255, 255, 0) 3%, #e67843 0%);*/
	min-height: 80px;
	padding: 0 46px 0 0px;
	background:#e67843;
	position:relative;
}
.header-link .nav-menu:before {
    content: "";
    background: url(http://demo.patialafoundation.org/frontend/web/images/triangle.png);
    width: 100px;
    height: 100%;
    position: absolute;
    left: -59px;
    background-repeat: no-repeat;
}qr-code
.top-bar .modal-dialog {
	margin: 0 auto;
}

.top-bar .modal-dialog {
	max-width: 500px;
}

.top-bar .modal-dialog .modal-content {
	padding: 0 1rem;
}

.top-bar .modal-header .close {
	margin-top: -1.5rem;
}

.top-bar .form-title {
	margin: 0rem 0rem 1.5rem;
}

.top-bar .btn-round {
	background: #e67843;
	border: 0;
	padding: 8px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.top-bar .modal-footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 1rem;
	border-top: 1px solid #e9ecef;
	padding-bottom: 0;
}

.top-bar .signup-section {
	padding: 0.3rem 0rem;
}

.top-bar .modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem;
}

.top-bar .modal-body .form-group {
	margin-bottom: 1rem;
}

.top-bar .modal-body .form-group .form-control {
	/*--padding: .375rem .75rem;--*/
	font-size: 15px;
}


.top-bar .form-title h4 {
	font-weight: bold;
	color: #222222;
	text-transform: uppercase;
	margin-top: -20px;
}

.top-bar .signup-section a {
	color: #fc9c74;
	padding: 4px 0;
	text-align: center;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #fc9c7473;
	outline: 0;
	box-shadow: 0 0 0 0.2rem #fc9c7473;
}

.search>.btn {
	color: #fff;
	padding: 6.5px 5px;
	background: #1c1c1c;
	border-radius: 0;
}

.search>.btn:focus {
	box-shadow: none;
}

.main-header .search-box-area {
	position: relative;
}

.search-box-area .search-box {
	position: absolute;
	background: #fff;
	padding: 14px 20px;
	border-top: 3px solid #e5e5e5;
	box-shadow: 0 1px 1px 0px #ccc;
	right: 0px;

	top: 37px;
	z-index: 9;
	transition: .5s ease-in-out;
	opacity: 0;
	top: calc(100% + 30px);
	visibility: hidden;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
}

.top-bar .modal-header .close:focus {
	outline: none;
}

.search-box-area:hover {
	cursor: pointer;
}

.search-box-area:hover .search-box {
	opacity: 1;
	top: 103%;
	visibility: visible;
}

.search-box-area {
	background: #1c1c1c;
	padding: 6.7px 9px;
}

.search-box-area .form-group {
	position: relative;
	margin-bottom: 0px;
}

.search-box-area input[type='search'] {
	width: 250px;
	height: 50px;
	border: 2px solid #e67843;
	padding: 10px 50px 10px 20px;
	z-index: 9;
	margin-bottom: 0px;
}

.search-box-area input[type='search']:focus {
	outline: none;
}

.search-box-area .form-group button {
	position: absolute;
	top: 2px;
	right: 0px;
	width: 46px;
	height: 46px;
	color: #fff;
	background: #e67843;
	cursor: pointer;
	border: none;
	z-index: 10;
}

.search-toggle {
	color: #fff;
	font-size: 14px;
}

.top-member {
	margin-bottom: 40px;
	text-align: center;
}

.top-member h2 {
	font-size: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight: 700;
}

.top-member .img-wrapper {
	width: 129px;
	border-radius: 10px;
	border: 5px solid #fff;
	height: 129px;
	margin: 0 auto;
	position: relative;
}

.top-member .rank {
	bottom: -22px;
	left: 0;
	right: 0;
	position: absolute;
	height: 40px;
	width: 35px;
	background: #111;
	margin: 1px;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	transition: 2s;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	background: #fbce02;
	font-size: 20px;
	font-weight: bold;
	color: #222;
}

.top-member .rank:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	pointer-events: none;
	background: #ffffff4d;
	z-index: -1;
}

.top-member .img-wrapper img {
	border-radius: 5px;
	width:100%;
	height:100%;
	object-fit:cover;
	max-width:100%;
}


/*-------------inner-page css------------------*/

.press-release.press-release-inner-page .images {
	width: 100%;
	float: left;
	max-width: 100%;
	padding-right: 0;
}

.press-release.press-release-inner-page .icon-text {
	width: 100%;
	float: right;
	margin-top: 20px;
}

.services.press-release-inner-page .icon-box::before,
.services.projects-inner-page .icon-box::before {
	display: none;
}

.services .icon-box {
	padding: 20px;
	border-radius: 0;
	box-shadow: none;
	border: 1px solid #00000017;
}

.projects-caption .social-links a {
	width: auto;
}

.projects-caption .social-links a i {
	color: #8c8c8c;
}

.services.projects-inner-page .icon-box {
	padding: 0;
}

.projects-inner-page {
	padding: 60px 0;
}

.projects-caption {
	padding: 20px;
}

.projects-inner-page .icon-box .images img {
	margin: 0;
	border: none;
	border-bottom: 1px solid #00000012;
}

.projects-inner-page .social-links {
	margin-bottom: 5px;
}

.services.projects-inner-page .icon-box {
	position: relative;
}

.services.projects-inner-page .icon-box:after {
	content: "";
	width: 0;
	height: 5px;
	background: #fc9c74;
	position: absolute;
	bottom: 0;
	transition: .5s ease-in-out;
}

.services.projects-inner-page .icon-box:hover:after {
	width: 100%;
}




.detail-content ul, .detail-content ol {
	padding-left: 0px;
}

.detail-img {
	border: 1px solid #eee;
	padding: 20px 10px;
	margin-bottom: 30px;
	text-align: center;
	padding: 10px;
}

.detail-img img {
	max-width: 100%;
}

.detail-content .entry-title {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.detail-content ul li {
	list-style: none;
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
}

.detail-content ul li:before {
	content: "";
	width: 8px;
	height: 8px;
	position: absolute;
	left: 0;
	border: 1.5px solid #fc9c74;
	border-radius: 100%;
	top: 8px;
}

.detail-content .social-links {
	margin-top: 20px;
}

.detail-content .social-links a {
	border: 1px solid;
}


/*-------------inner-page css------------------*/

.sidebar-toggler {
	padding: 0.25rem 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	color: rgba(0, 0, 0, 0.5);
	border-color: rgba(0, 0, 0, 0.1);
}

.sidebar-toggler .sidebar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	content: "";
	background: no-repeat center center;
	background-size: 100% 100%;
	background-image: url("data:image/svg+xml;charset=utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
	cursor: pointer;
}

.sidebar {
	position: relative;
	width: 100%;
	z-index: 99;
}

.sidebar .sidebar-user .category-content:first-child {
	border-bottom-right-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.sidebar .sidebar-user .category-content:last-child {
	border-top-right-radius: 0.25rem;
	border-top-left-radius: 0.25rem;
}

.sidebar .sidebar-content {
	position: relative;
	border-radius: 0.25rem;
	margin-bottom: 1.25rem;
}

.sidebar .category-title {
	position: relative;
	margin: 0;
	padding: 12px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar.sidebar-default .category-title {
	border-bottom-color: #dee2e6;
	background: #e67843;
	color: #fff;
}

.sidebar.sidebar-default .category-title>span {
	display: block;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
}

.sidebar.sidebar-default .category-content .nav li>a {
	color: #b4b4b4;
}

.sidebar.sidebar-default .category-content .nav li>a.active,
.sidebar.sidebar-default .category-content .nav li>a[aria-expanded="true"],
.sidebar.sidebar-default .category-content .nav li>a:hover,
.sidebar.sidebar-default .category-content .nav li>a:focus {
	background: #e67843;
    color: #fff;
}

.sidebar .category-content {
	position: relative;
	border-radius: 0px;
}

.sidebar .category-content .nav {
	position: relative;
	margin: 0;
	padding: 0;
	background: #222222;
}

.sidebar .category-content .nav li {
	position: relative;
	list-style: none;
}

.sidebar .category-content .nav li>a {
	font-size: 0.875rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	transition: background 0.15s linear, color 0.15s linear;
	padding: 24px 20px;
}

.sidebar .category-content .nav li>a[data-toggle="collapse"] {
	padding-right: 2rem;
}

.sidebar .category-content .nav li>a>i {
    float: left;
    margin-top: 0;
    margin-right: 15px;
    transition: opacity 0.2s ease-in-out;
    position: relative;
    top: -1px;
	font-size:23px;
}

.sidebar .category-content .nav li>a[data-toggle="collapse"]:after {
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	height: 1.5rem;
	line-height: 1.5rem;
	display: block;
	content: "\f105";
	font-family: FontAwesome;
	font-size: 1.5rem;
	font-weight: normal;
	transform: rotate(0deg);
	transition: -webkit-transform 0.2s ease-in-out;
}

.sidebar .category-content .nav li>a[data-toggle="collapse"][aria-expanded="true"]:after {
	transform: rotate(90deg);
}

.sidebar .category-content .nav li>a>i {
	transition: opacity 0.2s ease-in-out;
}

.sidebar .category-content .nav li ul {
	padding: 0;
}

.sidebar .category-content .nav li ul>li a {
	padding-left: 2.75rem;
}

.sidebar .category-content .nav>li>a {
	font-weight: 500;
}

.sidebar {
	display: table-cell;
	vertical-align: top;
	width: 280px;
}

.sidebar.sidebar-fixed {
	position: sticky;
	top: 0;
}

.sidebar.sidebar-default .sidebar-category {
	background-color: #fff;
}

.sidebar.sidebar-separate .sidebar-content {
	box-shadow: none;
}

.sidebar.sidebar-separate .sidebar-category {
	margin-bottom: 1.25rem;
	border-radius: 0.25rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.content-wrapper {
	display: table-cell;
}

.sidebar.sidebar-default .category-content .nav li>a.active {
	background: #e67843;
	color: #fff;
}

table.vol-avail input[type=checkbox] {
	background-color: #F0EFE9;
	box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.8);
	border-radius: 3px;
	content: "";
	display: inline-block;
	vertical-align: middle;
	-webkit-appearance: none;
}

table.vol-avail [type="checkbox"]:checked:after {
	color: #5B534B;
	content: '\f00c';
	font-family: 'FontAwesome';
	font-size: 13px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	text-align: center;
	line-height: 18px;
	padding-left: 3px;
}

.top-bar .modal-header {
	padding-bottom: 0;
}

.tox .tox-statusbar{
	display:none !important;
}
.fill-btn{
	background: #e67843;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
	border: 2px solid transparent;
	font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.3s;
    line-height: 1;
}
.fill-btn:hover{
	 background: #fff;
	 color: #e67843;
	 border-color:#e67843;
}
.registeration_form input[type=file]:after {
    content: "Upload";
    position: absolute;
    top: 0;
    right: 0;
    background: #e67843;
    color: #fff;
    font-size: 14px;
    padding: 4px;
    padding: 7px;
    height: 34px;
    width: 30%;
    text-align: center;
}
.registeration_form input[type=file]:before {
    width: 70%;
    height: 34px;
    font-size: 1rem;
    line-height: 32px;
    display: inline-block;
background:#fff;
    border: 1px solid #ced4da;
    padding: 0 10px;
    text-align: center;
    content: "Upload Image";
    content: "";
    text-align: left;
    color: #878787;
    font-weight: 400;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    border-radius: 4px 0 0 4px;
	background:transparent;
}
button.btn.dropdown-toggle.btn-light{
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
	padding: 0.25rem .75rem;
	color:inherit !important;
}
button.btn.dropdown-toggle.btn-light:focus{
	outline:none !important;
}
.registeration_form input[type=file] {
    cursor: pointer;
    width: 100%;
    height: 34px;
    overflow: hidden;
    -webkit-appearance: none;
    position: relative;
    border-radius: 4px;
	
}
.has-success .control-label{
	    color: #444444;
}
.has-success .form-control,.has-success .form-control:focus{
	    border: 1px solid #ced4da;
}
.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label{
	color:#444;
}
.btn.focus, .btn:focus{
	box-shadow:none;
}
.has-success .form-control:focus{
	box-shadow:none;
}
input[type=file]:focus{
	outline:none;
}
#register_content .radio {
    display: inline-block;
    margin: 0;
	margin-right:10px;
}

#register_content .dropdown.bootstrap-select.form-control {
    display:block;

}

.dropdown-menu.show {
    max-width: 100%;
    width: 100%;
    min-width: 100% !important;
	transform:none !important;
	top:35px !important;
	position: absolute; /*-- add new css 22-10-21--*/
    z-index: 99999;     /*-- add new css 22-10-21--*/
}

#register_content{
	max-width:100%;
}
.search-result {
    padding-top: 0;
}
.search-result .inner-content {
    border: 1px solid #ddd;
    padding: 10px;
	 color: #9b9ea1;
	     line-height: 22px;
}
.search-result .inner-content .detail h3 {
    color: #e67843;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
	margin-bottom:3px;
}
.search-result .inner-content .detail p {
    margin: 0;
    color: #9b9ea1;
    line-height: 22px;
    font-size: 15px;
}
.search-result .inner-content .img-wrapper img {
      max-width: 100%;
    width: 90px;
}
.pagination > li > a, .pagination > li > span {

    color: #222222;

}
.page-item.active .page-link {
    background-color: #222;
    border-color: #222;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus ,.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
    color: #fff;
    background-color: #e67843;
    border-color: #e67843;
}
#projects .panel-default {
    border-color: #ddd;
    border: none;
	box-shadow:none;
	margin-bottom:0;
}

.list-view {
    width: 100%;
}



.faq-section {
    background: #fdfdfd;
    min-height: 100vh;
    padding: 0;
}
.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}
.faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #E91E63;
    bottom: -25px;
    margin-left: -30px;
}
.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
  padding:0;
  margin:0;
  
}

.faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px dashed #ddd;
}

.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
    background: #f6f6f6;
    padding-left: 10px;
}
.faq .card .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 500;
  font-size: 17px;
  color: #222;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 23px;
  padding-bottom: 23px;
  margin-bottom:0;
  position:relative;
}

.faq .card .card-header .faq-title .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 14px;
  float: left;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: #e67843;
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}
.faq .faq-title:after {
    content: "\f078";
    font-family: fontawesome;
    position: absolute;
    right: 18px;
    color: #444;
	transform:rotate(0deg);
	    font-size: 12px;
    line-height: 20px;
	top: 37%;
}
.faq .faq-title[aria-expanded="true"]:after {
    content: "\f078";
	transform:rotate(180deg);
}


.faq .card .card-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #444;
  line-height: 26px;
  border-top: 1px solid #f4f4f4;
}

.faq .card .card-body p {
  margin-bottom: 14px;
}
.date-icon i {
    color: #00000036;
    margin-right: 7px;
    position: relative;
    top: -1px;
    font-size: 16px;
}
.press-rel-outer .images {
    padding: 20px;
}
.press-rel-outer .img-wrapper {
    max-height: 150px;
    min-height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    background: #fff;
    object-position: center;
}
.album-outer {
    text-align: center;
}
.album-outer .detail h4 {
    color: #222222;
    text-transform: uppercase;
    font-size: 20px;
}
.album-outer img {
    max-width: 160px;
}

.header-link .nav-menu ul {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: flex-end;
	padding:0;
	flex-wrap: wrap;
}

.header-link .nav-menu{
    min-width: 80%;
    max-width: 80%;
}
main{
	min-height:100%;
}

.equal-img .images {
    min-height: 150px;
    max-height: 150px;
    width: 100%;
	overflow:hidden;
}
.equal-img .images img {
    margin: 0;
    width: 100% !important;
    height: 100% !important;
    min-height: 150px;
	max-height:150px;
    object-fit: cover;
}
.press-rel-inner .projects-caption{
	max-height:350px;
	min-height:350px;
}

.team.equal-img .projects-caption{
	min-height:250px;
}
#gallery_sec .images img {
	width: 100% !important;
    height: 250px !important;
	object-fit:cover;
}
.team.equal-img .images img{
	min-height:350px;
	max-height:350px;
}
.list-view{
	position:relative;
	padding-bottom:50px;
}
.list-view ul.pagination {
    position: absolute;
    right: 15px;
    top: unset;
	bottom:0;
	margin:0;
}

.ekko-lightbox {
    z-index: 9999;
	    cursor: pointer;
}
.ekko-lightbox .modal-dialog{
	position:relative;
}
.ekko-lightbox .modal-dialog:after{
content: "\f00d";
    position: absolute;
    right: -25px;
    top: -20px;
    color: #fff;
    /* border: 2px solid #e67843; */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: fontawesome;
    cursor: pointer;
    border-radius: 100%;
    color: #fff;
    /* background: #fff; */
    font-size: 20px;
}

.member-img img {
    width: 100% !important;
    object-fit: contain;
}

.detail-content .entry-content img {
    
    height: auto;
} 
.detail-content .entry-content iframe{
	max-width: 100%;
}

.navbar-nav .modal .btn{
    background: #e67843;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}
.navbar-nav .modal .btn:hover{
	opacity:0.8;
}
.team.equal-img .images {
    max-height: 350px;
}
div#partial_view_container .list-view ul.pagination {

    bottom: 40px;

}
.counts .content {
    
    width: 100%;
}
button.btn.dropdown-toggle.btn-light {
    color: inherit;
}
.top-bar .navbar .after-login .nav-item .nav-link{
	position:relative;
}
.top-bar .navbar .after-login .nav-item .nav-link:after {
    content: "";
    width: 0.5px;
    height: 11px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 12px;
}
.top-bar .navbar .after-login .nav-item:last-child .nav-link:after {
	display:none;
}






@media (max-width:576px){
	.ekko-lightbox .modal-dialog:after{
		display:none;
	}
}
@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}
/*----responsive------------*/

@media (max-width:1390px) {
	.top-bar {
		padding: 0 41px;
	}
}

@media (max-width:1388px) {
	.header-link .nav-menu a {
		padding: 29.5px 10px;
	}
}

@media (max-width:1298px) {
	.header-link .nav-menu {
		padding: 0 18px 0 0px;
	}
	.header-link .nav-menu a {
		
		font-size: 13px;
	}
}

@media (max-width:1199px) {
	.nav-menu a {
		padding: 6px 0 6px 13px;
		font-size: 13.5px;
	}
	.slider-section .carousel {
		min-height: 271px;
	}
	#header .logo h1 {
		font-size: 18px;
	}

	.volunteer .section-title h2 {
		font-size: 27px;
	}
	.volunteer .section-title p {
		font-size: 17px;
	}
	.logo-caption {
		font-size: 20px;
	}
	#footer .footer-links a {
		padding-left: 5px;
		font-size: 12px;
	}
	#footer .credits {
		font-size: 10px;
	}
	#header .logo img {
		max-width: 155px;
	}
	.header-link {
		padding: 0 0 0 0px;
	}
	.header-link .nav-menu {
		background-image: linear-gradient(110deg, rgba(255, 255, 255, 0) 6%, #e67843 0%);
	}
	#header .logo {
		margin: 0 auto;
	}
	.top-bar {
		padding: 0 0px;
	}
	.header-link .nav-menu {
		padding: 0 18px 0 0px;
	}
	#projects.services .title{
min-height:43px;
}
.header-link .nav-menu {
    min-width: 78%;
    max-width: 78%;
}
.section-title h2 {
    font-size: 30px;
}
.counts iframe {
    width: 100%;
}
.projects-caption {
    max-height: 300px !important; 
    min-height: 300px !important;
}

.press-rel-inner .projects-caption {
    max-height: 400px !important;
    min-height: 400px !important;
}
}



@media (max-width:991px) and (min-width:578px) {
	.logo.mr-md-auto {
		width: 100%;
		text-align: center;
	}
}
@media (max-width:992px){
		#projects.services .title {
    font-size: 16px;
}
#projects.services .description{
	min-height:160px;
	max-height:160px;
}
.projects-caption {
    max-height: 380px !important; 
    min-height: 380px !important;
}
}
@media (max-width:991px) {
	.press-release .images {
		width: 100%;
		max-width: 100%;
		padding-right: 0;
	}
	.press-release .icon-text {
		width: 100%;
		float: right;
		margin-top: 20px;
	}
	#header .logo img {
		max-height: 76px;
	}
	#header .logo h1 .logo-caption {
		margin-left: 8px;
		font-size: 14px;
		line-height: 15px;
	}
	.nav-menu .get-started a {
		padding: 8px 15px;
		font-size: 12px;
	}
	.counts .content .events .count-box h3 {
		font-size: 18px;
		line-height: 22px;
	}
	.counts .content .events .date {
		font-size: 13px;
		width: 70px;
		height: 70px;
		min-width: 70px;
	}
	.counts .content .count-box span {
		font-size: 29px;
		line-height: 24px;
	}
	.clients {
		padding: 40px 0;
	}
	.services .icon-box {
		padding: 15px;
	}
	.volunteer .border {
		border-right: none !important;
		padding-bottom: 30px;
		position: relative;
	}
	.volunteer .border:after {
		content: "";
		width: 80%;
		height: 1px;
		background: #ffffff47;
		bottom: 0;
		position: absolute;
	}
	.banner-caption {
		position: unset;
		height: auto;
		background: #ff9163;
	}
	.banner-caption .container {
		padding-bottom: 0;
		max-width: 100%;
	}
	.logo-caption {
		font-size: 18px;
		background: transparent;
		padding: 15px 0;
		line-height: 24px;
	}
	#footer .credits {
		font-size: 13px;
		padding-top: 0;
		padding-bottom: 5px;
	}
	footer .border {
		border: none !important;
		margin: 10px 0 0 0;
	}
	#header.header-scrolled .logo img {
		max-height: 31px;
		padding: 2px 0;
		opacity: 0;
	}
	.search-box-area {
		padding: 8.7px 9px;
	}
	.search-box-area .search-box {
		padding: 4.6px 20px;
	}
	.slider-section .carousel img {
		min-height: auto;
		width: 100%;
	}
	.slider-section .carousel .carousel-caption {
		width: 100%;
		max-width: 100%;
		position: unset;
		padding-bottom: 40px;
	}
	.slider-section .carousel-caption h1 {
		font-size: 20px;
		padding: 0 10px;
	}
	.carousel-caption .lead {
		font-size: 15px;
	}
	.slider-section .carousel {
		background: #e67843;
	}
	.slider-section .carousel-indicators li.active {
		background: #ff9163;
	}
	.section-title h2 {
		max-width: 300px;
	}


.sidebar .category-content .nav li>a>i {
    margin-right: 10px;
}
.sidebar .category-content .nav li>a{
	    padding: 24px 15px;
}
.team.equal-img .images,.team.equal-img .images img {
    max-height: 250px;
	min-height:250px;
}

}

@media (max-width:776px) {
	.section-title h2 {
		font-size: 22px;
	}
	.section-title h2::before {
		left: -44px;
	}
	.section-title h2::after {
		right: -44px;
	}
	.section-title h2::before,
	.section-title h2::after {
		width: 44px;
	}
	h4 {
		font-size: 18px;
		line-height: 24px;
	}
	.details {
		font-size: 18px;
	}
	.section-title {
		padding-bottom: 15px;
	}
	#hero .carousel-control-next-icon,
	#hero .carousel-control-prev-icon {
		min-width: 30px;
		min-height: 30px;
		background-size: 11px;
		background-image: none;
		font-size: 13px;
		height: 30px;
		border: 4px solid #ffffff5c;
	}
	.press-release .title {
		margin-bottom: 0;
	}
	body {
		font-size: 15px;
	}
	.services .description {
		line-height: 24px;
	}
	.services .title {
		margin-bottom: 5px;
	}
	.banner-form .border {
		border: none !important;
	}
	#header .logo h1 .logo-caption {
		display: none;
	}
	.volunteer .section-title h2 {
		font-size: 22px;
	}
	.btn-learn-more {
		padding: 9px 18px;
		font-size: 13px;
	}
	.search-box .form-control {
		width: 90%;
		height: 30px;
	}
	.top-bar .nav-menu li a {
		font-size: 13px;
	}
	.top-bar .nav-menu {
		max-width: 202px;
		max-width:inherit;
	}
	
	
	.name {
		font-size: 18px;
		line-height: 22px;
	}
	.carousel-indicators {
		margin-bottom: 5px;
	}
	.visitors-count .counter {
		font-size: 30px;
		line-height: 32px;
	}
	.top-bar .nav-menu li a i {
		font-size: 18px;
	}
	.top-bar {
		padding: 0;
	}
	.press-release .title {
		font-size: 16px;
	}
	.sidebar {
		width: 100%;
		display: block;
	}
	section {
		padding: 50px 0;
	}
.top-bar .navbar-expand-lg .navbar-nav{
	margin:0;
}
#projects.services .description{
	min-height:auto;
}
.press-rel-inner .projects-caption, .team.equal-img .projects-caption{
	max-height:100%;
	min-height:auto;
}

.equal-img .images {
    min-height: auto;
    max-height: 100%;

}

#gallery_sec .images img {
    width: 100% !important;
   
}
.team.equal-img .images img {
	max-height:100%;
}
.counts .content {
    width: 100%;
}
.navbar-nav .modal-dialog {
    max-width: 96% !important;
      margin: 0 auto;
}
.navbar-nav .modal{
	z-index:99999;
}
.h3, h3 {
    font-size: 20px;
}
.detail-content .entry-title {
    font-size: 24px;
}
.team.equal-img .images, .team.equal-img .images img {
    max-height: 100%;
    min-height: auto;
}
.projects-inner-page {
    padding: 30px 0;
}
.album-outer .detail h4 {
    font-size: 18px;
}
}
@media (max-width:767px){
	.projects-caption,.press-rel-inner .projects-caption {
    max-height: 100% !important;
    min-height: auto !important;
}
div#partial_view_container .list-view ul.pagination {
    bottom: 11px;
}
}

@media (max-width:576px) {
	.section-title h2 {
		max-width: 217px;
	}
	section {
		padding: 50px 0;
	}
	.top-bar .navbar-expand-lg .navbar-nav.after-login .nav-link {
	  
		padding-top: 0;
		padding-bottom: 2px;
	}
	.top-bar .navbar .after-login .nav-item .nav-link:after{
	top:5px;	
	}

}

@media (max-width:480px) {
	.nav-menu .get-started a {
		padding: 5px 15px;
		font-size: 11px;
	}
}

@media (max-width:400px) {
	#header .logo {
		margin: 0 !important;
	}
	.social-links a {
		line-height: 0px;
		padding: 7px 0;
		margin-right: 3px;
		width: 24px;
		height: 24px;
		font-size: 11px;
	}
	.top-bar .navbar-expand-lg .navbar-nav .nav-link {
		padding: 9.7px 5px;
	}
	.search-box-area {
		padding: 8.7px 5px;
	}
	.search-box-area input[type='search'] {
		width: 235px;
	}
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 0.9;
		transform: translateY(0);
	}