/* --------------------------- */
/* ---------- Fonts ---------- */
/* --------------------------- */

/* Montserrat */
@import 'https://fonts.googleapis.com/css?family=Montserrat:400,700,700i';

/* Bitter */
@import 'https://fonts.googleapis.com/css?family=Bitter:400,400i,700,700i';

/* Source Sans */
@import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i,700,700i';

/* ------------------------------------ */
/* ---------- General styles ---------- */
/* ------------------------------------ */

* {
	font-smooth: antialiased;
	-webkit-font-smoothing : antialiased;
	-moz-osx-font-smoothing: grayscale;
}
input {
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
html {
	overflow-x: hidden;
	position: relative;
	height: 100%;
}
body {
	overflow-x: hidden;
	width: 100%;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	line-height: 28px;
	color: #6b6b6b;
	overflow: hidden;
}
.clear {
	clear: both;
	display: block;
}
a {
	text-decoration: none;
	-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}
#page {
	width: auto;
	z-index: 105;
	overflow: hidden;
}
#page:before {
	height: 99px;
	display: block;
	content: "";
	background: #091f3d;
}
.vcenter {
    display: inline-block;
    vertical-align: middle;
}
.vcenter.img-left img {
    margin: 0 10px 0 0;
}
.vcenter.img-right img {
    margin: 0 0 0 10px;
}

/* ----------------------------------- */
/* ---------- Header styles ---------- */
/* ----------------------------------- */

.site-header {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	height: 99px;
	z-index: 20000;
	background: url('../images/header-bg.jpg') no-repeat center top #081d3b;
}

/* logo */
.site-header .logo {
    margin: auto;
    width: 243px;
    display: flex;
    align-items: center;
    height: 99px;
    position: relative;
    justify-content: center;
}
.site-header .logo a {
	display: block;
}
.site-header .logo a.home-logo {
	display: none;
}
.site-header .logo img {
	display: block;
	width: 100%;
	margin: auto;
}

/* top-menu */
.site-header .top-menu {
	position: absolute;
	top: 0px;
	height: 99px;
	right: 40px;
	font-size: 18px;
	line-height: 22px;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	display: flex;
	align-items: center;
}
.site-header .top-menu > ul > li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 35px;
}
.site-header .top-menu > ul > li:last-of-type {
	margin-right: 0;
}
.site-header .top-menu > ul > li > a {
	text-transform: uppercase;
	display: block;
	color: #ffffff;
	position: relative;
	font-weight: 700;
	text-decoration: none;
}
.site-header .top-menu > ul > li > a.newsletter {
	padding-left: 38px;
}
.site-header .top-menu > ul > li > a.newsletter:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	width: 28px;
	height: 29px;
	margin-top: -15px;
	background: url('../images/newsletter-icon.png');
}
.site-header .top-menu > ul > li > a.newsletter:hover {
	color: #3bb08e;
}
.site-header .top-menu > ul > li > a.donate {
	font-size: 22px;
	text-transform: none;
	font-family: 'Bitter', serif;
	background: #e95050;
	padding: 8px 20px 10px 56px;
}
.site-header .top-menu > ul > li > a.donate:before {
	content: "";
	position: absolute;
	left: 15px;
	top: 50%;
	width: 26px;
	height: 26px;
	margin-top: -13px;
	background: url('../images/donate-icon.png');
}
.site-header .top-menu > ul > li > a.donate:hover {
	background: #c44747;
}

/* toggle-main-menu */
.toggle-main-menu {
    position: fixed;
    top: 33px;
    left: 40px;
    cursor: pointer;
    z-index: 40000;
}
.toggle-main-menu .icon {
    width: 47px;
    height: 33px;
    position: relative;
}
.toggle-main-menu .icon .bar {
    position: absolute;
    width: 47px;
    height: 5px;
    background: #ffffff;
    border-radius: 2px;
    left: 0px;
    right: 0px;
    -webkit-transition: 0.35s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.35s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.35s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.35s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.35s all cubic-bezier(0.23, 1, 0.32, 1);
}
.toggle-main-menu:hover .icon .bar,
.toggle-main-menu.active .icon .bar {
    background: #ffffff;
}
.toggle-main-menu .icon .top-bar {
    top: 0px;
}
.toggle-main-menu .icon .top-bar.middle {
    top: 14px;
}
.toggle-main-menu .icon .top-bar.rotate {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.toggle-main-menu .icon .middle-bar {
    top: 14px;
}
.toggle-main-menu.active .icon .middle-bar {
    opacity: 0;
}
.toggle-main-menu .icon .bottom-bar {
    top: 28px;
}
.toggle-main-menu .icon .bottom-bar.middle {
    top: 14px;
}
.toggle-main-menu .icon .bottom-bar.rotate {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.toggle-main-menu .text {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 33px;
    padding-left: 20px;
    font-weight: 600;
    display: block;
    color: #ffffff;
    position: absolute;
    left: 100%;
    top: 0px;
}
.toggle-main-menu.active .text {
    display: none;
}

/* ----------------------------------- */
/* ------- Main menu styles ---------- */
/* ----------------------------------- */

.main-menu {
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	width: 575px;
	padding-left: 127px;
	padding-top: 99px;
	background: #041a34;
	-webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	opacity: 0;
	z-index: 30000;
}
.main-menu-active .main-menu {
	-webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* main-menu-left */
.main-menu .main-menu-left {
	position: absolute;
	top: 99px;
	bottom: 0px;
	width: 127px;
	left: 0px;
	background: #2fa381;
}
.main-menu .main-menu-left ul li a {
	display: flex;
	height: 86px;
	color: #ffffff;
	align-items: center;
	justify-content: center;
}
.main-menu .main-menu-left ul li:nth-of-type(2n+1) a {
	background: #3bb08e;
}
.main-menu .main-menu-left ul li a:hover {
	background: #268469;
}
.main-menu .main-menu-left ul li a img {
	display: block;
	margin: auto;
}

/* search-form */
.main-menu .search-form {
	position: absolute;
	top: 0px;
	right: 0px;
	height: 99px;
	padding: 25px 50px;
	left: 127px;
	overflow: hidden;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 40000;
}
.main-menu .search-form form {
	position: relative;
	margin: 0;
	width: 100%;
	height: 100%;
}
.main-menu .search-form form .field {
	width: 100%;
	height: 100%;
	display: block;
	font-size: 19px;
	font-family: 'Source Sans Pro', sans-serif;
	font-style: normal;
	font-weight: 600;
	background: #f0f0db;
	color: #09203e;
	padding: 0 100px 0 30px;
	border: none;
	border-radius: 8px;
	margin: 0;
}
.main-menu .search-form form .field::-webkit-input-placeholder {
    color: #09203e;
}
.main-menu .search-form form .field:-moz-placeholder {
    color: #09203e;
    opacity: 1;
}
.main-menu .search-form form .field::-moz-placeholder {
    color: #09203e;
    opacity: 1;
}
.main-menu .search-form form .field:-ms-input-placeholder {
    color: #09203e;
}
.main-menu .search-form form .submit {
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	background: url('../images/search-icon.png') no-repeat center #3bb08e;
	border: none;
	cursor: pointer;
	margin: 0;
	width: 70px;
	-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}
.main-menu .search-form form .submit:hover {
	background-color: #2fa381;
}

/* main-menu-wrp */
.main-menu .main-menu-wrp {
	width: 100%;
	height: 100%;
	overflow: auto;
}

/* main-menu-ct */
.main-menu .main-menu-ct {
	font-family: 'Montserrat', sans-serif;
	font-size: 25px;
	line-height: 27px;
}
.main-menu .main-menu-ct > ul > li {
    padding: 20px 50px;
    border-bottom: solid 1px #15474f;
}
.main-menu .main-menu-ct > ul > li:last-of-type {
    border-bottom: none;
}
.main-menu .main-menu-ct > ul > li > a {
    color: #ffffff;
    display: inline-block;
    vertical-align: top;
    font-weight: 700;
    position: relative;
    text-decoration: none;
}
.main-menu .main-menu-ct > ul > li > a:hover,
.main-menu .main-menu-ct > ul > li > a.show-submenu.active {
	color: #3bb08e;
}
.main-menu .main-menu-ct > ul > li > a.show-submenu {
	padding-right: 55px;
}
.main-menu .main-menu-ct > ul > li > a.show-submenu:before {
    display: block;
    content: "";
    background: url('../images/show-submenu-icon.png') no-repeat center;
    position: absolute;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 55px;
	-webkit-transition: 0.23s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.23s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.23s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.23s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.23s all cubic-bezier(0.23, 1, 0.32, 1);
}
.main-menu .main-menu-ct > ul > li > a.show-submenu.active:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.main-menu .main-menu-ct > ul > li > ul {
	position: relative;
	display: none;
	font-size: 18px;
	line-height: 21px;
}
.main-menu .main-menu-ct > ul > li > ul:before {
	content: "";
	height: 15px;
	display: block;
}
.main-menu .main-menu-ct > ul > li > ul > li {
	margin-bottom: 10px;
}
.main-menu .main-menu-ct > ul > li > ul > li:last-of-type {
	margin-bottom: 0px;
}
.main-menu .main-menu-ct > ul > li > ul > li > a {
	text-decoration: none;
	color: #ffffff;
}
.main-menu .main-menu-ct > ul > li > ul > li > a:hover {
	color: #3bb08e;
}

/* main-menu-bottom */
.main-menu .main-menu-bottom {
	padding: 50px;
}
.main-menu .main-menu-bottom ul li {
	margin-bottom: 20px;
}
.main-menu .main-menu-bottom ul li:last-of-type {
	margin-bottom: 0;
}
.main-menu .main-menu-bottom ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	background: #4c9cb9;
	color: #ffffff;
	font-size: 22px;
	line-height: 22px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	text-decoration: none;
}
.main-menu .main-menu-bottom ul li a img {
	display: block;
	margin: 0 20px 0 0;
}
.main-menu .main-menu-bottom ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	background: #4c9cb9;
	color: #ffffff;
	font-size: 22px;
	line-height: 22px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	text-decoration: none;
	padding: 0 20px;
}
.main-menu .main-menu-bottom ul li a:hover {
	background: #3f7c92;
}
.main-menu .main-menu-bottom ul li a.donate {
	background: #e95050;
	font-size: 28px;
}
.main-menu .main-menu-bottom ul li a.donate:hover {
	background: #c44747;
}
.main-menu .main-menu-bottom ul li a.help {
	background: #3bb08e;
}
.main-menu .main-menu-bottom ul li a.help:hover {
	background: #2fa381;
}

/* ------------------------------------ */
/* --------- Page title Styles -------- */
/* ------------------------------------ */

.page-title {
	background: #f7f7ed;
	text-align: center;
}
.page-title .container {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}
.page-title h1 {
	margin-bottom: 0;
}
.page-title .share {
	position: absolute;
	right: 30px;
	bottom: 0;
}
.page-title .share a {
    display: block;
    background: #3bb08e;
    position: relative;
    padding: 10px 12px 10px 35px;
    font-size: 13px;
	line-height: 13px;
	color: #f7f7ed;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
}
.page-title .share a:before {
    content: "";
    display: block;
    position: absolute;
    background: url('../images/share-icon.png');
    width: 15px;
    height: 10px;
    left: 10px;
    top: 50%;
    margin-top: -5px;
    -webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}
.page-title .share a:hover {
    background: #2fa381;
}

/* --------------------------------------- */
/* --------- Related Items Styles -------- */
/* --------------------------------------- */

.related-items {
	background: #3bb08e;
	text-align: center;
	padding: 10px 0;
	font-size: 18px;
	line-height: 18px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}
.related-items > ul > li {
	display: inline-block;
	vertical-align: top;
	margin: 5px 20px;
}
.related-items > ul > li > a {
	display: block;
	color: #ffffff;
	text-decoration: none;
	padding: 5px;
}
.related-items > ul > li > a:hover {
	opacity: 0.7;
}
.related-items > ul > li .sort-item {
	position: relative;
	text-align: center;
}
.related-items > ul > li .sort-item .sort-item-top {
	display: block;
	color: #ffffff;
	text-decoration: none;
	position: relative;
	padding: 5px;
	-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	cursor: pointer;
	padding-right: 20px;
}
.related-items > ul > li .sort-item .sort-item-top:before {
	display: block;
	content: "";
	position: absolute;
	width: 10px;
	height: 13px;
	right: 0px;
	top: 50%;
	margin-top: -6px;
	background: url('../images/sort-item-icon.png');
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.related-items > ul > li .sort-item .sort-item-top.active:before {
	-webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.related-items > ul > li .sort-item .sort-item-top:hover,
.related-items > ul > li .sort-item .sort-item-top.active {
	color: rgba(255, 255, 255, 0.7);
}
.related-items > ul > li .sort-item .sort-item-list {
	position: absolute;
	left: -20px;
	top: 100%;
	right: -20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #3bb08e;
	z-index: 5000;
	font-size: 14px;
	line-height: 16px;
	display: none;
	text-align: center;
}
.related-items > ul > li .sort-item .sort-item-list ul {
	padding: 15px 20px 20px;
}
.related-items > ul > li .sort-item .sort-item-list ul li {
	margin-bottom: 2px;
}
.related-items > ul > li .sort-item .sort-item-list ul li:last-of-type {
	margin-bottom: 0px;
}
.related-items > ul > li .sort-item .sort-item-list ul li a {
	display: block;
	color: #ffffff;
	text-decoration: none;
	padding: 5px;
}
.related-items > ul > li .sort-item .sort-item-list ul li a:hover {
	opacity: 0.7;
}

/* ------------------------------------- */
/* -------- Site main Styles ----------- */
/* ------------------------------------- */

.site-main {
	position: relative;
	z-index: 2000;
	background: #ffffff;
	padding: 65px 0;
}
.site-main .container:after {
	content: "";
	clear: both;
	display: block;
}

/* Entry Styles */
.entry {
	position: relative;
	margin-bottom: 60px;
}
.entry:last-child {
	margin-bottom: 0;
}
.entry:after {
	clear: both;
	content: "";
	display: block;
}

/* WYSIWYG Styles */
.wysiwyg {
}
.wysiwyg > *:last-child {
	margin-bottom: 0;
}

/* featured-content */
.featured-content {
	margin-top: 60px;
	margin-bottom: 60px;
	background: #f7f7ed;
	position: relative;
	padding-left: 60%;
}

.featured-content .featured-content-media {
	position: absolute;
	left: 0px;
	width: 60%;
	bottom: 0px;
	top: 0px;
}
.featured-content .featured-content-media .image {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	background-position: center top;
	background-size: cover;
}

.featured-content .featured-content-text {
	display: flex;
	min-height: 390px;
	align-items: center;
	padding: 80px;
}
.featured-content .featured-content-text *:last-child {
	margin-bottom: 0;
}

/* archive */
.archive {
}
.archive-ct {
}
.entry-archive {
	padding: 20px 30px;
	border-bottom: solid 1px #efefe4;
}
.entry-archive:nth-of-type(2n) {
	background: #f7f7ed;
}
.entry-archive:after {
	content: "";
	display: block;
	clear: both;
}
.entry-archive .entry-archive-image {
	width: 389px;
	float: left;
	position: relative;
}
.entry-archive .entry-archive-image .date {
	position: absolute;
	width: 75px;
	height: 93px;
	background: #4c9cb9;
	z-index: 2500;
	left: 0px;
	top: 0px;
	text-align: center;
	padding-top: 17px;
}
.entry-archive .entry-archive-image .date .month {
	color: #b1eaff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
}
.entry-archive .entry-archive-image .date .day {
	font-size: 40px;
	line-height: 40px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	color: #ffffff;
}
.entry-archive .entry-archive-content {
	float: left;
	width: calc(100% - 389px);
	padding-left: 60px;
	padding-top: 10px;
}
.entry-archive .entry-archive-content h2 {
	font-size: 30px;
	line-height: 32px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	color: #4c9cb9;
	margin-bottom: 10px;
}
.entry-archive .entry-archive-content h2 a {
	color: #4c9cb9;
	text-decoration: none;
}
.entry-archive .entry-archive-content h2 a:hover {
	color: #3bb08e;
}
.entry-archive .entry-archive-content .info {
	font-size: 15px;
	line-height: 15px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 25px;
}
.entry-archive .entry-archive-content .info ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 15px;
}
.entry-archive .entry-archive-content .info ul li:last-of-type {
	margin-right: 0px;
}
.entry-archive .entry-archive-content .info ul li a {
	color: #4c9cb9;
	text-decoration: none;
}
.entry-archive .entry-archive-content .info ul li a:hover {
	color: #3bb08e;
}
.entry-archive .entry-archive-content .bottom {
	font-size: 15px;
	line-height: 15px;
	text-transform: uppercase;
	font-weight: 600;
}
.entry-archive .entry-archive-content .bottom ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 15px;
}
.entry-archive .entry-archive-content .bottom ul li:last-of-type {
	margin-right: 0px;
}

/* load-more */
.load-more {
	margin-top: 40px;
	text-align: center;
}

/* ----------------------------------- */
/* ------------ Home styles ---------- */
/* ----------------------------------- */

.home-main {
	position: relative;
}

/* home-menu */
.home-menu {
	background: #000000;
	color: #ffffff;
}
.home-menu ul:after {
	content: "";
	clear: both;
	display: block;
}
.home-menu ul li {
	float: left;
	width: 25%;
}
.home-menu ul li a {
	display: block;
}
.home-menu ul li a {
	display: block;
	text-decoration: none;
}
.home-menu ul li a .image-ct {
    display: block;
    overflow: hidden;
}
.home-menu ul li a .image-ct img {
    width: 100%;
    margin: 0;
    display: block;
    background-size: cover;
    background-position: center top;
    -webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.85;
}
.home-menu ul li a:hover .image-ct img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    opacity: 1;
}
.home-menu ul li a .content {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    height: 220px;
    background: #3bb08e;
    padding: 30px;
    justify-content: center;
}
.home-menu ul li:nth-of-type(2n) a .content {
    background: #2fa381;
}
.home-menu ul li a .content .icon {
    position: absolute;
    display: flex;
    left: 0px;
    right: 0px;
    top: -100px;
    height: 160px;
    align-items: center;
}
.home-menu ul li a .content .top {
    font-size: 30px;
	line-height: 32px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #ffffff;
	display: block;
	margin-bottom: 10px;
}
.home-menu ul li a .content .bottom {
    font-size: 18px;
	line-height: 20px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
	vertical-align: top;
	padding: 10px 15px;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.home-menu ul li a:hover .content .bottom {
    background: #041a34;
}

/* introduction */
.introduction {
}
.introduction .introduction-top {
	background: #f0f0db;
	padding: 95px 0 70px;
	text-align: center;
}
.introduction .introduction-top .verse {
	position: relative;
	height: 310px;
	display: flex;
	align-items: center;
	background: #ffffff;
	font-size: 18px;
	line-height: 26px;
	color: #09203e;
	font-family: 'Bitter', serif;
	padding: 50px 30px 0 30px;
}
.introduction .introduction-top .verse:before {
	display: block;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	content: "";
	background: url('../images/verse-icon.png') no-repeat center #f0f0db;
	position: absolute;
	left: 50%;
	margin-left: -65px;
	top: -80px;
}
.introduction .introduction-top .verse .author {
	font-size: 22px;
	line-height: 22px;
	color: #3bb08e;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	margin-top: 20px;
}
.introduction .introduction-top .help-ways {
	position: relative;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 18px;
	color: #f0f0db;
	font-weight: 600;
	text-transform: uppercase;
	padding-left: 215px;
	padding-right: 15px;
	margin-bottom: 25px;
	background: url('../images/help-ways-bg.jpg');
	background-size: cover;
	text-decoration: none;
}
.introduction .introduction-top .help-ways .image-ct {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 200px;
	content: "";
	overflow: hidden;
	background: #000000;
}
.introduction .introduction-top .help-ways .image-ct .image {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
    right: 0px;
	background: url('../images/help-ways-img.jpg') no-repeat center top;
	background-size: cover;
	display: block;
	content: "";
    -webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.85;
}
.introduction .introduction-top .help-ways:hover .image-ct .image {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    opacity: 1;
}
.introduction .introduction-top .help-ways strong {
	font-size: 36px;
	line-height: 38px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	text-transform: none;
	margin-bottom: 10px;
	display: block;
}
.introduction .introduction-top .support {
	position: relative;
	height: 105px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 16px;
	color: #f0f0db;
	font-weight: 600;
	text-transform: uppercase;
	padding-left: 15px;
	padding-right: 15px;
	background: #e95050;
	background-size: cover;
	text-decoration: none;
	-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}
.introduction .introduction-top .support span {
	display: block;
	padding-left: 80px;
	position: relative;
}
.introduction .introduction-top .support span:before {
	display: block;
	content: "";
	background: url('../images/support-icon.png');
	width: 52px;
	height: 52px;
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -26px;
}
.introduction .introduction-top .support strong {
	font-size: 28px;
	line-height: 30px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	text-transform: none;
	margin-bottom: 10px;
	display: block;
}
.introduction .introduction-top .support:hover {
	background: #c44747;
}
.introduction .introduction-bottom {
	background: #4c9cb9;
	padding: 40px 0 70px;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 19px;
	line-height: 28px;
	color: #f0f0db;
}
.introduction .introduction-bottom .bg-image {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background: url('../images/introduction-bottom-bg.jpg') no-repeat center;
	background-size: cover;
	opacity: 0.2;
}
.introduction .introduction-bottom h1 {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	line-height: 44px;
	font-family: 'Bitter', serif;
	font-weight: 400;
	color: #ffffff;
}
.introduction .introduction-bottom h1 img {
	margin: 0 20px 0 -10px;
}
.introduction .introduction-bottom * {
	position: relative;
}
.introduction .introduction-bottom strong {
	color: #ffffff;
}
.introduction .introduction-bottom .tagline {
	display: inline-block;
	vertical-align: top;
	background: #041a34;
	padding: 15px 40px;
	font-size: 18px;
	line-height: 20px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
}

/* sign-up */
.sign-up {
	padding: 50px 0;
	background: #041a34;
}
.sign-up .sign-up-ct {
	display: flex;
	align-items: center;
	justify-content: center;
}
.sign-up h3 {
	font-size: 35px;
	line-height: 35px;
	color: #ffffff;
	font-family: 'Bitter', serif;
	position: relative;
	padding-left: 90px;
	margin-right: 25px;
	margin-bottom: 0;
}
.sign-up h3:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	display: block;
	background: url('../images/sign-up-icon.png') no-repeat center;
	width: 68px;
	height: 69px;
	margin-top: -36px;
}
.sign-up form {
	position: relative;
	margin: 0;
	width: 510px;
	height: 47px;
}
.sign-up form .field {
	width: 100%;
	height: 100%;
	display: block;
	font-size: 19px;
	font-family: 'Source Sans Pro', sans-serif;
	font-style: normal;
	font-weight: 600;
	background: #f0f0db;
	color: #09203e;
	padding: 0 150px 0 30px;
	border: none;
	border-radius: 8px;
	margin: 0;
}
.sign-up form .field::-webkit-input-placeholder {
    color: #09203e;
}
.sign-up form .field:-moz-placeholder {
    color: #09203e;
    opacity: 1;
}
.sign-up form .field::-moz-placeholder {
    color: #09203e;
    opacity: 1;
}
.sign-up form .field:-ms-input-placeholder {
    color: #09203e;
}
.sign-up form .submit {
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	background: #3bb08e;
	border: none;
	cursor: pointer;
	margin: 0;
	width: 130px;
	text-align: center;
	font-family: 'Bitter', serif;
	font-weight: 700;
	color: #ffffff;
	font-size: 22px;
	text-transform: uppercase;
	-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}
.sign-up form .submit:hover {
	background-color: #2fa381;
}

/* home-events */
.home-events {
	padding: 60px;
}
.home-events ul:after {
	content: "";
	clear: both;
	display: block;
}
.home-events ul li {
	float: left;
	width: 50%;
	padding: 0 75px;
}
.home-events .event {
	cursor: pointer;
}
.home-events .event .event-image {
    position: relative;
}
.home-events .event .event-image .event-image-ct {
    overflow: hidden;
}
.home-events .event .event-image img {
    margin: 0;
    width: 100%;
    -webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.home-events .event:hover .event-image img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}
.home-events .event .event-image .date {
	position: absolute;
	width: 75px;
	height: 93px;
	background: #4c9cb9;
	z-index: 2500;
	left: -75px;
	top: 0px;
	text-align: center;
	padding-top: 17px;
}
.home-events .event .event-image .date .month {
	color: #b1eaff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
}
.home-events .event .event-image .date .day {
	font-size: 40px;
	line-height: 40px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	color: #ffffff;
}
.home-events .event .event-image .date {
	position: absolute;
	width: 75px;
	height: 93px;
	background: #4c9cb9;
	z-index: 2500;
	left: -75px;
	top: 0px;
	text-align: center;
	padding-top: 17px;
}
.home-events .event .event-content {
	padding: 30px 35px 50px;
	position: relative;
	font-size: 17px;
	line-height: 22px;
	color: #8d8d8d;
	background: #fcfcf4;
}
.home-events .event .event-content h3 {
	color: #3bb08e;
	font-size: 25px;
	line-height: 27px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	margin-bottom: 10px;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.home-events .event:hover .event-content h3 {
	color: #4c9cb9;
}
.home-events .event .event-content p {
	margin-bottom: 0;
}
.home-events .event .event-content .more {
	display: block;
	width: 18px;
	height: 13px;
	background: url('../images/home-post-arrow.png');
	position: absolute;
	bottom: 20px;
	right: 20px;
	text-indent: -9999px;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.home-events .event:hover .event-content .more {
	-webkit-transform: translate3d(5px, 0, 0);
    -moz-transform: translate3d(5px, 0, 0);
    -o-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
}

/* home-articles */
.home-articles {
	padding: 60px;
}
.home-articles ul:after {
	content: "";
	clear: both;
	display: block;
}
.home-articles ul li {
	float: left;
	width: 33.333333%;
	padding: 0 15px;
}
.home-articles .article {
	cursor: pointer;
}
.home-articles .article .article-image {
    position: relative;
}
.home-articles .article .article-image .article-image-ct {
    overflow: hidden;
}
.home-articles .article .article-image img {
    margin: 0;
    width: 100%;
    -webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.home-articles .article:hover .article-image img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}
.home-articles .article .article-image .date {
	position: absolute;
	width: 75px;
	height: 93px;
	background: #4c9cb9;
	z-index: 2500;
	left: -75px;
	top: 0px;
	text-align: center;
	padding-top: 17px;
}
.home-articles .article .article-image .date .month {
	color: #b1eaff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
}
.home-articles .article .article-image .date .day {
	font-size: 40px;
	line-height: 40px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	color: #ffffff;
}
.home-articles .article .article-image .date {
	position: absolute;
	width: 75px;
	height: 93px;
	background: #4c9cb9;
	z-index: 2500;
	left: -75px;
	top: 0px;
	text-align: center;
	padding-top: 17px;
}
.home-articles .article .article-content {
	padding: 30px 35px 50px;
	position: relative;
	font-size: 17px;
	line-height: 22px;
	color: #8d8d8d;
	background: #fcfcf4;
}
.home-articles .article .article-content h3 {
	color: #3bb08e;
	font-size: 25px;
	line-height: 27px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	margin-bottom: 10px;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.home-articles .article:hover .article-content h3 {
	color: #4c9cb9;
}
.home-articles .article .article-content p {
	margin-bottom: 0;
}
.home-articles .article .article-content .more {
	display: block;
	width: 18px;
	height: 13px;
	background: url('../images/home-post-arrow.png');
	position: absolute;
	bottom: 20px;
	right: 20px;
	text-indent: -9999px;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.home-articles .article:hover .article-content .more {
	-webkit-transform: translate3d(5px, 0, 0);
    -moz-transform: translate3d(5px, 0, 0);
    -o-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
}

/* home-donate */
.page-bottom .page-bottom-donate.home-donate {
	background: #ffffff none repeat scroll 0 0;
	color: #8d8d8d;
	font-size: 17px;
	line-height: 22px;
	padding: 50px 0;
}
.page-bottom .page-bottom-donate.home-donate .donate-text {
    padding-right: 50px;
}
.page-bottom .page-bottom-donate.home-donate .donate-form {
	flex: 0 0 53%;
	text-align: center;
	background: #f7f7ed;
	padding: 20px 30px;
}
.page-bottom .page-bottom-donate.home-donate .donate-text h3 {
    font-size: 24px;
    line-height: 30px;
}

/* testimonials */
.testimonials {
	background: #4c9cb9;
	padding: 40px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 19px;
	line-height: 28px;
	color: #f0f0db;
}
.testimonials .bg-image {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background: url('../images/introduction-bottom-bg.jpg') no-repeat center;
	background-size: cover;
	opacity: 0.2;
}
.testimonials img {
	margin-bottom: 25px;
	margin-top: 0;
}
.testimonials h3 {
	font-size: 30px;
	line-height: 40px;
	font-family: 'Bitter', serif;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 30px;
}
.testimonials * {
	position: relative;
}
.testimonials .author {
	display: inline-block;
	vertical-align: top;
	background: #041a34;
	padding: 15px 40px;
	font-size: 18px;
	line-height: 20px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.testimonials .more a {
	display: inline-block;
	vertical-align: top;
	font-size: 17px;
	line-height: 17px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	position: relative;
	text-decoration: none;
	padding-right: 33px;
}
.testimonials .more a:after {
	content: "";
	display: block;
	position: absolute;
	width: 18px;
	height: 13px;
	background: url('../images/testimonials-more-icon.png');
	position: absolute;
	right: 0px;
	top: 50%;
	margin-top: -6px;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.testimonials .more a:hover::after {
	-webkit-transform: translate3d(5px, 0, 0);
    -moz-transform: translate3d(5px, 0, 0);
    -o-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
}
.testimonials .more a:hover {
	opacity: 0.7;
}

/* ministry-box */
.ministry-box {
	text-align: center;
}
.ministry-box .ministry-box-top:after {
	display: block;
	clear: both;
	content: "";
}
.ministry-box .ministry-box-top .image {
	width: 50%;
	height: 532px;
	background-size: cover;
	background-position: center top;
	float: left;
}
.ministry-box .ministry-box-top .text {
	width: 50%;
	height: 532px;
	background: url('../images/ministry-box-top-bg.jpg') no-repeat top center;
	background-size: cover;
	float: left;
	display: flex;
	justify-content: center;
	flex-direction: column;
	justify-content: center;
	color: #ffffff;
	padding: 0 60px;
}
.ministry-box .ministry-box-top .text h1 {
	font-size: 55px;
	line-height: 65px;
	color: #ffffff;
	font-family: 'Bitter', serif;
	font-weight: 400;
	margin-bottom: 45px;
}
.ministry-box .ministry-box-top .text .help {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 18px;
	color: #f0f0db;
	font-weight: 600;
	text-transform: uppercase;
	background: url('../images/help-ways-bg.jpg');
	background-size: cover;
	text-decoration: none;
	padding: 20px 40px 20px 123px;
}
.ministry-box .ministry-box-top .text .help:before {
	display: block;
	content: "";
	background: url('../images/ministry-help-icon.png');
	width: 53px;
	height: 47px;
	position: absolute;
	left: 40px;
	top: 50%;
	margin-top: -23px;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.ministry-box .ministry-box-top .text .help:hover::before {
    -webkit-transform: scale(1.15);
	transform: scale(1.15);
}
.ministry-box .ministry-box-top .text .help strong {
	font-size: 28px;
	line-height: 30px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	text-transform: none;
	margin-bottom: 8px;
	display: block;
	color: #ffffff;
}
.ministry-box .ministry-box-bottom {
	background: #4c9cb9;
	padding: 60px 0;
	color: #ffffff;
}
.ministry-box .ministry-box-bottom h2 {
	font-size: 28px;
	line-height: 30px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 25px;
}
.ministry-box .ministry-box-bottom *:last-child {
	margin-bottom: 0;
}

/* ---------------------------------------- */
/* ---------- Page Bottom styles ---------- */
/* ---------------------------------------- */

.page-bottom {
}

/* page-bottom-contact */
.page-bottom .page-bottom-contact {
}
.page-bottom .page-bottom-contact a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 30px;
	text-decoration: none;
	background: url('../images/page-bottom-contact-bg.jpg') no-repeat center #1f4164;
	background-size: auto 100%;
}
.page-bottom .page-bottom-contact a .left-text {
	font-size: 32px;
	line-height: 32px;
	color: #ffffff;
	font-family: 'Bitter', serif;
	font-weight: 700;
	display: block;
}
.page-bottom .page-bottom-contact a img {
	display: block;
	margin: 0 30px;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.page-bottom .page-bottom-contact a:hover img {
    -webkit-transform: scale(1.15);
	transform: scale(1.15);
}
.page-bottom .page-bottom-contact a .right-text {
	font-size: 16px;
	line-height: 16px;
	color: #f0f0db;
	text-transform: uppercase;
	font-weight: 600;
	display: block;
	-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}

/* page-bottom-donate */
.page-bottom .page-bottom-donate {
	background: #f0f0db;
	padding: 50px 0;
	font-size: 17px;
	line-height: 22px;
	color: #8d8d8d;
}
.page-bottom .page-bottom-donate .page-bottom-donate-ct {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.page-bottom .page-bottom-donate .donate-text {
	-webkit-flex: 0 0 47%;
    -ms-flex: 0 0 47%;
    flex: 0 0 47%;
    position: relative;
    padding-left: 128px;
}
.page-bottom .page-bottom-donate .donate-text:before {
	width: 98px;
	height: 98px;
	background: url('../images/donate-text-icon.png');
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -49px;
	display: block;
	content: "";
}
.page-bottom .page-bottom-donate .donate-text h3 {
	font-size: 28px;
	line-height: 38px;
	color: #e95050;
	font-family: 'Bitter', serif;
}
.page-bottom .page-bottom-donate .donate-text *:last-child {
	margin-bottom: 0;
}
.page-bottom .page-bottom-donate .donate-form {
	-webkit-flex: 0 0 53%;
    -ms-flex: 0 0 53%;
    flex: 0 0 53%;
    text-align: center;
    padding-left: 80px;
}
.page-bottom .page-bottom-donate .donate-form h4 {
	font-size: 22px;
	line-height: 26px;
	color: #e95050;
	font-family: 'Bitter', serif;
	margin-bottom: 14px;
}
.page-bottom .page-bottom-donate .donate-form form {
	margin: 0;
}
.page-bottom .page-bottom-donate .donate-form form ul {
	margin-bottom: 8px;
}
.page-bottom .page-bottom-donate .donate-form form ul li {
	display: inline-block;
	vertical-align: top;
	margin: 8px;
	position: relative;
}
.page-bottom .page-bottom-donate .donate-form form ul li input[type="radio"] {
	display: none;
}
.page-bottom .page-bottom-donate .donate-form form ul li .r-label {
	display: block;
	cursor: pointer;
	padding: 9px 15px 12px;
	background: #ffffff;
	border-radius: 8px;
	color: #8d8d8d;
	font-size: 26px;
	line-height: 26px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	margin: 0;
}
.page-bottom .page-bottom-donate .donate-form form ul li .r-label:hover {
	color: #222222;
}
.page-bottom .page-bottom-donate .donate-form form ul li input[type="radio"]:checked + .r-label {
    color: #e95050;
}
.page-bottom .page-bottom-donate .donate-form form ul li input[type="text"] {
	display: block;
	cursor: pointer;
	padding: 9px 15px 12px 35px;
	background: #ffffff;
	border-radius: 8px;
	color: #8d8d8d;
	font-size: 21px;
	line-height: 26px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	border: none;
	width: 125px;
	-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}
.page-bottom .page-bottom-donate .donate-form form ul li input[type="text"]::-webkit-input-placeholder {
    color: #c6c6c6;
}
.page-bottom .page-bottom-donate .donate-form form ul li input[type="text"]:-moz-placeholder {
    color: #c6c6c6;
    opacity: 1;
}
.page-bottom .page-bottom-donate .donate-form form ul li input[type="text"]::-moz-placeholder {
    color: #c6c6c6;
    opacity: 1;
}
.page-bottom .page-bottom-donate .donate-form form ul li input[type="text"]:-ms-input-placeholder {
    color: #c6c6c6;
}
.page-bottom .page-bottom-donate .donate-form form ul li input[type="text"]:hover,
.page-bottom .page-bottom-donate .donate-form form ul li input[type="text"].active {
	color: #222222;
}
.page-bottom .page-bottom-donate .donate-form form ul li input[type="text"]:hover + .i-label,
.page-bottom .page-bottom-donate .donate-form form ul li input[type="text"].active + .i-label {
	color: #222222;
}
.page-bottom .page-bottom-donate .donate-form form ul li .i-label {
	display: block;
	color: #8d8d8d;
	font-size: 26px;
	line-height: 26px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	position: absolute;
	left: 15px;
	top: 8px;
	margin: 0;
	-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}
.page-bottom .page-bottom-donate .donate-form form input[type="submit"] {
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	padding: 9px 15px 12px;
	background: #e95050;
	color: #ffffff;
	font-size: 22px;
	line-height: 22px;
	font-family: 'Bitter', serif;
	font-weight: 700;
	-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	border: none;
}
.page-bottom .page-bottom-donate .donate-form form input[type="submit"]:hover {
	background: #c44747;
}

/* ----------------------------------- */
/* ---------- Footer styles ---------- */
/* ----------------------------------- */

.site-footer {
}

/* footer-top */
.site-footer .footer-top {
	background: #3bb08e;
	padding: 40px 0;
}
.site-footer .footer-top .footer-top-ct {
	display: flex;
}
.site-footer .footer-top .footer-top-column {
	-webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    position: relative;
}
.site-footer .footer-top .footer-top-column:after {
	content: "";
	display: block;
	clear: both;
}
.site-footer .footer-top .footer-top-column:nth-of-type(2) {
	padding: 0 40px;
}

/* footer-logo */
.site-footer .footer-top .footer-logo {
	max-width: 269px;
	margin: auto;
}
.site-footer .footer-top .footer-logo img {
	display: block;
	width: 100%;
	margin: auto;
}

/* footer-info */
.site-footer .footer-info {
	font-size: 16px;
	line-height: 22px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #ffffff;
}
.site-footer .footer-info ul {
	margin: 0;
	padding: 0;
}
.site-footer .footer-info ul li {
	margin: 0;
}
.site-footer .footer-info ul li a {
	color: #ffffff;
	text-decoration: none;
}
.site-footer .footer-info ul li a:hover {
	opacity: 0.7;
}

/* footer-menu */
.site-footer .footer-menu {
	font-size: 16px;
	line-height: 22px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #ffffff;
	text-align: right;
	margin-bottom: 30px;
}
.site-footer .footer-menu ul {
	margin: 0;
	padding: 0;
}
.site-footer .footer-menu ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
}
.site-footer .footer-menu ul li:last-of-type {
	margin-right: 0;
}
.site-footer .footer-menu ul li a {
	color: #ffffff;
	text-decoration: none;
}
.site-footer .footer-menu ul li a:hover {
	opacity: 0.7;
}

/* social */
.site-footer .social {
	font-size: 26px;
	line-height: 26px;
	text-align: right;
}
.site-footer .social ul {
	margin: 0;
	padding: 0;
}
.site-footer .social ul li {
	display: inline-block;
	margin: 0;
	margin-right: 20px;
}
.site-footer .social ul li:last-of-type {
	margin-right: 0;
}
.site-footer .social ul li a {
	display: block;
	color: #ffffff;
	background: #2fa381;
	font-size: 14px;
	line-height: 26px;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	text-decoration: none;
	padding: 10px 15px;
}
.site-footer .social ul li a i {
	font-size: 26px;
	vertical-align: middle;
	margin-right: 15px;
}
.site-footer .social ul li a:hover {
	background: #268469;
}

/* footer-bottom */
.site-footer .footer-bottom {
	background: #2fa381;
	padding: 20px 0;
}
.site-footer .footer-bottom .footer-bottom-ct {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* copyright */
.site-footer .copyright {
	font-size: 14px;
	line-height: 18px;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
}
.site-footer .copyright * {
	margin: 0;
}

/* developer */
.site-footer .nsm-developer {
}

.tassel-developer {
	text-align: center;
}
.site-footer-developer {
	fill: #fff;
	transition: all 0.2s ease-in-out;
}
.site-footer-developer svg {
	height: 30px;
}
.site-footer-developer:hover {
	fill: #041a34;
}

/* -------------------------------------------------------- */
/* --------- Only Large & Medium devices styles ----------- */
/* -------------------------------------------------------- */

@media (min-width: 992px) {

	.related-items {
		display: block!important;
		height: auto!important;
	}

	/* home-header */
	.home #page:before {
	    height: 302px;
	}
	.home .site-header {
		height: 302px;
		min-height: 99px;
	}
	.home .site-header .logo {
	    height: 100%;
	    width: 539px;
	}
	.home .site-header .logo a {
		position: absolute;
		width: 243px;
		height: 67px;
		left: 50%;
		margin-left: -121px;
		top: 50%;
		margin-top: -34px;
		opacity: 0;
		-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		-webkit-transform: scale(1.25);
    	transform: scale(1.25);

	}
	.home .site-header .logo a.home-logo {
		display: block;
		width: auto;
		height: auto;
		position: relative;
		left: auto;
		top: auto;
		margin-left: 0;
		margin-top: 0;
		opacity: 1;
		-webkit-transform: scale(1);
    	transform: scale(1);
	}
	.home .site-header.logo-passed .logo a {
		opacity: 1;
		-webkit-transform: scale(1);
    	transform: scale(1);
	}
	.home .site-header.logo-passed .logo a.home-logo {
		opacity: 0;
		-webkit-transform: scale(0.8);
    	transform: scale(0.8);
	}

}

/* -------------------------------------- */
/* ------- Medium devices styles -------- */
/* -------------------------------------- */

@media (min-width: 992px) and (max-width: 1199px) {

	/* header */
	.site-header .top-menu {
	    font-size: 14px;
	}
	.site-header .top-menu > ul > li {
	    margin-right: 15px;
	}
	.site-header .top-menu > ul > li > a.donate {
	    font-size: 17px;
	}

	/* archive */
	.entry-archive .entry-archive-content {
	    padding-left: 40px;
	}

	/* home */
	.home-menu ul li a .content .icon {
	    -webkit-transform: scale(0.8);
    	transform: scale(0.8);
	}
	.home-menu ul li a .content .top {
	    font-size: 26px;
	    line-height: 28px;
	}
	.introduction .introduction-top .verse {
	    font-size: 16px;
	    line-height: 22px;
	}
	.introduction .introduction-top .help-ways strong {
	    font-size: 26px;
	    line-height: 28px;
	    margin-bottom: 5px;
	}
	.introduction .introduction-top .support {
	    font-size: 14px;
	    line-height: 16px;
	    padding-left: 20px;
	    padding-right: 20px;
	}
	.introduction .introduction-top .support span {
	    padding-left: 60px;
	}
	.introduction .introduction-top .support strong {
	    font-size: 22px;
	    line-height: 24px;
	    margin-bottom: 5px;
	}
	.sign-up h3 {
	    font-size: 26px;
	    line-height: 28px;
	}
	.sign-up form {
	    width: 400px;
	}
	.home-events .event .event-content {
	    font-size: 15px;
	    line-height: 20px;
	    padding: 20px 25px 50px;
	}
	.home-articles .article .article-content {
	    font-size: 15px;
	    line-height: 20px;
	    padding: 20px 25px 50px;
	}
	.ministry-box .ministry-box-top .text h1 {
	    font-size: 38px;
	    line-height: 42px;
	    margin-bottom: 30px;
	}

}

/* ----------------------------------------- */
/* --------- Small devices styles ---------- */
/* ----------------------------------------- */

@media (min-width: 768px) and (max-width: 991px) {

	/* main-menu */
	.toggle-main-menu {
	    left: 30px;
	    top: 35px;
	}
	.toggle-main-menu .icon {
	    width: 37px;
	    height: 28px;
	}
	.toggle-main-menu .icon .bar {
	    width: 37px;
	    height: 4px;
	}
	.toggle-main-menu .icon .top-bar.middle {
	    top: 12px;
	}
	.toggle-main-menu .icon .middle-bar {
	    top: 12px;
	}
	.toggle-main-menu .icon .bottom-bar {
	    top: 24px;
	}
	.toggle-main-menu .icon .bottom-bar.middle {
	    top: 12px;
	}
	.toggle-main-menu .text {
	    display: none;
	}
	.main-menu {
	    padding-left: 97px;
	    width: 420px;
	}
	.main-menu .main-menu-left {
	    width: 97px;
	}
	.main-menu .main-menu-left ul li a img {
	    -webkit-transform: scale(0.8);
    	transform: scale(0.8);
	}
	.main-menu .search-form {
	    left: 97px;
	    padding: 25px 30px;
	}
	.main-menu .main-menu-ct {
	    font-size: 18px;
	    line-height: 20px;
	}
	.main-menu .main-menu-ct > ul > li {
	    padding: 20px 30px;
	}
	.main-menu .main-menu-ct > ul > li > ul {
	    font-size: 16px;
	    line-height: 18px;
	}
	.main-menu .main-menu-bottom {
	    padding: 40px 30px;
	}
	.main-menu .main-menu-bottom ul li a {
	    font-size: 15px;
	    line-height: 17px;
	    height: 45px;
	}
	.main-menu .main-menu-bottom ul li a.donate {
	    font-size: 19px;
	}
	.main-menu .main-menu-bottom ul li a img {
	    margin: 0 15px 0 0;
	    -webkit-transform: scale(0.8);
    	transform: scale(0.8);
	}

	/* related-items */
	.related-items {
	    font-size: 16px;
	    line-height: 16px;
		display: block!important;
		height: auto!important;
	}
	.related-items > ul > li {
	    margin: 5px 10px;
	}

	/* site-main */
	.site-main {
		padding: 40px 0;
	}
	.featured-content {
	    margin-bottom: 40px;
	    margin-top: 40px;
	}
	.featured-content .featured-content-text {
	    padding: 40px;
	}

	/* archive */
	.entry-archive {
		padding: 40px 30px;
	}
	.entry-archive:first-of-type {
		padding-top: 0;
	}
	.entry-archive .entry-archive-content {
	    padding-left: 0;
	    width: auto;
	    float: none;
	    text-align: center;
	}
	.entry-archive .entry-archive-image {
	    max-width: 280px;
	    margin: auto;
	    margin-bottom: 10px;
	    float: none;
	}
	.entry-archive .entry-archive-image .date {
		width: 50px;
		height: 60px;
		padding-top: 10px;
	}
	.entry-archive .entry-archive-image .date .month {
		font-size: 15px;
		line-height: 15px;
	}
	.entry-archive .entry-archive-image .date .day {
		font-size: 24px;
		line-height: 24px;
	}

	/* home */
	.home .site-header {
	    height: 99px!important;
	}
	.home-menu ul li a .content {
	    height: 175px;
	    padding: 20px;
	}
	.home-menu ul li a .content .icon {
	    -webkit-transform: scale(0.6);
    	transform: scale(0.6);
    	top: -95px;
	}
	.home-menu ul li a .content .top {
	    font-size: 20px;
	    line-height: 22px;
	}
	.introduction .introduction-top {
	    background: #f0f0db none repeat scroll 0 0;
	    padding: 65px 0 40px;
	    text-align: center;
	}
	.home-menu ul li a .content .bottom {
	    font-size: 15px;
	    line-height: 17px;
	}
	.introduction .introduction-top .verse {
	    font-size: 16px;
	    line-height: 22px;
		margin-bottom: 25px;
		height: auto;
		display: block;
		padding: 70px 30px 30px 30px;
	}
	.introduction .introduction-top .verse::before {
	    height: 100px;
	    left: 50%;
	    margin-left: -50px;
	    top: -60px;
	    width: 100px;
	    background-size: 45px auto;
	}
	.introduction .introduction-bottom {
	    padding: 40px 0;
	}
	.sign-up h3 {
	    font-size: 22px;
	    line-height: 24px;
	    margin-bottom: 20px;
	    padding-left: 0;
	    margin-right: 0;
	}
	.sign-up h3:before {
	    display: none;
	}
	.sign-up .sign-up-ct {
	    display: block;
	    text-align: center;
	}
	.sign-up form {
	    max-width: 420px;
	    margin: auto;
	}
	.home-events {
	    padding: 70px 0 50px;
	}
	.home-events ul li {
	    float: none;
	    padding: 0;
	    width: auto;
	    margin-bottom: 70px;
	}
	.home-events ul li:last-of-type {
	    margin-bottom: 0;
	}
	.home-events .event {
		max-width: 280px;
		margin: auto;
	}
	.home-events .event .event-image .date {
	    height: 37px;
	    left: 0px;
	    padding-top: 0px;
	    top: -37px;
	    width: 98px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	.home-events .event .event-content {
	    font-size: 15px;
	    line-height: 20px;
	    padding: 20px 25px 50px;
	}
	.home-events .event .event-image .date .month {
	    font-size: 15px;
	    line-height: 15px;
	    margin-right: 10px;
	    padding-top: 3px;
	}
	.home-events .event .event-image .date .day {
	    font-size: 22px;
	    line-height: 24px;
	}
	.home-articles {
	    padding: 40px 0 40px;
	}
	.home-articles ul li {
	    float: none;
	    padding: 0;
	    width: auto;
	    margin-bottom: 40px;
	}
	.home-articles ul li:last-of-type {
	    margin-bottom: 0;
	}
	.home-articles .article {
		max-width: 280px;
		margin: auto;
	}
	.home-articles .article .article-image .date {
	    height: 37px;
	    left: 0px;
	    padding-top: 0px;
	    top: -37px;
	    width: 98px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	.home-articles .article .article-content {
	    font-size: 15px;
	    line-height: 20px;
	    padding: 20px 25px 50px;
	}
	.home-articles .article .article-image .date .month {
	    font-size: 15px;
	    line-height: 15px;
	    margin-right: 10px;
	    padding-top: 3px;
	}
	.home-articles .article .article-image .date .day {
	    font-size: 22px;
	    line-height: 24px;
	}
	.ministry-box .ministry-box-top .image {
	    height: 380px;
	}
	.ministry-box .ministry-box-top .text {
	    height: 380px;
	    padding: 0 30px;
	}
	.ministry-box .ministry-box-top .text h1 {
	    font-size: 28px;
	    line-height: 32px;
	    margin-bottom: 25px;
	}
	.ministry-box .ministry-box-top .text .help {
		font-size: 14px;
		line-height: 16px;
		padding: 15px 30px 15px 82px;
	}
	.ministry-box .ministry-box-top .text .help::before {
		background-size: 100% 100%;
		height: 28px;
		left: 30px;
		margin-top: -14px;
		position: absolute;
		top: 50%;
		width: 32px;
	}
	.ministry-box .ministry-box-top .text .help strong {
	    font-size: 18px;
	    line-height: 20px;
	    margin-bottom: 5px;
	}
	.ministry-box .ministry-box-bottom {
	    padding: 40px 0;
	}
	.ministry-box .ministry-box-bottom h2 {
	    font-size: 20px;
	    line-height: 22px;
	    margin-bottom: 15px;
	}

	/* page-bottom */
	.page-bottom .page-bottom-contact a .left-text {
	    font-size: 28px;
	    line-height: 28px;
	}

	.page-bottom .page-bottom-donate .donate-text {
		padding: 0;
	}
	.page-bottom .page-bottom-donate .donate-text::before {
	    position: relative;
	    left: auto;
	    top: auto;
	    margin-top: 0;
	    margin: auto;
	    margin-bottom: 20px;
	    width: 70px;
	    height: 70px;
	    background-size: 100% 100%;
	}
	.page-bottom .page-bottom-donate .donate-text h3 {
	    font-size: 22px;
	    line-height: 28px;
	}
	.page-bottom .page-bottom-donate .donate-form {
	    padding-left: 60px;
	}
	.page-bottom .page-bottom-donate .donate-form h4 {
	    font-size: 18px;
	    line-height: 20px;
	}

	/* footer */
	.site-footer .footer-top {
	    padding: 30px 0;
	}
	.site-footer .footer-top .footer-top-ct {
	    display: block;
	    text-align: center;
	    position: relative;
	    padding-top: 110px;
	}
	.site-footer .footer-top .footer-top-column {
	    position: static;
	}
	.site-footer .footer-top .footer-logo {
	    width: 269px;
	    height: 80px;
	    position: absolute;
	    left: 50%;
	    margin-left: -134px;
	    top: 0px;
	}
	.site-footer .footer-info {
	    margin-bottom: 40px;
	}
	.site-footer .footer-info ul li {
	    display: inline-block;
	    vertical-align: top;
	    margin-right: 50px;
	}
	.site-footer .footer-info ul li:last-of-type {
	    margin-right: 0;
	}
	.site-footer .footer-info ul li a {
	    position: relative;
	    font-size: 15px;
	    line-height: 15px;
		text-transform: uppercase;
		display: block;
		padding-top: 65px;
	}
	.site-footer .footer-info ul li a:before {
	    height: 65px;
	    content: "";
	    display: block;
	    position: absolute;
	    left: 0px;
	    right: 0px;
	    top: 0px;
	}
	.site-footer .footer-info ul li a.address:before {
	    background: url('../images/mobile-footer-address.png') no-repeat center;
	}
	.site-footer .footer-info ul li a.phone:before {
	    background: url('../images/mobile-footer-phone.png') no-repeat center;
	}
	.site-footer .footer-menu {
	    margin-bottom: 30px;
	    text-align: center;
	}
	.site-footer .social {
	    text-align: center;
	}
	.site-footer .footer-bottom .footer-bottom-ct {
	    display: block;
	}
	.site-footer .copyright {
	    text-align: center;
	    margin-bottom: 20px;
	}
	.site-footer .nsm-developer {
  		margin: auto;
	}
	.back-to-top {
		background: #081e3c;
		cursor: pointer;
		-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		font-size: 16px;
		line-height: 16px;
		padding: 20px;
		font-weight: 700;
		text-transform: uppercase;
		color: #ffffff;
		text-align: center;
	}
	.back-to-top:hover {
		background: #031125;
	}

}

/* ------------------------------------------------ */
/* --------- Extra small devices styles ----------- */
/* ------------------------------------------------ */

@media (max-width: 767px) {

	#page::before {
	    height: 50px;
	}

	/* header */
	.site-header {
		height: 120px!important;
		position: relative;
		left: auto;
		top: auto;
		right: auto;
		background-size: auto 100%;
	}
	.site-header .logo {
	    height: 120px;
	    width: 223px;
	}
	.mobile-donate-button {
		font-size: 16px;
		line-height: 16px;
		text-transform: none;
		font-family: 'Bitter', serif;
		background: #e95050;
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		top: 0px;
		right: 0px;
		width: 50%;
		height: 50px;
		color: #ffffff!important;
		text-decoration: none;
		z-index: 40000;
	}
	.mobile-donate-button img {
		margin: 0 10px 0 0;
	}
	.mobile-donate-button:hover {
		background: #c44747;
		text-decoration: none;
	}

	/* main-menu */
	.toggle-main-menu {
	    left: 0px;
	    top: 0px;
	    width: 50%;
	    height: 50px;
	    background: #081d3b;
	}
	.toggle-main-menu .icon {
	    width: 26px;
	    height: 17px;
	    margin: 16px auto 0 auto;
	}
	.toggle-main-menu .icon .bar {
	    width: 26px;
	    height: 3px;
	}
	.toggle-main-menu .icon .top-bar.middle {
	    top: 7px;
	}
	.toggle-main-menu .icon .middle-bar {
	    top: 7px;
	}
	.toggle-main-menu .icon .bottom-bar {
	    top: 14px;
	}
	.toggle-main-menu .icon .bottom-bar.middle {
	    top: 7px;
	}
	.toggle-main-menu .text {
	    display: none;
	}
	.main-menu {
	    padding-left: 50px;
	    width: 100%;
	    padding-top: 70px;
	    top: 50px;
	}
	.main-menu .main-menu-left {
	    width: 50px;
	    top: 0px;
	}
	.main-menu .main-menu-left ul li a {
	    height: 45px;
	}
	.main-menu .main-menu-left ul li a img {
	    -webkit-transform: scale(0.6);
    	transform: scale(0.6);
	}
	.main-menu .search-form {
	    left: 50px;
	    padding: 15px 20px;
	    height: 70px;
	}
	.main-menu .search-form form .field {
	    font-size: 16px;
	    padding: 0 70px 0 20px;
	}
	.main-menu .search-form form .submit {
	    width: 50px;
	    background-size: 20px auto;
	}
	.main-menu .main-menu-ct {
	    font-size: 18px;
	    line-height: 20px;
	}
	.main-menu .main-menu-ct > ul > li {
	    padding: 20px;
	}
	.main-menu .main-menu-ct > ul > li > ul {
	    font-size: 16px;
	    line-height: 18px;
	}
	.main-menu .main-menu-bottom {
	    padding: 30px 20px;
	}
	.main-menu .main-menu-bottom ul li {
	    margin-bottom: 10px;
	}
	.main-menu .main-menu-bottom ul li a {
	    font-size: 13px;
	    line-height: 15px;
	    height: 45px;
	    padding: 0 10px;
	}
	.main-menu .main-menu-bottom ul li a.donate {
	    font-size: 16px;
	}
	.main-menu .main-menu-bottom ul li a img {
	    margin: 0 8px 0 0;
	    -webkit-transform: scale(0.6);
    	transform: scale(0.6);
	}

	/* page-title */
	.page-title {
		position: relative;
	}
	.page-title .container {
	    padding-bottom: 30px;
	    padding-top: 30px;
	    position: static;
	}
	.page-title .share {
	    bottom: 12px;
	    right: 10px;
	    z-index: 2500;
	}
	.toggle-mobile-sidebar-wrp {
		background: #3bb08e;
		padding: 10px;
	}
	.toggle-mobile-sidebar-wrp:after {
		content: "";
		display: block;
		clear: both;
	}
	.toggle-mobile-sidebar {
		cursor: pointer;
		z-index: 2500;
		float: left;
		display: flex;
		align-items: center;
		font-size: 13px;
		line-height: 13px;
		color: #ffffff;
		font-family: 'Montserrat', sans-serif;
		font-weight: 400;
		-webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
		-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
		-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
		-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
		transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
		padding: 10px;
	}
	.toggle-mobile-sidebar:hover,
	.toggle-mobile-sidebar.active {
		background: #2fa381;
	}
	.toggle-mobile-sidebar .icon {
		width: 20px;
		height: 18px;
		position: relative;
	}
	.toggle-mobile-sidebar .icon .bar {
		position: absolute;
		width: 20px;
		height: 2px;
		background: #ffffff;
		left: 0px;
		right: 0px;
		-webkit-transition: 0.2s all linear;
		-moz-transition: 0.2s all linear;
		-ms-transition: 0.2s all linear;
		-o-transition: 0.2s all linear;
		transition: 0.2s all linear;
	}
	.toggle-mobile-sidebar .icon .top-bar {
		top: 0px;
	}
	.toggle-mobile-sidebar .icon .top-bar.middle {
		top: 8px;
	}
	.toggle-mobile-sidebar .icon .top-bar.rotate {
		-webkit-transform: rotate(45deg);
	    -moz-transform: rotate(45deg);
	    -o-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	    transform: rotate(45deg);
	}
	.toggle-mobile-sidebar .icon .middle-bar {
		top: 8px;
	}
	.toggle-mobile-sidebar.active .icon .middle-bar {
		opacity: 0;
	}
	.toggle-mobile-sidebar .icon .bottom-bar {
		top: 16px;
	}
	.toggle-mobile-sidebar .icon .bottom-bar.middle {
		top: 8px;
	}
	.toggle-mobile-sidebar .icon .bottom-bar.rotate {
		-webkit-transform: rotate(-45deg);
	    -moz-transform: rotate(-45deg);
	    -o-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	}
	.toggle-mobile-sidebar .text {
		margin-left: 10px;
	}

	/* related-items */
	.related-items {
	    font-size: 16px;
	    line-height: 16px;
	    padding: 0;
	    display: none;
	}
	.related-items > ul {
		padding: 20px;
	}
	.related-items > ul > li {
	    display: block;
	    margin: 0 0 10px 0;
	}
	.related-items > ul > li:last-of-type {
	    margin-bottom: 0;
	}
	.related-items > ul > li > a {
	    display: inline-block;
	    vertical-align: top;
	}
	.related-items > ul > li .sort-item {
	}
	.related-items > ul > li .sort-item .sort-item-top {
	    display: inline-block;
	    vertical-align: top;
	}
	.related-items > ul > li .sort-item .sort-item-list {
	    left: auto;
	    position: relative;
	    right: auto;
	    top: auto;
	}

	/* site-main */
	.site-main {
		padding: 40px 0;
	}
	.featured-content {
	    margin-bottom: 40px;
	    margin-top: 40px;
	    padding: 0;
	}
	.featured-content .featured-content-media {
	    bottom: auto;
	    left: auto;
	    position: relative;
	    top: auto;
	    width: auto;
	    height: 240px;
	}
	.featured-content .featured-content-text {
	    padding: 20px;
	    min-height: 0px;
	}

	/* archive */
	.entry-archive {
		padding: 40px 20px;
		margin-left: -20px;
		margin-right: -20px;
	}
	.entry-archive:first-of-type {
		padding-top: 0;
	}
	.entry-archive .entry-archive-content {
	    padding-left: 0;
	    width: auto;
	    float: none;
	    text-align: center;
	}
	.entry-archive .entry-archive-image {
	    max-width: 280px;
	    width: 100%;
	    margin: auto;
	    margin-bottom: 10px;
	    float: none;
	}
	.entry-archive .entry-archive-image .date {
		width: 50px;
		height: 60px;
		padding-top: 10px;
	}
	.entry-archive .entry-archive-image .date .month {
		font-size: 15px;
		line-height: 15px;
	}
	.entry-archive .entry-archive-image .date .day {
		font-size: 24px;
		line-height: 24px;
	}
	.entry-archive .entry-archive-content h2 {
	    font-size: 24px;
	    line-height: 26px;
	    margin-bottom: 15px;
	}
	.entry-archive .entry-archive-content .info {
	    margin-bottom: 20px;
	}
	.entry-archive .entry-archive-content .info ul li {
	    display: block;
	    margin-right: 0;
	    margin-bottom: 5px;
	}
	.entry-archive .entry-archive-content .info ul li:last-of-type {
	    margin-bottom: 0;
	}

	/* home */
	.home-menu ul li {
	    float: none;
	    width: auto;
	}
	.home-menu ul li a .image-ct {
	    display: none;
	}
	.home-menu ul li a .content {
	    height: auto;
	    padding: 20px 20px 20px 100px;
	    display: block;
	    -webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
		-moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
		-ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
		-o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
		transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
	}
	.home-menu ul li a:hover .content {
		background: #268469;
	}
	.home-menu ul li a .content .icon {
    	top: 0px;
    	left: 20px;
    	width: 80px;
    	bottom: 0px;
    	right: auto;
    	height: auto;
    	margin: auto;
	}
	.home-menu ul li a .content .icon img {
    	-webkit-transform: scale(0.45);
    	transform: scale(0.45);
	}
	.home-menu ul li a .content .top {
	    font-size: 19px;
	    line-height: 21px;
	    margin: 0;
	    text-align: left;
	}
	.home-menu ul li a .content .bottom {
	    display: none;
	}
	.introduction .introduction-top {
	    background: #f0f0db none repeat scroll 0 0;
	    padding: 20px 0 0;
	    text-align: center;
	}
	.introduction .introduction-top .verse {
	    font-size: 18px;
	    line-height: 28px;
		margin-bottom: 0px;
		height: auto;
		display: block;
		padding: 45px 20px 30px 20px;
		margin-left: -20px;
		margin-right: -20px;
	}
	.introduction .introduction-top .verse::before {
	    height: 70px;
	    left: 50%;
	    margin-left: -35px;
	    top: -40px;
	    width: 70px;
	    background-size: 30px auto;
	}
	.introduction .introduction-top .verse .author {
	    font-size: 20px;
	    line-height: 20px;
	    margin-top: 15px;
	}
	.introduction .introduction-top .help-ways {
	    font-size: 10px;
	    height: 96px;
	    line-height: 12px;
	    margin-bottom: 20px;
	    padding-left: 141px;
	    padding-right: 15px;
	}
	.introduction .introduction-top .help-ways .image-ct {
	    width: 126px;
	}
	.introduction .introduction-top .help-ways strong {
	    font-size: 21px;
	    line-height: 23px;
	    margin-bottom: 5px;
	}
	.introduction .introduction-top .support {
	    font-size: 10px;
	    height: 74px;
	    line-height: 12px;
	    margin-bottom: 45px;
	}
	.introduction .introduction-top .support span::before {
	    height: 32px;
	    margin-top: -13px;
	    width: 32px;
		background-size: 100% 100%;
	}
	.introduction .introduction-top .support span {
	    padding-left: 50px;
	}
	.introduction .introduction-top .support strong {
	    font-size: 19px;
	    line-height: 21px;
	    margin-bottom: 5px;
	}
	.introduction .introduction-bottom {
	    padding: 135px 20px 20px 20px;
	    font-size: 18px;
	    line-height: 28px;
	}
	.introduction .introduction-bottom .container {
		position: static;
	}
	.introduction .introduction-bottom .bg-image {
	    display: none;
	}
	.introduction .introduction-bottom h1 {
	    font-size: 24px;
	    line-height: 26px;
	    position: absolute;
	    height: 115px;
	    top: 0px;
	    left: 0px;
	    right: 0px;
	    padding: 0 20px;
	    flex-direction: column;
	}
	.introduction .introduction-bottom h1:before {
	    content: "";
	    position: absolute;
	    display: block;
	    left: 0px;
	    top: 0px;
	    right: 0px;
	    bottom: 0px;
	    background: url('../images/introduction-bottom-bg.jpg') no-repeat center;
		background-size: cover;
		opacity: 0.2;
	}
	.introduction .introduction-bottom h1 img {
	    display: none;
	}
	.introduction .introduction-bottom .tagline {
	    font-size: 15px;
	    line-height: 17px;
	    padding: 10px 20px;
	}
	.sign-up {
	    padding: 30px 0;
	}
	.sign-up h3 {
	    font-size: 20px;
	    line-height: 22px;
	    margin-bottom: 20px;
	    padding-left: 0;
	    margin-right: 0;
	}
	.sign-up h3:before {
	    display: none;
	}
	.sign-up .sign-up-ct {
	    display: block;
	    text-align: center;
	}
	.sign-up form {
	    max-width: 420px;
	    width: 100%;
	    margin: auto;
	}
	.sign-up form .field {
		padding: 0 110px 0 20px;
		font-size: 14px;
	}
	.sign-up form .submit {
	    font-size: 16px;
	    width: 90px;
	}
	.home-events {
	    padding: 70px 0 50px;
	}
	.home-events ul li {
	    float: none;
	    padding: 0;
	    width: auto;
	    margin-bottom: 70px;
	}
	.home-events ul li:last-of-type {
	    margin-bottom: 0;
	}
	.home-events .event {
		max-width: 280px;
		margin: auto;
	}
	.home-events .event .event-image .date {
	    height: 37px;
	    left: 0px;
	    padding-top: 0px;
	    top: -37px;
	    width: 98px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	.home-events .event .event-content {
	    font-size: 15px;
	    line-height: 20px;
	    padding: 20px 25px 50px;
	}
	.home-events .event .event-image .date .month {
	    font-size: 15px;
	    line-height: 15px;
	    margin-right: 10px;
	    padding-top: 3px;
	}
	.home-events .event .event-image .date .day {
	    font-size: 22px;
	    line-height: 24px;
	}
	.home-articles {
	    padding: 40px 0 40px;
	}
	.home-articles ul li {
	    float: none;
	    padding: 0;
	    width: auto;
	    margin-bottom: 40px;
	}
	.home-articles ul li:last-of-type {
	    margin-bottom: 0;
	}
	.home-articles .article {
		max-width: 280px;
		margin: auto;
	}
	.home-articles .article .article-image .date {
	    height: 37px;
	    left: 0px;
	    padding-top: 0px;
	    top: -37px;
	    width: 98px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	.home-articles .article .article-content {
	    font-size: 15px;
	    line-height: 20px;
	    padding: 20px 25px 50px;
	}
	.home-articles .article .article-image .date .month {
	    font-size: 15px;
	    line-height: 15px;
	    margin-right: 10px;
	    padding-top: 3px;
	}
	.home-articles .article .article-image .date .day {
	    font-size: 22px;
	    line-height: 24px;
	}
	.page-bottom .page-bottom-donate.home-donate {
		background: #ffffff none repeat scroll 0 0;
		padding: 0;
	}
	.page-bottom .page-bottom-donate.home-donate .donate-text {
	    padding: 30px 0;
	}
	.page-bottom .page-bottom-donate.home-donate .donate-form {
		flex: 0 0 53%;
		text-align: center;
		background: #f7f7ed;
		padding: 30px 20px;
		margin-left: -20px;
		margin-right: -20px;
	}
	.testimonials {
		padding: 30px 0;
	}
	.testimonials h3 {
	    font-size: 20px;
	    line-height: 24px;
	    margin-bottom: 20px;
	}
	.testimonials .author {
	    font-size: 12px;
	    line-height: 15px;
	    padding: 10px 20px;
	    margin-bottom: 20px;
	}
	.testimonials img {
	    width: 40px;
	}
	.ministry-box .ministry-box-top .image {
	    height: 240px;
	    float: none;
	    width: auto;
	}
	.ministry-box .ministry-box-top .text {
	    height: auto;
	    float: none;
	    width: auto;
	    display: block;
	    padding: 30px 20px;
	}
	.ministry-box .ministry-box-top .text h1 {
	    font-size: 28px;
	    line-height: 32px;
	    margin-bottom: 25px;
	}
	.ministry-box .ministry-box-top .text .help {
		font-size: 14px;
		line-height: 16px;
		padding: 15px 30px 15px 82px;
	}
	.ministry-box .ministry-box-top .text .help::before {
		background-size: 100% 100%;
		height: 28px;
		left: 30px;
		margin-top: -14px;
		position: absolute;
		top: 50%;
		width: 32px;
	}
	.ministry-box .ministry-box-top .text .help strong {
	    font-size: 18px;
	    line-height: 20px;
	    margin-bottom: 5px;
	}
	.ministry-box .ministry-box-bottom {
	    padding: 30px 0;
	}
	.ministry-box .ministry-box-bottom h2 {
	    font-size: 20px;
	    line-height: 22px;
	    margin-bottom: 15px;
	}

	/* page-bottom */
	.page-bottom .page-bottom-contact a {
	    display: block;
	    padding: 20px;
	    text-align: center;
	}
	.page-bottom .page-bottom-contact a .left-text {
	    font-size: 22px;
	    line-height: 22px;
	    margin-bottom: 10px;
	}
	.page-bottom .page-bottom-contact a img {
	    margin: 0 auto 10px auto;
	}
	.page-bottom .page-bottom-donate {
	    padding: 30px 0;
	}
	.page-bottom .page-bottom-donate .page-bottom-donate-ct {
	    display: block;
	    text-align: center;
	}
	.page-bottom .page-bottom-donate .donate-text {
		padding: 0;
	}
	.page-bottom .page-bottom-donate .donate-text::before {
	    position: relative;
	    left: auto;
	    top: auto;
	    margin-top: 0;
	    margin: auto;
	    margin-bottom: 20px;
	    width: 70px;
	    height: 70px;
	    background-size: 100% 100%;
	}
	.page-bottom .page-bottom-donate .donate-text h3 {
	    font-size: 22px;
	    line-height: 28px;
	}
	.page-bottom .page-bottom-donate .donate-form {
	    padding-left: 0;
	    padding-top: 30px;
	}
	.page-bottom .page-bottom-donate .donate-form h4 {
	    font-size: 18px;
	    line-height: 20px;
	}
	.page-bottom .page-bottom-donate .donate-form form ul li .r-label {
	    border-radius: 4px;
	    font-size: 16px;
	    line-height: 18px;
	    padding: 5px 10px 7px;
	}
	.page-bottom .page-bottom-donate .donate-form form ul li input[type="text"] {
  		border-radius: 4px;
	    font-size: 16px;
	    line-height: 18px;
	    padding: 5px 10px 7px 25px;
	    width: 90px;
	}
	.page-bottom .page-bottom-donate .donate-form form ul li .i-label {
	    font-size: 16px;
	    left: 10px;
	    line-height: 18px;
	    top: 4px;
	}

	/* footer */
	.site-footer .footer-top {
	    padding: 30px 0;
	}
	.site-footer .footer-top .footer-top-ct {
	    display: block;
	    text-align: center;
	    position: relative;
	    padding-top: 95px;
	}
	.site-footer .footer-top .footer-top-column {
	    position: static;
	}
	.site-footer .footer-top .footer-logo {
	    width: 220px;
	    height: 65px;
	    position: absolute;
	    left: 50%;
	    margin-left: -110px;
	    top: 0px;
	}
	.site-footer .footer-info {
	    margin-bottom: 40px;
	}
	.site-footer .footer-info ul li {
	    display: inline-block;
	    vertical-align: top;
	    margin-right: 50px;
	}
	.site-footer .footer-info ul li:last-of-type {
	    margin-right: 0;
	}
	.site-footer .footer-info ul li a {
	    position: relative;
	    font-size: 15px;
	    line-height: 15px;
		text-transform: uppercase;
		display: block;
		padding-top: 65px;
	}
	.site-footer .footer-info ul li a:before {
	    height: 65px;
	    content: "";
	    display: block;
	    position: absolute;
	    left: 0px;
	    right: 0px;
	    top: 0px;
	}
	.site-footer .footer-info ul li a.address:before {
	    background: url('../images/mobile-footer-address.png') no-repeat center;
	}
	.site-footer .footer-info ul li a.phone:before {
	    background: url('../images/mobile-footer-phone.png') no-repeat center;
	}
	.site-footer .footer-menu {
	    margin-bottom: 30px;
	    text-align: center;
	    font-size: 14px;
	    line-height: 18px;
	}
	.site-footer .footer-menu ul li {
	    margin-right: 15px;
	}
	.site-footer .social {
	    text-align: center;
	}
	.site-footer .footer-bottom .footer-bottom-ct {
	    display: block;
	}
	.site-footer .copyright {
	    text-align: center;
	    margin-bottom: 20px;
	}
	.site-footer .nsm-developer {
  		margin: auto;
	}
	.back-to-top {
		background: #081e3c;
		cursor: pointer;
		-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		font-size: 16px;
		line-height: 16px;
		padding: 20px;
		font-weight: 700;
		text-transform: uppercase;
		color: #ffffff;
		text-align: center;
	}
	.back-to-top:hover {
		background: #031125;
	}

}
