@charset "utf-8";

@font-face {
	font-family: opensans-reg;
	src: url(../fonts/OpenSans-Regular.ttf);
}
@font-face {
	font-family: opensans-semi;
	src: url(../fonts/OpenSans-SemiBold.ttf);
}
@font-face {
	font-family: robo-light;
	src: url(../fonts/Roboto-Light.ttf);
}
@font-face {
	font-family: robo-med;
	src: url(../fonts/Roboto-Medium.ttf);
}
@font-face {
	font-family: great-reg;
	src: url(../fonts/GreatVibes-Regular.ttf);
}
@font-face {
	font-family: alex-reg;
	src: url(../fonts/AlexBrush-Regular.ttf);
}

img {
	max-width: 100%;
}

body {
	font-family: opensans-reg, helvetica, arial, sans-serif;
	background-color: #ffffff;
	color: #333333;
	font-size: 14px;
}

.white-bg {
	background-color: #ffffff;
}

.grey-bg-f3 {
	background-color: #f3f3f3;
}

.grey-bg-ec {
	background-color: #ececec;
}

.grey-bg-f6 {
	background-color: #f6f6f6;
}

.light-blue-bg {
	background-color: #eef6ff;
}

.blue-bg {
	background-color: #006ee3;
}

.padding-reset {
	padding-left: 0px;
	padding-right: 0px;
}

.margin-reset {
	margin-left: 0px;
	margin-right: 0px;
}

a, button, .transition-all {
	-webkit-transition:all 0.2s linear 0.02s;
	-o-transition:all 0.2s linear 0.02s;
	-moz-transition:all 0.2s linear 0.02s;
	transition:all 0.2s linear 0.02s;
}

.assignfixedwidth {
	max-width: 1200px;
	margin: 0 auto;
}

.rp-15 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.rp-20 {
	padding-top: 20px;
	padding-bottom: 20px;
}

.rp-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.rp-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}

/*Scroll to top*/
.scrolltop {
	display:none;
	width:100%;
	margin:0 auto;
	position:fixed;
	bottom:20px;
	right:10px;	
	z-index: 2;
}
.scroll {
	position: absolute;
    right: 20px;
    bottom: 20px;
    background: #000;
    padding: 8px 10px;
    text-align: center;
    margin: 0 0 0 0;
    cursor: pointer;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    border-radius: 50%;		
}
.scroll:hover {
	background:rgba(178,178,178,1.0);
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s; 		
}
.scroll:hover .fa {
	padding-top:-10px;
}
.scroll .fa {
	font-size: 26px;
    margin-top: -4px;
    margin-left: 1px;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
	color: #ffffff;
}
/*Scroll to top*/

/*Fixed Nav*/
.nav-position-fixed {
	position: fixed !important;
	left: 0;
	right: 0;
	background-color: #e39000 !important;
	border-radius: 0;
	border: 0;
	animation: slide-down 0.7s;
	-webkit-transition:all 0.2s linear 0.02s;
	-o-transition:all 0.2s linear 0.02s;
	-moz-transition:all 0.2s linear 0.02s;
	transition:all 0.2s linear 0.02s;
	-webkit-box-shadow: 0px 4px 22px -5px rgba(235,235,235,1);
	-moz-box-shadow: 0px 4px 22px -5px rgba(235,235,235,1);
	box-shadow: 0px 4px 22px -5px rgba(235,235,235,1);
	z-index: 6;
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 0.9;
		transform: translateY(0%);
	}
}

/*header*/
.logo-header {
	padding-bottom: 30px;
}
.logo-header-hide {
	display: none;
}
a.logo {
	display: inline-block;
	max-width: 550px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.navbar-custom {
	margin-top: -30px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
    margin-bottom: 0;
    background-color: transparent;
    border-color: transparent;
}
.navbar-custom-inner {
	background-color: #e39000;
	border-radius: 5px;
}
.logo-header-btn {
	display: inline-block;
	margin-top: 50px;
	font-family: robo-med;
	text-transform: uppercase;
	font-size: 14px;
}
.logo-header-btn.signin {
	background-color: transparent;
	border: 0;
	color: #965f00;
	padding: 8px 10px;
}
.logo-header-btn.donate {
	background-color: #006ee3;
	border: 0;
	color: #fff;
	border-radius: 35px;
	padding: 8px 30px;
	-webkit-box-shadow: 1px 3px 5px -2px rgba(84,84,84,0.55);
	-moz-box-shadow: 1px 3px 5px -2px rgba(84,84,84,0.55);
	box-shadow: 1px 3px 5px -2px rgba(84,84,84,0.55);
}
.logo-header-btn.donate:hover {
	background-color: #e39000;
}
.mobile-links {
	color: #fff;
	margin-top: 15px;
    padding: 0 0 0 15px;
    display: inline-block;
    font-size: 14px;
}
.navbar-toggle-custom {
    padding: 8px 7px;
    margin-top: 9px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
}
.navbar-toggle-custom .icon-bar {
    width: 18px;
    height: 2px;
    background-color: #333;
}
.navbar-nav-custom {
	float: initial;
	text-align: center;
}
.navbar-nav-custom>li {
	float: initial;
	display: inline-block;
	text-align: center;
}
.navbar-nav-custom>li>a {
	display: inline-block;
	color: #fff !important;
	text-transform: uppercase;
	font-size: 14px;
	font-family: robo-med;
}
.navbar-nav-custom>li>a:hover, .navbar-nav-custom>li>a:focus, .navbar-custom .navbar-nav-custom>.open>a {
	background-color: #e39000 !important; 
}
.navbar-nav-custom > li.dropdown > a:after {
	content: "\f107";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    margin-left: 5px;
    color: #fff;
    visibility: visible;
}
.navbar-nav-custom li > .dropdown-menu {
	background-color: #e39000;
	border: 0;
	border-radius: 0;
	padding: 0;
	border-top: 2px solid #fff;
}
.navbar-nav-custom li > .dropdown-menu li a {
	color: #ffffff;
	font-family: robo-light;
	text-transform: uppercase;
	padding: 10px 20px;
	font-size: 13px;
}
.navbar-nav-custom li > .dropdown-menu li a:hover {
	background-color: #c37c00;
}
/*header*/

/*index*/
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: url(../images/overlay.png);
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-background-size: contain;
    background-size: contain;
}
.slider-curve-overlay {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.carousel-indicators li {
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
.carousel-indicators .active {
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
.carousel-caption-custom {
    position: absolute;
    width: 40%;
    left: 12%;
    top: 25%;
    text-align: left;
    padding: 20px 25px;
    background-color: transparent;
    color: #ffffff;
}
.carousel-caption-custom-middle {
	left: 30%;
	text-align: center;
}
.carousel-caption-custom-middle p {
	text-shadow: 14px 5px 8px rgba(0, 0, 0, 1);
}
.carousel-caption-custom h1 {
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
	font-family: opensans-semi;
	text-shadow: 6px 3px 19px rgba(0, 0, 0, 1);
}
.carousel-caption-custom p {
	margin: 0;
    padding: 0;
    margin-bottom: 15px;
    margin-top: 45px;
    font-family: opensans-reg;
    font-size: 26px;
	text-shadow: 6px 3px 19px rgba(0, 0, 0, 1);
}
.slider-btn {
	background-color: #e8ac45;
	border: 0;
	color: #1b0d0c;
	border-radius: 35px;
	padding: 8px 30px;
	margin-top: 15px;
	text-transform: uppercase;
	font-family: robo-med;
	-webkit-box-shadow: 1px 3px 5px -2px rgba(84,84,84,0.55);
	-moz-box-shadow: 1px 3px 5px -2px rgba(84,84,84,0.55);
	box-shadow: 1px 3px 5px -2px rgba(84,84,84,0.55);
}
.slider-btn:hover {
	background-color: #006ee3;
	color: #fff;
}
.desc-title {
	margin: 0;
	font-size: 24px;
	font-family: robo-light;
	text-align: center;
}
.desc-title span {
	font-family: robo-med;
}
.objective-box {
	position: relative;
	display: inline-block;
	width: 95%;
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 40px;
}
.objective-box .img-holder {
	display: block;
	width: 95%;
	margin: 0 auto;
	-webkit-box-shadow: 2px 4px 17px -2px rgba(212,212,212,1);
	-moz-box-shadow: 2px 4px 17px -2px rgba(212,212,212,1);
	box-shadow: 2px 4px 17px -2px rgba(212,212,212,1);
}
.objective-box .img-holder img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: center;
}
.objective-box h4 {
	position: absolute;
	margin: 0;
	left: 30px;
	right: 30px;
	top: 90%;
	text-align: center;
	background-color: rgba(0,110,227,0.9);
	color: #ffffff;
	border-radius: 5px;
	padding: 15px 10px;
}
.about-bg {
	background-image: url(../images/about-bg.png);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center right;
}
.about-content-box {
	display: block;
}
.title {
	margin: 0;
	text-transform: uppercase;
	font-family: robo-med;
	margin-bottom: 20px;
	color: #333333;
}
.title-alt {
	font-family: great-reg;
	text-transform: capitalize;
	font-size: 38px;
}
.title-alt .one-letter {
	font-family: alex-reg;
	font-size: 38px;
	color: #333333;
}
.title span {
	color: #e39000;
}
.short-brief {
	color: #333;
	font-size: 16px;
}
.blue-btn {
	background-color: #006ee3;
	color: #fff;
}
.blue-btn:hover, .blue-btn:focus {
	background-color: #e39000;
}
.activities-bg {
	background-image: url(../images/activities-bg.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}
.activities-carousel {
	margin-top: 20px;
	margin-bottom: 20px;
}
.activities-carousel .owl-nav button.owl-next {
	outline: none !important;
    border: 0 !important;
    border-radius: 50% !important;
    padding: 7px 15px !important;
    color: #fff !important;
    text-align: center;
    position: absolute;
    right: -5%;
    top: 45%;
    background-color: #000000 !important;
    -webkit-box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
    -moz-box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
    box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
}
.activities-carousel .owl-nav button.owl-prev {
    outline: none !important;
    border: 0 !important;
    border-radius: 50% !important;
    padding: 7px 15px !important;
    color: #fff !important;
    text-align: center;
    position: absolute;
    left: -5%;
    top: 45%;
    background-color: #000000 !important;
    -webkit-box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
    -moz-box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
    box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
}
.activities-carousel .owl-nav button.owl-next i, .activities-carousel .owl-nav button.owl-prev i {
	font-size: 24px;
}
.activity-box {
	display: block;
	width: 95%;
	margin: 0 auto;
	text-decoration: none !important;
	text-align: center;
}
.activity-box img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: center;
}
.activity-box h4 {
	margin: 0;
	background-color: #ffffff;
	color: #333333;
	padding: 15px 10px;
}
.testimonial-bg {
	background-image: url(../images/testimonial-bg.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}
.testimonial-box {
	display: block;
	background-color: #ffffff;
	padding: 30px 20px;
}
.testimonial-box-inner {
	display: block;
	width: 90%;
	margin: 0 auto;
}
.testimonial-box-inner img.test-photo {
	width: 110px !important;
	height: 110px;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
}
.test-desc {
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
	margin-top: 10px;
	font-size: 14px;
	height: 80px;
	overflow-y: auto;
}
/* width */
.test-desc::-webkit-scrollbar, 
.test-desc::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.test-desc::-webkit-scrollbar-track,
.test-desc::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.test-desc::-webkit-scrollbar-thumb,
.test-desc::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.test-desc::-webkit-scrollbar-thumb:hover,
.test-desc::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.test-person {
	margin: 0;
	font-family: opensans-semi;
	color: #000;
	font-size: 16px;
}
.test-position {
	font-size: 14px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #646464 !important;
}
.owl-theme .owl-dots .owl-dot:focus {
	outline: none;
	box-shadow: 0;
}
.owl-theme .owl-dots .owl-dot span {
	background: transparent !important;
	border: 2px solid #646464;
}
.morecontent span, .morecontent2 span {
    display: none;
}
.morelink {
    display: inline-block;
    color: #e39001;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none !important;
}
.morelink2 {
    display: inline-block;
    color: #006ee3;
    font-size: 14px;
    text-decoration: none !important;
}
.morelink:hover, .morelink:focus {
	text-decoration: none;
	color: #e39001;
}
/*index*/

/*footer*/
.foo-padding {
	padding-top: 35px;
	padding-bottom: 25px;
}
.dark-hr {
    border-top: 1px solid #d3d3d3;
}
.foo-title {
	margin: 0;
	margin-bottom: 10px;
	color: #e39000;
	font-family: robo-med;
}
.foo-list {
	margin: 0;
	padding: 0;
	margin-top: 10px;
	margin-bottom: 25px;
}
.foo-list li {
	list-style-type: none;
	font-family: opensans-reg;
	font-size: 14px;
}
.foo-list li a {
	display: block;
	color: #333;
	text-decoration: none;
	margin-bottom: 5px;
}
.foo-list li a:hover {
	color: #e39000;
	margin-left: 4px;
}
.copyright-text {
	margin: 0;
	margin-top: 20px;
	font-size: 12px;
}
.copyright-text a {
	font-family: opensans-semi;
	margin-top: 10px;
	color: #006ee3;
}
.foo-mail {
	font-family: opensans-semi !important;
	margin-top: 10px !important;
	color: #006ee3 !important;
}
/*footer*/

/*about us*/
.breadcrumb-bg {
	/* background-image: url(../images/breadcrumb-bg.jpg); */
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center 50%;
}
.breadcrumb-custom {
	background-color: transparent;
	margin: 0;
	padding: 0;
	margin-top: 30px;
	margin-bottom: 30px;
}
.breadcrumb-custom li {
	color: #fff !important;
	text-shadow: 2px 4px 3px rgba(0,0,0,1);
}
.breadcrumb-custom li a {
	color: #fff;
	text-shadow: 2px 4px 3px rgba(0,0,0,1);
}
.breadcrumb-custom2 {
	display: inline-block;
    margin-top: 12px !important;
    margin-left: 15px;
}
.breadcrumb-custom2 li, .breadcrumb-custom2 li a, .breadcrumb-custom2>.active {
    text-shadow: none !important;
}
.about-box {
	display: block;
	width: 80%;
	margin-top: 70px;
	font-size: 16px;
}
.about-intro-img {
	max-width: 350px;
}
.vision-text {
	font-size: 16px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
}
.obj-para {
	font-size: 16px;
    margin: 0 auto;
    margin-bottom: 10px;
    color: #fff;
}
.objective-box2 {
	display: block;
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin-top: 20px;
	margin-bottom: 10px;
	min-height: 190px;
}
.objective-box2 h2 {
	margin: 0;
	font-family: robo-light;
    font-size: 18px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	color: #fff;
}
.objective-box2 h2.green {
	background-color: #11c05b;
}
.objective-box2 h2.orange {
	background-color: #e39000;
}
.objective-box2 h2.purple {
	background-color: #9219e6;
}
.objective-box2 p {
	margin: 0;
	padding: 20px 20px;
	font-size: 14px;
}
.about-donation-bg {
	background-image: url(../images/about-donation-bg.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}
.donation-btn-box {
	display: inline-block;
    padding: 20px 20px;
    /* float: left; */
    width: 33%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.light-blue {
	background-color: rgba(0,110,227,0.9);
}
.dark-blue {
	background-color: rgba(0,73,150,0.9);
} 
.donation-btn {
	margin-top: 0;
	background-color: transparent;
	border: 1px solid #ffffff;
	color: #ffffff;
	text-transform: capitalize;
}
.donation-btn:hover, .donation-btn:focus {
	border: 1px solid #006ee3;
	background-color: #006ee3;
	color: #fff;
}
.our-trustees-carousel {
	-webkit-box-shadow: 2px 4px 17px -2px rgba(212,212,212,1);
    -moz-box-shadow: 2px 4px 17px -2px rgba(212,212,212,1);
    box-shadow: 2px 4px 17px -2px rgba(212,212,212,1);
    margin-top: 10px;
}
.our-trustees-carousel .owl-nav button.owl-next {
	outline: none !important;
    border: 0 !important;
    border-radius: 50% !important;
    padding: 7px 15px !important;
    color: #fff !important;
    text-align: center;
    position: absolute;
    right: -5%;
    top: 45%;
    background-color: #000000 !important;
    -webkit-box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
    -moz-box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
    box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
}
.our-trustees-carousel .owl-nav button.owl-prev {
    outline: none !important;
    border: 0 !important;
    border-radius: 50% !important;
    padding: 7px 15px !important;
    color: #fff !important;
    text-align: center;
    position: absolute;
    left: -5%;
    top: 45%;
    background-color: #000000 !important;
    -webkit-box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
    -moz-box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
    box-shadow: 0px -1px 35px 5px rgba(187,236,255,1);
}
.our-trustees-carousel .owl-nav button.owl-next i, .our-trustees-carousel .owl-nav button.owl-prev i {
	font-size: 24px;
}
.min-height-car {
	min-height: 290px;
	background-color: #fff;
}
.trustee-content {
	display: block;
	width: 85%;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 30px 20px;
}
.trustee-content h3 {
	margin: 0;
	font-family: robo-med;
	color: #333;
	font-size: 20px;
	text-transform: uppercase;
}
.trustee-content h6 {
	margin: 0;
	font-family: robo-light;
	color: #5d5d5d;
	font-size: 14px;
	margin-top: 5px;
	margin-bottom: 15px;
}
.trustee-content p {
    margin: 0;
    font-family: opensans-reg;
    color: #333;
    font-size: 15px;
    text-align: justify;
    line-height: 24px;
    height: 170px;
	overflow-y: auto;
	overflow-x: hidden;
    padding-right: 10px;
}
/* width */
.trustee-content p::-webkit-scrollbar, 
.trustee-content p::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.trustee-content p::-webkit-scrollbar-track,
.trustee-content p::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.trustee-content p::-webkit-scrollbar-thumb,
.trustee-content p::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.trustee-content p::-webkit-scrollbar-thumb:hover,
.trustee-content p::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.trustee-image {
	min-height: 290px;
}
.trustee-image img {
	height: 290px;
	object-fit: cover;
	object-position: center;
}
.about-vision {
	background-image: url(../images/about-vision.png);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center right;
}
/*about us*/

/*Spiritual Activities*/
a.gallery-thumb {
	display: inline-block;
	width: 95%;
	margin: 0 auto;
	text-decoration: none;
	text-align: center;
	border: 1px solid #d6d6d6;
	background-color: #ffffff;
	margin-top: 20px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	font-family: robo-med;
}
a.gallery-thumb img {
	width: 100%;
	height: 225px;
    object-fit: cover;
}
.gallery-thumb-title {
	margin: 0;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #000;
}
.gallery-thumb-subtitle {
	margin: 0;
	margin-bottom: 5px;
    color: #a0a0a0;
    font-size: 12px;
}
.gallery-thumb-calltoaction {
	margin: 0;
	margin-bottom: 5px;
    color: #104193;
    font-size: 12px;
}
/*Spiritual Activities*/

/*Events*/
.gallery-filter-tab {
	padding: 0;
	margin: 0;
	margin-top: 5px;
	margin-bottom: 30px;
}
.gallery-filter-tab li {
	list-style-type: none;
	display: inline-block;
	border: 1px solid #006ee3;
    padding: 6px 15px;
    font-size: 13px;
    border-radius: 0;
    background-color: #006ee3;
    cursor: pointer;
    color: #fff;
    font-family: robo-light;
}
.gallery-filter-tab li:hover, .gallery-filter-tab li:focus, .gallery-filter-tab li.filtr-active {
	background-color: #e39001;
	color: #ffffff;
	border: 1px solid #e39001;
}
.video-wrapper {
	display: block;
    padding: 0;
    border: 1px solid #ddd;
    overflow: hidden;
    height: 215px;
    margin-bottom: 0;
}
.video-wrapper iframe {
	width: 100%;
	height: 100%;
}
/*Events*/

/*Teachings*/
.teachings-bg {
	background-image: url(../images/teachings-border.png);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: bottom center;
	padding-bottom: 40px;
}
a.teachings-box {
	display: block;
	width: 100%;
	text-decoration: none;
	padding: 10px;
	overflow: hidden;
	margin-bottom: 20px;
}
a.teachings-box img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: top;
}
/*Teachings*/

/*Panch Dhaams*/
.panchdhaams-tabs {
	display: block;
	text-align: center;
	border-bottom: 0;
	margin-top: 5px;
	margin-bottom: 25px;
}
.panchdhaams-tabs li {
	display: inline-block;
	float: none;
    border: 0;
    font-size: 13px;
    margin-bottom: 5px;
    border-radius: 0;
    color: #fff !important;
    font-family: robo-light;
    margin-right: 0 !important;
}
.panchdhaams-tabs li a {
	color: #fff;
	margin-right: 0 !important;
	padding-top: 8px;
    padding-bottom: 8px;
    background-color: #006ee3;
    border-radius: 0;
}
.panchdhaams-tabs>li.active>a, .panchdhaams-tabs>li>a:hover , 
.panchdhaams-tabs>li.active>a:hover, .panchdhaams-tabs>li.active>a:focus, 
.panchdhaams-tabs>li>a:focus {
	background-color: #e39001;
    color: #ffffff;
    border: 1px solid #e39001;
}
.carousal-main {
	margin-top: 10px;
}
.carousel-custom img {
	height: 360px !important;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.shadow-class {
	-webkit-box-shadow: -1px 1px 21px -6px rgba(0,0,0,0.37);
	-moz-box-shadow: -1px 1px 21px -6px rgba(0,0,0,0.37);
	box-shadow: -1px 1px 21px -6px rgba(0,0,0,0.37);
}
.panch-dhaam-box {
	display: block;
	padding: 10px 30px 10px 45px;
	border-right: 1px solid #ddd;
	margin-bottom: 20px;
	margin-top: 20px;
}
.panch-dhaam-box h3 {
	margin: 0;
	font-family: robo-med;
	color: #333;
}
.panch-dhaam-box h5 {
	margin: 0;
	font-family: robo-med;
	color: #e39000;
	margin-bottom: 10px;
	margin-top: 5px;
}
.panch-dhaam-box p {
	margin: 0;
	font-family: opensans-reg;
	color: #333;
}
.panch-dhaam-box p a {
	text-decoration: none;
	color: #000;
}
.panch-dhaam-box2 {
	display: block;
	padding: 10px 45px 10px 10px;
	margin-bottom: 20px;
	margin-top: 20px;
}
.panch-dhaam-box2 h5 {
	margin: 0;
	font-family: robo-med;
	text-transform: uppercase;
	color: #333;
	margin-bottom: 10px;
}
.panch-dhaam-box2 p {
	font-family: opensans-reg;
	color: #333;
	font-size: 13px;
}
.panch-dhaam-box2 a {
	font-family: robo-med;
	color: #006ee3;
	text-decoration: none;
}
/*Panch Dhaams*/

/*Donation*/
.donation-bg {
	background-image: url(../images/donation-bg.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.banner {
	display: block;
	padding-top: 90px;
	padding-bottom: 90px;
}
.banner h3 {
	margin: 0;
	font-family: robo-med;
	font-size: 36px;
	color: #fff;
	text-shadow: 6px 3px 19px rgba(0, 0, 0, 1);
}
.donation-box {
	display: block;
	background-color: #fff;
}
.donation-title {
	margin: 0;
	padding-top: 30px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	font-weight: bold;
}
.donation-desc {
	display: block;
	padding-top: 10px;
	padding-bottom: 20px;
	padding-left: 50px;
	padding-right: 50px;
}
.donation-desc p {
	margin: 0;
	text-align: justify;
	margin-bottom: 20px;
}
.donation-title-blue {
	margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
	padding-right: 50px;
    background-color: #006ee3;
    color: #fff;
    font-family: robo-med;
    font-size: 18px;
}
.donation-form-box {
	display: block;
	padding: 40px 45px;
}
.donation-form-box .form-group {
	margin-bottom: 20px;
}
.donation-form-box .form-group label {
	font-size: 13px;
	margin-bottom: 10px;
} 
.donation-form-box .checkbox label {
	font-size: 13px;
}
.donation-form-box .form-group .form-control:not(textarea) {
	height: 32px;
}
/*Radio btn stylized*/
.donation-type {
	display: block;
}
.donation-type .selection {
	display: inline-block;
  	margin-bottom: 0;
}
.donation-type .selection label {
	display: inline-block;
	float: left;
	margin-right: 5px;
	margin-bottom: 0;
	background-color: transparent;
	border: 1px solid #006ee3;
	border-radius: 4px;
	color: #006ee3;
	padding: 0.5em 20px;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
.donation-type .selection label:hover {
    background-color: #006ee3;
    color: #fff;
}
.donation-type .selection input[type=radio] {
    display: none;
}
.donation-type .selection input[type=radio]:checked ~ label {
    background-color: #006ee3;
    color: #fff;
}
/*Radio btn stylized*/
/*Add File btn stylized*/
.file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 4px 5px;
  border: 1px solid #c3c3c3;
  border-radius: 3px;
  transition: 0.2s;
}
.file-drop-area.is-active {
  background-color: rgba(255, 255, 255, 0.05);
}
.fake-btn {
  flex-shrink: 0;
  background-color: #006ee3;
  border: 1px solid #006ee3;
  border-radius: 3px;
  padding: 4px 10px;
  margin-right: 10px;
  font-size: 12px;
  color: #fff;
}
.file-msg {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.file-input:focus {
  outline: none;
}
/*Add File btn stylized*/
/*Donation*/

/*Contact Us*/
.contact-box {
	display: block;
	padding: 20px;
}
.contact-form-box {
	display: block;
	border-left: 1px solid #ddd;
	padding: 20px 40px 40px 40px;
}
.contact-box h3 {
	margin: 0;
    font-size: 20px;
    font-family: robo-med;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact-box a {
	text-decoration: none;
	color: #006ee3;
}
.contact-form-box h3 {
	margin: 0;
    font-size: 22px;
    font-family: robo-med;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact-box h3 span {
    color: #e39000;
}
/*Contact Us*/

/*Sign In*/
.grey-bg-f4 {
	background-color: #f4f4f4;
}
.registration-box {
	display: block;
    padding: 40px 80px;
}
.login-box {
	display: block;
    padding: 40px 80px;
    background-color: #fff;
    border-left: 1px solid #ddd;
}
.registration-box h3 {
	margin: 0;
    font-size: 22px;
    font-family: robo-med;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
}
.login-box h3 {
	margin: 0;
    font-size: 22px;
    font-family: robo-med;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
}
/*Sign In*/

/*Vision Pop up*/
.vision-title {
	margin: 0;
	font-size: 15px;
    color: #006de3;
    font-weight: bold;
    margin-bottom: 10px;
}
.vision-desc {
	margin: 0;
	font-size: 13px;
}
.obj-title {
	margin: 0;
    margin-top: 15px;
    text-align: left;
    padding: 10px 0;
    border-top: 1px solid #eee;
    background-color: #fff;
    color: #000;
    font-weight: bold;
}
.small-underline {
	display: block;
	width: 50px;
	height: 3px;
	background-color: #006de3;
	border-radius: 25px;
	margin-bottom: 10px;
}
.vision-obj-box {
	display: block;
    padding: 20px;
    background-color: #f3f3f3;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 5px;
    -webkit-box-shadow: 1px 3px 5px -2px rgba(84,84,84,0.15);
    -moz-box-shadow: 1px 3px 5px -2px rgba(84,84,84,0.15);
    box-shadow: 1px 3px 5px -2px rgba(84,84,84,0.15);
}
/*Vision Pop up*/

.donation-form-title {
	margin-top: 75px;
    margin-bottom: 42px;
}

.select-donation-dd {
	width: 100%;
	display: inline-block;
	padding: 30px 20px;
	margin-bottom: 10px;
	background-color: rgba(0,110,227,0.9);
	border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
	
}
.select-donation-dd select {
	width: 50%;
	margin: 0 auto;
	font-size: 16px;
	margin-top: 0;
	background-color: #e39000;
    border: 1px solid #e39000;
    color: #ffffff;
    border-radius: 25px;
    height: 50px;
	padding-left: 15px;
	text-align: center;
    text-align-last: center;
}
.df-btn {
	padding: 10px 35px !important;
	font-size: 16px !important;
	margin-top: 10px !important;
	margin-bottom: 20px;
	outline: none !important;
}

@media only screen and (max-width: 1200px) {
	.logo-header-btn {
    margin-top: 40px;
    }
    .navbar-nav-custom>li>a {
    font-size: 13px;
	}
	.objective-box {
	width: 100%;
	}
	.objective-box h4 {
	font-size: 16px;
	}
	.about-content-box {
    padding: 20px 10px;
    background-color: rgba(255, 255, 255, 0.85);
	}
	.activities-carousel .owl-nav button.owl-next,
	.our-trustees-carousel .owl-nav button.owl-next {
    right: -2%;
    }
    .activities-carousel .owl-nav button.owl-prev,
    .our-trustees-carousel .owl-nav button.owl-prev {
    left: -2%;
    }
    .objective-box2 p {
	font-size: 13px;
	}
}

@media only screen and (max-width: 991px) {
	.navbar-nav-custom>li {
	display: block;
	}
	.logo-header-btn {
    margin-top: 8%;
	font-size: 13px;
	}
	.logo-header-btn.signin {
    padding: 5px 10px;
	}
	.logo-header-btn.donate {
    padding: 5px 25px;
	}
	.navbar-nav-custom li > .dropdown-menu li a {
    text-align: center;
    color: #fff !important;
    text-transform: capitalize;
    background-color: #ce8200;
	}
	.carousel-caption-custom {
    width: 60%;
    left: 3%;
    top: 25%;
    padding: 10px 15px;
	}
	.carousel-caption-custom h1 {
    font-size: 23px;
    }
    .carousel-caption-custom p {
    font-size: 18px;
    }
    .slider-btn {
    padding: 5px 25px;
    font-size: 13px;
    margin-top: 0;
	}
	.objective-box .img-holder img {
    height: 135px;
	}
	.objective-box h4 {
    font-size: 13px;
    left: 15px;
    right: 15px;
	}
	.desc-title {
    font-size: 20px;
    }
	.foo-title {
	font-size: 16px;
	}
	.foo-list li {
    font-size: 13px;
	}
	.about-intro-img {
    max-width: 265px;
	}
	.about-box {
    width: 100%;
    margin-top: 0;
    font-size: 14px;
	}
	.vision-text {
    font-size: 14px;
    width: 95%;
    margin-bottom: 15px;
	}
	.objective-box2 h2 {
    font-size: 15px;
	}
	.objective-box2 p {
    font-size: 12px;
	}
	a.gallery-thumb {
    width: 100%;
	}
	.panch-dhaam-box {
    padding: 10px 25px 10px 25px;
    }
    .panch-dhaam-box2 {
    padding: 10px 20px 10px 0px;
	}
	.df-validation-alert {
	margin-top: 130px;
	}
}

@media only screen and (max-width: 850px){
	.fr-850 {
    float: right;
    }
}

@media only screen and (max-width: 767px){
	.xs-text-center {
	text-align: center;
	}
	a.logo {
    max-width: 330px;
	}
	.carousel-caption-custom {
    position: relative;
    bottom: 0;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #006ee3;
    padding: 20px 20px 60px 20px;
    width: 100%;
    text-align: center;
	}
	.overlay {
	display: none;
	}
	.carousel-caption-custom h1 {
    font-size: 20px;
	}
	.carousel-caption-custom p {
    font-size: 14px;
    margin-top: 10px;
	}
	.slider-btn {
    font-size: 11px;
    }
    .carousel-indicators li, .carousel-indicators .active {
    width: 10px;
    height: 10px;
    margin-left: 5px;
	}
	.desc-title {
    font-size: 16px;
	}
	.objective-box {
    margin-bottom: 0px;
    margin-top: 45px;
	}
	.objective-box .img-holder img {
    height: auto;
    width: 100%;
	}
	.objective-box h4 {
    font-size: 13px;
    left: 25px;
    right: 25px;
    top: 95%;
	}
	.xs-pb-20 {
	padding-bottom: 20px;
	}
	.title {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
	}
	.short-brief {
    font-size: 14px;
    text-align: center;
	}
	.foo-padding {
    padding-top: 30px;
    }
    .foo-title {
    font-size: 14px;
	}
	.foo-list li {
    font-size: 12px;
	}
	.foo-list li a {
    margin-bottom: 2px;
	}
	.foo-list {
    margin-bottom: 15px;
	}
	.copyright-text {
    font-size: 11px;
    margin-top: 0;
	}
	.dark-hr {
    padding-top: 10px;
	}
	.breadcrumb-custom {
    margin-top: 0px;
    margin-bottom: 0px;
	}
	.about-box {
	text-align: center;
	}
	.obj-para {
    font-size: 14px;
    }
    .objective-box2 {
    min-height: 100%;
	}
	.donation-btn-box {
    width: 100%;
    margin-bottom: 0;
	}
	a.teachings-box {
	margin-bottom: 10px;
	}
	.carousel-custom img {
    height: auto !important;
    }
	.panch-dhaam-box {
    border-right: 0;
    padding-bottom: 0;
    }
	.panch-dhaam-box2 {
    padding: 0 25px 10px 25px;
    margin-top: 0; 
    }
    .banner {
    padding-top: 45px;
    padding-bottom: 45px;
	}
    .donation-box {
    margin-top: 0;
	}
	.banner h3 {
    font-size: 26px;
    }
    .contact-form-box {
    border-left: 0;
    padding: 0 20px 20px 20px;
    }
    .login-box {
    padding: 10px 40px;
    border-left: 0;
	}
	.registration-box {
    padding: 30px 40px;
	}
	.about-vision-box {
	background-color: rgba(255,255,255,0.8);
    padding-top: 30px;
    padding-bottom: 30px;
	}
	.donation-form-title {
	margin-top: 8px;
	}
	.select-donation-dd select {
	width: 80%;
	}
	
}

@media only screen and (max-width: 480px){
	.navbar-custom {
    margin-top: -40px;
    }
    a.logo {
    margin-bottom: 20px;
	}
	.desc-title {
    font-size: 14px;
	}
	.objective-box h4 {
	padding: 10px 10px;
	}
	.about-bg {
    background-position: 224%;
	}
	.test-desc {
    font-size: 14px;
	}
	.gallery-filter-tab li {
    margin-bottom: 10px;
	}
	.donation-desc {
    padding-top: 0px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
	}
	.donation-desc p {
    text-align: left;
    margin-bottom: 10px;
	}
	.donation-title-blue {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
	}
	.registration-box h3, .login-box h3{
    font-size: 16px;
    }
    .carousel-caption-custom p {
    margin-top: 0;
	}
	.title-alt {
    font-size: 28px;
	}
	.select-donation-dd select {
		font-size: 14px;
	}
}

@media only screen and (max-width: 360px){
	.select-donation-dd select {
		font-size: 13px;
	}
}

@media only screen and (max-width: 320px){}

.fixed-height {
	min-height: 500px;
}

/* Bootstrap Modal in center */
.modal {
	text-align: center;
  }
  
  @media screen and (min-width: 768px) { 
	.modal:before {
	  display: inline-block;
	  vertical-align: middle;
	  content: " ";
	  height: 100%;
	}
  }
  
  .modal-dialog {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
  }
