/*
TABLE OF CONTENT
===============================
01 GLOBAL STYLES
02 GLOBAL OVERRIDES STYLES
03 HEADER STYLES
04 HOME PAGE STYLES
05 INNER PAGE STYLES
===============================
*/

/*
COLOR THEMES
===============================
primary-blue			#0096c7		rgb(0,150,199)
primary-blue-dark		#00759b		rgb(0,117,155)
primary-green			#a5ca16		rgb(165,202,22)
primary-green-dark		#86a900		rgb(134,169,0)

primary-text			#111111
footer-bg1				#f5f5f5
footer-bg2				#cccccc
gray-text				#777777

border-light-gray		#eeeeee
===============================
*/


/* 01 GLOBAL STYLES ==================================================== */
html *{
	-webkit-font-smoothing: antialiased;
}
body {
	color: #111111;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	line-height: 1.6;
}
h1, .h1, h2, .h2, h3, .h3,
h4, .h4, h5, .h5, h6, .h6 {
	font-weight: 400;
	line-height: 1;
}
a { color: #0096c7; }
a:hover { color: #00759b; }
ul, ol {
	padding: 0;
}
ul {
	list-style: none;
}
ul.bulleted {
	padding-left: 20px;
}
p:last-of-type {
	margin-bottom: 0;
}

/* TYPOGRAPHY */
.text-theme1 { color: #0096c7; }
.text-theme2 { color: #a5ca16; }

/* FORMS */
.formpart {
	border: 1px solid #dddddd;
	border-radius: 4px;
	margin-bottom: 1.25rem;
	overflow: hidden;
	padding: 1.25rem;
}
.parttitle {
	background-color: #efefef;
	font-size: 1.125rem;
	font-weight: 600;
	margin: -1.25rem -1.25rem 1rem;
	padding: 0.5rem 1.25rem;
}
/* //GLOBAL STYLES */


/* 02 GLOBAL OVERRIDES STYLES ==================================================== */
/* BUTTON OVERRIDES */
.btn {
	border-radius: 0.375rem;
	padding: 0.5rem 1.5rem;
	transition: all 0.3s ease;
}
.btn.focus, .btn:focus {
	box-shadow: none;
}
.btn-theme1 {
	background-color: #0096c7;
	border-color: #00759b;
	color: #ffffff;
}
.btn-theme1:hover {
	background-color: #00759b;
	border-color: #00759b;
	color: #ffffff;
}
.btn-theme2 {
	background-color: #a5ca16;
	border-color: #86a900;
	color: #ffffff;
}
.btn-theme2:hover {
	background-color: #86a900;
		border-color: #86a900;
		color: #ffffff;
}
.btn-line-theme1 {
	background-color: transparent;
	border: 1px solid #0096c7;
	color: #0096c7;
}
.btn-line-theme1:hover {
	background-color: #0096c7;
	border-color: #00759b;
	color: #ffffff;
}
.btn-line-theme2 {
	background-color: transparent;
	border: 1px solid #a5ca16;
	color: #a5ca16;
}
.btn-line-theme2:hover {
	background-color: #a5ca16;
	border-color: #86a900;
	color: #ffffff;
}
.btn-line-white {
	background-color: transparent;
	border: 1px solid #ffffff;
	color: #ffffff;
}
.btn-line-white:hover {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #0096c7;
}
.btn-light {
	background-color: #f1f1f1;
	border-color: #999999;
}
.btn-light:hover {
	background-color: #dfdfdf;
	border-color: #999999;
}
.btn-tipcor {
	border-radius: 0;
}
.btn-lg {
	font-size: 1.125rem;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
}
.btn-xl {
	font-size: 1.25rem;
	padding: 0.875rem 2rem;
}
button:focus {
	outline: none;
}

/* NAVIGATION OVERRIDES */
.navbar {
	padding: 1rem 0;
	transition: all 0.3s ease;
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	max-height: 50px;
	transition: all 0.3s ease;
}
.navbar-toggler {
	border: 0;
	border-radius: 0;
	padding: 0;
}
.navbar-light .navbar-toggler {
	color: #ffffff;
}
.navbar-nav {
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
}
.navbar-light .navbar-nav .nav-link {
	color: #111111;
}
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
	color: #0096c7;
}
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active {
	font-weight: 600;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: #0096c7;
}

/* DROPDOWN OVERRIDES */
.dropdown-item {
	padding-left: 1rem;
	padding-right: 1rem;
}
.dropdown-toggle::after {
	margin-bottom: -0.1rem;
}
.navbar-nav .dropdown-menu {
	min-width: 13.75rem;
}
.navbar-nav .dropdown-item {
	line-height: 1.3;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
	white-space: inherit;
}
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
/* 	background-color: transparent;
	color: #0096c7; */
	background-color: #00759b;
}
ul.dropdown-menu.show li a {
	color: #111111;
}

/* FORM OVERRIDES */
label {
	color: #777777;
	font-weight: 600;
}
.form-control,
.custom-select {
	border-radius: 0.375rem;
	height: calc(2em + .75rem + 2px);
}
.form-control:focus,
.custom-select:focus {
	border-color: #0096c7;
	box-shadow: none;
}
.custom-control-input:focus ~ .custom-control-label::before {
	box-shadow: none;
}
.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #999999;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
	color: #999999;
}
.form-control:-ms-input-placeholder { /* IE 10+ */
	color: #999999;
}
.form-control:-moz-placeholder { /* Firefox 18- */
	color: #999999;
}

/* PAGINATION OVERRIDES */
.pagination {
	margin-top: 1.5rem;
	padding: 1rem 0 1rem;
}
.pagination ul {
	display: flex;
	justify-content: center;
	width: 100%;
}
.pagination ul li a {
	border: 1px solid transparent;
	border-radius: 50%;
	color: #999999;
	display: block;
	font-weight: 600;
	height: 34px;
	line-height: 32px;
	margin: 0 5px;
	text-align: center;
	width: 34px;
}
.pagination ul li a:hover {
	border-color: #64b95e;
	color: #0ca202;
	text-decoration: none;
}
.pagination ul li a.active {
	background-color: #64b95e;
	border: 1px solid #0ca202;
	color: #ffffff;
}

/* GRID OVERRIDES */
.gutter2x {
	margin-left: -1px;
	margin-right: -1px;
}
.gutter2x > [class*="col-"] {
	padding-left: 1px;
	padding-right: 1px;
}
.gutter10x {
	margin-left: -5px;
	margin-right: -5px;
}
.gutter10x > [class*="col-"] {
	padding-left: 5px;
	padding-right: 5px;
}
.gutter20x {
	margin-left: -10px;
	margin-right: -10px;
}
.gutter20x > [class*="col-"] {
	padding-left: 10px;
	padding-right: 10px;
}
/* //GLOBAL OVERRIDES STYLES */


/* 03 HEADER STYLES ==================================================== */
.header {
	background-color: #ffffff;
}
.topbar {
	background-color: #0096c7;
	color: #ffffff;
}
.topbar .container {
	position: relative;
}
.topbar a {
	color: #ffffff;
}
.topbar ul {
	display: flex;
	margin: 0;
}
.topbar ul li a {
	display: block;
	padding: 0.75rem 1.125rem;
}
.topbar ul li a:hover {
	text-decoration: none;
}
.topbar-usernav {
	justify-content: flex-end;
}
.topbar ul li a {
	border-right: 1px solid rgba(255,255,255,0.4);
}
.topbar-contactinfo li:first-child a,
.topbar-usernav li:first-child a { border-left: 1px solid rgba(255,255,255,0.4); }
#menu-social-icon li:first-child a { border-left: 0; }
.topbar-usernav li a i {
	margin-left: 0.25rem;
}
.headbar {
	background-color: #ffffff;
}
.header.stickyheader {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}
.header.stickyheader .navbar {
	padding: 0.5rem 0;
}
.header.stickyheader .navbar-brand img {
	max-height: 42px;
}

/* SEARCH FORM */
.headersearch {
	background-color: #00759b;
	display: none;
	max-width: 100%;
	min-width: 360px;
	padding: 1.125rem;
	position: absolute;
	right: 15px;
	top: 100%;
	z-index: 99;
}
.headersearch .formwrap {
	position: relative;
}
.headersearch .cancel {
	background-color: rgba(255,255,255,0.4);
	border: 1px solid rgba(255,255,255,1);
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.125rem; 
	height: 38px;
	line-height: 38px;
	position: absolute;
	right: -15px;
	text-align: center;
	top: -15px;
	width: 38px;
}
.headersearch .cancel:hover {
	background-color: rgba(255,255,255,1);
	border-color: #0096c7;
	color: #0096c7;
}
.headersearch .icon {
	color: rgba(255,255,255,0.7);
	left: 0.75rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.headersearch .form-control {
	background-color: transparent;
	border-color: rgba(255,255,255,0.5);
	border-radius: 0;
	color: #ffffff;
	height: 48px;
	padding-left: 2.25rem;
}
.headersearch .form-control:focus {
	border-color: rgba(255,255,255,1);
}
.headersearch .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: rgba(255,255,255,0.7);
}
.headersearch .form-control::-moz-placeholder { /* Firefox 19+ */
	color: rgba(255,255,255,0.7);
}
.headersearch .form-control:-ms-input-placeholder { /* IE 10+ */
	color: rgba(255,255,255,0.7);
}
.headersearch .form-control:-moz-placeholder { /* Firefox 18- */
	color: rgba(255,255,255,0.7);
}
/* //HEADER STYLES */

/* 04 HOME PAGE STYLES ==================================================== */
/* GLOBAL STYLES */
.section {
	padding: 4.25rem 0;
}
.sectitle {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.75rem;
	padding-bottom: 0.75rem;
	position: relative;
	text-transform: uppercase;
}
.sectitle::before {
	border-top: 1px solid #0096c7;
	bottom: 0;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	width: 40px;
}
.linksmodule ul li {
	padding: 0.375rem 0;
}
.linksmodule ul li:first-of-type {
	padding-top: 0;
}
.linksmodule ul li:last-of-type {
	padding-bottom: 0;
}
.linksmodule ul li a {
	color: #111111;
}
.linksmodule ul li a:hover {
	color: #0096c7;
	text-decoration: none;
}

/* SLIDER SECTION */
.sliderimg {
	background-position: center;
	background-size: cover;
	display: flex;
	height: 500px;
	position: relative;
	text-align: center;
}
.sliderimg::before,
.membership::before {
	background-color: rgba(0,0,0,0.4);
}
.sliderimg::before,
.membership::before,
.pagetitle::before,
.adbanner::before {
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}
.slidertxt {
	align-self: center;
	color: #ffffff;
	flex-basis: 100%;
	z-index: 1;
}
.slidertxt h1 {
	font-size: 2.75rem;
	font-weight: 300;
	margin-bottom: 2rem;
}
.slidertxt h1 strong {
	font-weight: 400;
}

/* OWL CAROUSEL */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
	background-color: rgba(255,255,255,0.3);
	border-radius: 50%;
	color: rgba(255,255,255,0.7);
	font-size: 3rem;
	height: 3rem;
	line-height: 2.8rem;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	width: 3rem;
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
	background-color: rgba(255,255,255,0.6);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.4);
	color: #ffffff;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.owl-carousel .owl-nav .owl-prev {
	left: 10px;
}
.owl-carousel .owl-nav .owl-next {
	right: 10px;
}

/* UPCOMING EVENT SECTION */
.upcomingevent {
	background-color: #efefef;
}
.event-wrap,
.event-lft,
.event-title {
	align-items: center;
	display: flex;
}
.event-wrap {
	justify-content: space-between;
}
.event-wrap,
.event-rt {
	flex-wrap: wrap;
}
.event-lft {
	flex: 0 0 75%;
}
.event-title,
.event-name,
.event-rt {
	padding-bottom: 2rem;
	padding-top: 2rem;
}
.event-title {
	border-right: 1px solid #d7d7d7;
	color: #0096c7;
	font-size: 1.375rem;
	padding-right: 2rem;
	text-transform: uppercase;
}
.event-title img {
	margin-right: 0.5rem;
	max-height: 3.375rem;
}
.event-name {
	padding-left: 2rem;
}
.event-name h3 {
	font-size: 1.375rem;
	margin-bottom: 0;
}
.event-name h3 a {
	color: #111111;
}
.event-name h3 a:hover {
	color: #0096c7;
	text-decoration: none;
}
.event-name p {
	color: #777777;
}
.event-rt {
	flex: 0 0 25%;
	text-align: right;
}

/* POSTS STYLES */
.postblock {
	display: flex;
	margin-bottom: 2.5rem;
}
.post-img {
	flex: 0 0 200px;
	margin-right: 1.25rem;
	max-height: 160px;
	overflow: hidden;
}
.post-img img {
	transform: scale(1);
	transition: all 0.3s ease;
}
.postblock:hover .post-img img {
	transform: scale(1.2);
}
.post-details {
	flex: 0 1 auto;
}
.post-details .post-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
.post-details .post-title a {
	color: #111111;
}
.post-details .post-title a:hover {
	color: #0096c7;
	text-decoration: none;
}
.post-details p {
	margin-bottom: 1.25rem;
}

/* ASIDE STYLES */
.sideblock {
	margin-bottom: 2rem;
}
.btn-donation {
	background: rgba(165,202,22,1);
	background: -moz-linear-gradient(180deg, rgba(165,202,22,1) 0%, rgba(134,169,0,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(165,202,22,1) 0%, rgba(134,169,0,1) 100%);
	background: linear-gradient(180deg, rgba(165,202,22,1) 0%, rgba(134,169,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a5ca16",endColorstr="#86a900",GradientType=1);
	border-radius: 50px;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 600;
	padding: 1.5rem;
	text-transform: uppercase;
}
.btn-donation:hover {
	background: rgba(134,169,0,1);
	background: -moz-linear-gradient(180deg, rgba(134,169,0,1) 0%, rgba(134,169,0,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(134,169,0,1) 0%, rgba(134,169,0,1) 100%);
	background: linear-gradient(180deg, rgba(134,169,0,1) 0%, rgba(134,169,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#86a900",endColorstr="#86a900",GradientType=1);
	color: #ffffff;
}

/* MEMBERSHIP SECTION */
.membership {
	background: url(../images/membership.jpg) no-repeat;
	background-position: center;
	background-attachment: fixed;
	color: #ffffff;
	position: relative;
	text-align: center;
}
.membership .container {
	position: relative;
	z-index: 1;
}
.membership h3 {
	font-size: 2.625rem;
	font-weight: 300;
	margin-bottom: 1.5rem;
}
.membership p {
	margin-bottom: 2.5rem;
}
.membership .btn-line-white:hover {
	background-color: #0096c7;
	border-color: #00759b;
	color: #ffffff;
}

/* MILESTONES SECTION */
.milestones {
	padding: 2.25rem 0;
}
.stat-item {
	text-align: center;
}
.stat-item .icon {
	color: #0069ab;
	font-size: 2.625rem;
	margin-bottom: 0.75rem;
}
.stat-item .count {
	color: #555555;
	font-size: 2.625rem;
	font-weight: 600;
	line-height: 1.1;
}
.stat-item p {
	line-height: 1.3;
}

/* FOOTER STYLES */
.footer {
	background-color: #f5f5f5;
	font-size: 0.9375rem;
}
.footer a{
	color: #111111;
}
.footer a:hover {
	color: #0096c7;
	text-decoration: none;
}
.foottop {
	padding: 3.75rem 0;
}
.footbtm {
	background-color: #cccccc;
	padding: 0.75rem 0;
}
.footlogo {
	margin-bottom: 1rem;
	max-height: 44px;
	max-width: 180px;
}
.footsocial {
	margin-top: 1rem;
}
.footsocial a {
	color: #777777;
	display: inline-block;
	font-size: 1.25rem;
	margin: 0 0.25rem;
	padding: 0.25rem;
}

.footblock .foothead {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}
.footblock ul li {
	margin: 0.5rem 0;
}
.contactinfo h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}
.contactinfo ul li {
	padding-left: 1.5rem;
	position: relative;
}
.contactinfo ul li i {
	left: 0;
	position: absolute;
	top: 0.25rem;
}
.footbtm ul {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 0;
}
.footbtm ul li {
	border-right: 1px solid #999999;
	line-height: 1;
	padding: 0 0.75rem;
}
.footbtm ul li:first-of-type {
	padding-left: 0;
}
.footbtm ul li:last-of-type {
	border-right: 0;
	padding-right: 0;
}
/* //* HOME PAGE STYLES */


/* 05 INNER PAGE STYLES ==================================================== */
.pagetitle {
	background: url(../images/pagetitle-bg.jpg) no-repeat;
	background-attachment: fixed;
	background-position: center;
	color: #ffffff;
	padding: 2.5rem 0;
	position: relative;
}
.pagetitle a {
	color: #ffffff;
}
.pagetitle::before {
	background-color: rgba(0,117,155,0.7);
}
.pagetitle .container {
	position: relative;
	z-index: 1;
}
.pagetitle .titletext {
	font-size: 2.625rem;
	font-weight: 300;
}
.breadcrumb {
	background-color: transparent;
	border-radius: 0;
	font-size: 0.875rem;
	margin-bottom: 0;
	padding: 0.25rem 0;
}
.pagetitle .breadcrumb-item.active {
	color: #ffffff;
	font-weight: 600;
}
.breadcrumb-item+.breadcrumb-item::before {
	color: #ffffff;
}
.pagecontent-title {
	font-weight: 400;
	margin-bottom: 2rem;
}
.pagecontent img {
	max-width: 100%;
}
.pagecontent ul,
.pagecontent ol {
	padding-left: 1.5rem;
}
.pagecontent ul {
	list-style: disc;
}
.pagecontent ul li,
.pagecontent ol li {
	padding-bottom: 0.25rem;
	padding-top: 0.25rem;
}
.adbanner {
	background-position: center;
	background-size: cover;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	text-align: center;
}
.adbanner::before {
	background-color: rgba(0,0,0,0.3);
}
.adbanner a,
.membershipbanner a {
	align-items: center;
	border-radius: 4px;
	color: #ffffff;
	display: flex;
	height: 100px;
	position: relative;
}
.adbanner a:hover,
.membershipbanner a:hover {
	text-decoration: none;
}
.adbanner .typo,
.membershipbanner .typo {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.1;
}
.adbanner a {
	justify-content: center;
	padding: 1rem 2rem;
	z-index: 1;
}
.adbanner .typo {
	transform: scale(1);
	transition: all 0.3s ease;
}
.adbanner:hover .typo {
	transform: scale(1.1);
}
.membershipbanner {
	overflow: hidden;
}
.membershipbanner a {
	background: rgb(0,150,199);
	background: -moz-linear-gradient(180deg, rgba(0,150,199,1) 0%, rgba(0,117,155,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(0,150,199,1) 0%, rgba(0,117,155,1) 100%);
	background: linear-gradient(180deg, rgba(0,150,199,1) 0%, rgba(0,117,155,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0096c7",endColorstr="#00759b",GradientType=1);
}
.membershipbanner .icon {
	bottom: -10px;
	font-size: 6.25rem;
	left: -10px;
	opacity: 0.5;
	position: absolute;
	transform: scale(1);
	transition: all 0.3s ease;
}
.membershipbanner:hover .icon {
	opacity: 0.7;
	transform: scale(1.2) rotate(10deg);
}
.membershipbanner .typo {
	margin-left: 6rem;
	padding-right: 2rem;
}
/* //INNER PAGE STYLES */


/* 06 CONTACT PAGE STYLES ==================================================== */
.pagecontent .contactinfo {
	border: 1px solid #eeeeee;
	border-radius: 4px;
	margin-bottom: 2.5rem;
	padding: 1.5rem;
}
.pagecontent .contactinfo h3 {
	font-size: 1.25rem;
	line-height: 1.3;
}
.pagecontent .contactinfo ul {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
}
.pagecontent .contactinfo ul li i {
	top: 0.5rem;
}
/* //CONTACT PAGE STYLES */


/* RESPONSIVE RULES ==================================================== */
@media (min-width: 576px) {
	.hide-sm-up { display: none; }
	.header .sitelogo img { max-width: 190px; }
}
@media (min-width: 768px) {
	.hide-md-up { display: none; }
	.lineright { border-right: 1px solid #eeeeee; }
	.spcr-lft { padding-right: 15px; }
	.sidebar { padding-left: 15px; }
	
	/* onHover Dropdown */
 	.dropdown:hover .dropdown-menu, .btn-group:hover .dropdown-menu { display: block; }
    .dropdown-menu { margin-top: 0; }
    .dropdown-toggle { margin-bottom: 2px; }
    .navbar .dropdown-toggle, .nav-tabs .dropdown-toggle { margin-bottom: 0; }
}
@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-link { padding-left: 0.75rem; padding-right: 0.75rem; }
	.navbar-nav .dropdown-menu { background-color: #0096c7; border-color: #00759b; }
	.navbar-nav .dropdown-item,
	.navbar-nav ul.dropdown-menu.show li a { color: #ffffff; }
	.navbar-nav .dropdown-item:focus, .navbar-nav .dropdown-item:hover
	.navbar-nav ul.dropdown-menu.show li a:focus, .navbar-nav ul.dropdown-menu.show li a:hover { background-color: #00759b; color: #ffffff; }
	.navbar-nav .dropdown-item.active, .navbar-nav .dropdown-item:active { background-color: #00759b; }
	.membershipwrap { margin-left: 15%; margin-right: 15%; }
}
@media (max-width: 991.98px) {
	.dropdown-menu { border: 0; border-radius: 0; padding: 0; }
	.navbar-collapse { border-top: 1px solid #dfdfdf; margin-top: 0.75rem; }
	.sliderimg { height: 380px; }
	.event-title { padding-right: 1.25rem; }
	.event-name { padding-left: 1.25rem; }
	.post-img { flex: 0 0 120px; }
	.post-details .post-title, .post-details p { margin-bottom: 0.5rem; }
	.btn-donation { padding: 1rem; }
}
@media (max-width: 767.98px) {
	.hide-sm-down { display: none; }
	.btn-xl { font-size: 1.125rem; padding: 0.75rem 1.5rem; }
	.section, .foottop, .pagetitle { padding: 1.5rem 0; }
	.topbar ul li a { border: 0; padding: 0.5rem 0.75rem; }
	.topbar-contactinfo li:first-child a, .topbar-usernav li:first-child a { border: 0; }
	.sliderimg { background-size: cover; height: 280px; }
	.event-wrap { display: block; padding: 1.5rem 0; }
	.event-title, .event-name, .event-rt { padding-bottom: 0; padding-top: 0; }
	.event-lft { justify-content: center; }
	.event-rt { margin-top: 1.5rem; text-align: center; }
	.sidebar { border-top: 1px solid #cccccc; margin-top: 1rem; padding-top: 2rem; }
	.sideblock { margin-bottom: 1.25rem; }
	.membership p { margin-bottom: 1.5rem; }
	.footblock { margin-bottom: 0.75rem; margin-top: 0.75rem; }
	.foot-about { border-bottom: 1px solid #cccccc; padding-bottom: 1rem; }
	.pagetitle .titletext { font-size: 2.25rem; }
}
@media (max-width: 575.98px) {
	.hide-xs-down { display: none; }
	.header .container-fluid { padding-left: 10px; padding-right: 10px; }
	.headersearch { left: 0; right: 0; width: 100%; }
	.slidertxt h1 { font-size: 2.25rem; }
	.event-lft { display: block; }
	.event-title { border-right: 0; justify-content: center; margin-bottom: 1.25rem; padding-right: 0; }
	.event-name { padding-left: 0; text-align: center; }
	.postblock { display: block; flex-wrap: wrap; }
	.post-img { margin-bottom: 1rem; margin-right: 0; max-height: 220px; }
	.stat-item .icon, .stat-item .count { font-size: 2rem; }
	.footbtm p { text-align: center; }
	.footbtm ul { justify-content: center; margin-top: 0.375rem; }
}
/* //RESPONSIVE RULES */