/* ----------------------------------------------------------------------------------------
* Author        : Marifah
* Template Name : Marifah - 
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Scrolling Ticker css
06. About Us css
07. Join Worship css
08. Our Counter css
09. Our Mission css
10. Our Services css
11. Service Ticker css
12. Our Ministries css
13. Our Sermons css
14. Verse Church css
15. CTA Box css
16. Our Event css
17. Donate Now css
18. Latest Post css
19. Subscribe Newsletter Css
20. Footer css
21. About us Page css
22. Services Page css
23. Service Single css
24. Blog Archive css
25. Blog Single css
26. Page Sermons css
27. Page Sermons Single css
28. Page Campaign css
29. Page Campaign Single css
30. Page Ministries css
31. Page Ministries Single css
32. Page Pastor css
33. Page Gallery css
34. Contact us Page css
35. 404 Page css
36. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Style+Script&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Monoton&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
:root{
	--primary-color			: #000000;
	--secondary-color		: #e5ffec;
	--text-color			: #525252;
	--accent-color			: #123e20;
	--white-color			: #FFFFFF;
	--divider-color			: #FFFFFF26;
	--dark-divider-color	: #E9E9E9;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Fira Sans Condensed", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.mfp-container{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 14px 70px 14px 20px;
	border: none;
	overflow: hidden;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.btn-default:hover{
	background-color: transparent;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--white-color);
	background-image: url('../images/arrow-orange.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 12px auto;
	transform: translate(-4px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover:before{
	transform: translate(-4px, -50%) rotate(45deg);
	background-size: 12px auto;
}

.btn-default::after{ 
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 100px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after{
	width: 100%;
}

.btn-default.btn-highlighted{
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted:hover{
	background-color: transparent;
}

.btn-default.btn-highlighted:before{
	background-color: var(--accent-color);
	background-image: url('../images/arrow-white.svg');
}

.btn-default.btn-highlighted::after{
	background-color: var(--primary-color);
}

.readmore-btn{
	background-color: var(--accent-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.readmore-btn img{
    max-width: 15px;
    transition: all 0.3s ease-in-out;
}

#magic-cursor{
	position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 60px;
}

.section-row .section-title{
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 0;
}

.section-btn{
	text-align: end;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 16px;
    font-weight: 600;
	line-height: 1.2em;
    text-transform: uppercase;
    color: var(--accent-color);
	padding-left: 25px;
    margin-bottom: 25px;
}

.section-title h3::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url("../images/icon-sub-heading.svg") no-repeat;
	background-position: left center;
	background-size: cover;
	width: 18px;
	height: 18px;
}

.section-title h1{
	font-size: 55px;
	font-weight: 700;
	line-height: 1.3em;
	margin-bottom: 0;
}

.section-title h2{
	font-size: 44px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 25px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}


/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: relative;
	border-bottom: 1px solid var(--divider-color);
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
}

.navbar{
	padding: 30px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	padding: 14px 15px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 260px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu ul li.submenu > a:after{
	content: '\f105';
	float: right;
}

.main-menu ul li.submenu:first-child ul ul{
    width: 250px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0 0 10px 0;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
	border-radius: 0 0 50px 0;
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

.navbar-brand img {
    width: 91px;
    margin-top: -25px;
}


.main-menu ul li a {
    font-size: 14px;
    padding: 14px 6px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: capitalize;
}
.main-menu ul li {
    margin: 0;
    margin-right: 15px;
}

.main-menu ul li a {
    padding: 14px 0px !important;
    font-size: 12px;
    letter-spacing: 1px;
}

.navbar-brand img {
    width: 79px;
    margin-top: -16px;
}

.navbar {
    padding: 20px 0px;
}

.main-menu ul li:last-child {
    margin: 0;
}


/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: var(--primary-color) url('../images/hero-img-back-1.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 100vh;
	overflow: hidden;
	padding: 170px 0;
	margin-top: -118px;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero-video .hero-bg-video::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 40%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider{
	background: none;
	padding: 0;
}

.hero-slider-layout .hero-slide{
	position: relative;
	min-height: 100vh;
    padding: 250px 0;
}

.hero.hero-slider:before{
	display: none;
}

.hero.hero-slider .hero-slider-layout{
	position: relative;
	z-index: 2;
}

.hero-slider-layout .hero-slide::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content{
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.hero-slider-layout .hero-pagination{
	position: absolute;
	text-align: center;
	z-index: 2;
    bottom: 130px;
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	z-index: 2;
}

.hero-content .section-title h1{
	color: var(--white-color);
}

.hero-content .section-title p{
	width: 100%;
	max-width: 600px;
	margin-top: 20px;
	color: var(--white-color);
    font-size: 17px;
}

.hero-content-body .btn-default.btn-highlighted{
	margin-left: 30px;
}

.down-arrow a{
	position: absolute;
	top: auto;
	left: 50%;
	bottom: 30px;
	width: 30px;
	height: 50px;
	border: 2px solid var(--white-color);
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%);
	animation: jumpInfinite 1.5s infinite;
	transition: all 0.3s ease-in-out;
	z-index: 2;
}

.down-arrow a:hover{
	border-color: var(--accent-color);
}

.down-arrow a i{
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.down-arrow a:hover i{
	color: var(--accent-color);
}
  
@keyframes jumpInfinite{
	0%{
		margin-bottom: 0;
	}
	50%{
		margin-bottom: 20px;
	}
	100%{
		margin-bottom: 0;
	}
}



.hero.innerHero {
    min-height: unset;
    padding: 150px 0px 80px;
}

.hero.innerHero .hero-content .section-title p {
    font-size: 16px;
}
.hero-slider-layout .hero-slide {
    padding: 180px 0px 110px;
}
.hero-slider-layout .hero-slide::before {
    display: none;
}
.hero-content .section-title h1 {
    font-family: "Saira", sans-serif;
}

.hero-content .section-title p {
    font-size: 15px;
    line-height: 30px;
    font-family: 'montserrat', sans-serif;
    font-weight: 600;
}

.hero-content .section-title h3 {
    font-size: 24px;
    font-family: "Saira", sans-serif;
    text-transform: unset;
    color: #fff;
    margin-bottom: 20px;
}

.section-title h3::before {
    top: 5px;
}

.btn-default {
    font-family: "Saira", sans-serif;
}
.main-menu ul li.submenu > a:after {
    vertical-align: middle;
    font-size: 12px;
    margin-left: 6px;
}

.main-menu ul li {
    margin-right: 17px;
}
.heroBanner {
    background: #17512a;
    padding: 180px 0px 110px;
    margin-top: -100px;
}

.heroBanner .section-title h3 {
    font-size: 24px;
    font-family: "Saira", sans-serif;
    text-transform: unset;
    color: #fff;
    margin-bottom: 20px;
}

.heroBanner .section-title h1 {
    font-family: "Saira", sans-serif;
    color: #fff;
}

.heroBanner .section-title p {
    font-size: 15px;
    line-height: 30px;
    font-family: 'montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
}

.heroBanner .section-title h3:before {
    filter: contrast(0);
}
.heroBanner .section-title h3::before {
    top: 5px;
}


/************************************/
/***  05. Scrolling Ticker css    ***/
/************************************/

.our-scrolling-ticker{
	background-color: var(--accent-color);
	padding: 30px 0;
}

.our-scrolling-ticker .scrolling-ticker-box{
	--gap: 40px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.our-scrolling-ticker .scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 24s linear infinite;
}

.our-scrolling-ticker .scrolling-content span{
	display: inline-block;
	font-size: 26px;
	font-weight: 700;
	color: var(--white-color);
	vertical-align: middle;
}

.our-scrolling-ticker .scrolling-content span img{
	width: 100%;
	max-width: 30px;
	margin-right: 40px;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}


.about-us .section-title {}

.section-title h3 {
    font-family: "Saira", sans-serif;
}

.section-title h3::before {
    top: 0;
}

.section-title h2 {
    font-family: "Saira", sans-serif;
    text-transform: unset;
}

.about-us {
    padding: 60px 0px;
}

.about-us p {
    font-size: 14px;
    line-height: 27px;
    font-family: 'montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
    color: #343434;
}

.about-content .section-title h2 {
    margin-bottom: 26px;
}

.home-chapters {
    background: #17512a;
}

.home-chapters {
    padding: 70px 0px 40px;
}

.home-chapters .chapters-content .section-title h2 {
    color: #fff;
}

.home-chapters .chapters-content .section-title p {
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    font-family: 'montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 11px;
}

.home-chapters .chapters-content .section-title {
    margin-bottom: 35px;
}

.home-chapters .chapters-content {
    margin-bottom: 50px;
}

.home-chapters .chapters {
    border-radius: 32px;
    transition: 0.5s;
    background: #123e20;
    box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    margin-bottom: 30px;
    padding: 40px 35px;
    text-align: center;
}

.home-chapters .chapters figure img {
    display: none;
}

.home-chapters .chapters figure i {
    color: #fff;
    box-shadow: inset 0px 0px 76px 27px #17512a;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    font-size: 47px;
    margin-bottom: 17px;
}

.home-chapters .chapters h4 {
    padding: 0;
    margin: 0;
    margin-bottom: 8px;
    font-family: "Saira", sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    transition: 0.5s;
    color: #fff;
    margin-bottom: 14px;
}

.home-chapters .chapters p {
    font-family: "Saira", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.03em;
    margin-bottom: 0px;
    color: #ffffff;
}

.home-chapters .chapters a.lnks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.home-chapters .chapters {
    position: relative;
}
.home-chapters .chapters:hover figure img {
    transform: scale(1.08);
}

.home-chapters .chapters figure {
    text-decoration: none;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.mt-50 {
    margin-top: 50px;
}

.home-events {
    padding: 60px;
}

.home-events figure img {
    width: 100%;
    border-radius: 32px;
}

.home-events figure {
    width: 100%;
}

.home-events .section-title h2 {
    font-size: 38px;
}

.home-events .section-title p {
    font-size: 16px;
    font-family: 'montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 11px;
    line-height: 31px;
}

.home-events .about-single-item {
    border: 1px solid #d9d9d9;
    border-radius: 32px;
    transition: 0.5s;
    background: #ffffff;
    box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    margin-bottom: 22px;
    padding: 20px 15px;
}

.home-events .about-single-item i {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: inset 0px 0px 3px 16px #17512a;
    color: #fff;
    background: #000;
}

.home-events .about-single-item h5 {
    padding: 0;
    margin: 0;
    margin-bottom: 8px;
    font-family: "Saira", sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    transition: 0.5s;
}

.home-events .about-single-item p {
    font-family: "Saira", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.03em;
    margin-bottom: 0px;
    color: #000;
}

.eventlist .row {
    margin: 0px -6px;
}

.eventlist  .col-sm-4.col-md-4 {
    padding: 0px 6px;
}

.home-events .eventlist .about-us-footer {
    margin-top: 30px;
}

.home-events .eventlist a.btn-default {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 29px;
}

.home-events .section-title {
    padding-top: 20px;
}

.home-quote .section-title p {
    font-size: 21px;
    font-family: "Saira", sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 11px;
    position: relative;
    line-height: 31px;
}

.home-quote .section-title p strong {
    font-weight: bold;
    display: block;
    position: relative;
    color: #000;
    font-size: 25px;
    margin-top: 8px;
}

.home-quote .section-title p {
    text-align: center;
}

.home-quote .section-title p img {
    width: 24px;
}

.home-quote .section-title p img {
    margin-top: -19px;
}

.home-quote .section-title p img.img2 {
    transform: rotate(180deg);
    margin-left: 5px;
}

.home-quote {
    padding-bottom: 50px;
}

.home-quote .section-title p .img1 {
    margin-right: 5px;
}
.home-chapters .blog {
    background-color: #123e20;
    border-radius: 20px;
    padding: 20px 20px 24px;
}

.home-chapters .blog figure img {
    text-decoration: none;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    border-radius: 32px;
    height: 100%;
}

.home-chapters .blog figure {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 32px;
    margin-bottom: 30px;
}

.home-chapters .blog:hover figure img {
    transform: scale(1.15);
}

.home-chapters .blog h5 {
    padding: 0;
    margin: 0;
    margin-bottom: 8px;
    font-family: "Saira", sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    transition: 0.5s;
    color: #fff;
    margin-bottom: 14px;
    line-height: 27px;
}

.home-chapters .blog a {
    background: rgb(0 0 0 / 22%);
    padding: 10px 40px;
    display: inline-block;
    border-radius: 35px;
    color: #fff;
    font-family: "Saira", sans-serif;
    font-weight: 600;
    font-size: 14px;
}
.home-impect {
    padding: 70px 0;
}

.home-impect .section-title p {
    margin: 0;
    font-size: 16px;
    font-family: 'montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.home-impect .section-title {
    margin-bottom: 60px;
}

.home-impect .section-title h2 {
    margin-bottom: 10px;
}

.home-impect .about-single-item {
    text-align: center;
}

.home-impect .about-single-item i {
    font-style: normal;
    color: #17512a;
    font-family: "Saira", sans-serif;
    text-transform: unset;
    font-weight: 800;
    font-size: 25px;
}

i spanb {}

.home-impect .about-single-item h5 {
    padding: 0;
    margin: 0;
    margin-bottom: 8px;
    font-family: "Saira", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    transition: 0.5s;
    margin-bottom: 14px;
    line-height: 27px;
}

.home-impect .about-single-item {
    border-right: 1px solid #b7b7b7;
}

.home-impect .about-single-item.lst {
    border: 0;
}

.home-impect .about-us-footer {
    text-align: center;
    margin-top: 60px;
}
.home-chapters .blog  .blogCnt {
    min-height: 115px;
}

.verse-church {
    padding: 80px 0;
}

.verse-church .section-title p {
    font-size: 16px;
    font-family: 'montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

footer.main-footer {
    background: #17512a;
    padding: 70px 0 20px;
}

footer.main-footer .footer-logo img {
    width: 110px;
    margin-bottom: 31px;
}

footer.main-footer .footer-social-links ul li {
    display: inline-block;
}
footer.main-footer .footer-social-links ul li a {
    background: #123e20;
    width: 84px;
    height: 45px;
    display: inline-block;
    border-radius: 32px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    margin: 0px 5px;
    font-size: 19px;
}

footer.main-footer .footer-social-links ul li a:hover {
    background: #101c12;
}

footer.main-footer .footer-social-links ul li a i {
    vertical-align: middle;
}

footer.main-footer .footer-social-links {
    text-align: center;
}

footer.main-footer .footer-logo {
    text-align: center;
}

footer.main-footer .footer-social-links ul {
    padding: 0;
}

.footer-links {}

footer.main-footer .fottop {
    margin-bottom: 60px;
}

footer.main-footer .footer-links h3 {
    font-family: "Saira", sans-serif;
    text-transform: unset;
    font-weight: 700;
    font-size: 25px;
    color: #fff;
    margin-bottom: 12px;
}

footer.main-footer .footer-links ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: block;
}

footer.main-footer .footer-links ul {}

footer.main-footer .footer-links ul li {}

footer.main-footer .footer-links ul li {
    color: #fff;
    margin-bottom: 8px;
}

footer.main-footer .footer-copyright {
    margin-top: 68px;
    text-align: center;
}

footer.main-footer .footer-copyright p {
    font-family: "Saira", sans-serif;
    color: #fff;
    font-size: 16px;
}

footer.main-footer .footer-copyright .footer-copyright-text {
    padding-top: 0px;
}
.footer-contact h3 {
    font-family: "Saira", sans-serif;
    text-transform: unset;
    font-weight: 700;
    font-size: 25px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-contact-details .footer-info-box {
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
}

.footer-contact-details .footer-info-box .icon-box {
    position: absolute;
    top: -2px;
    left: 0;
}

.footer-contact-details .footer-info-box .footer-info-box-content p {
    color: #fff;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.footer-contact-details .footer-info-box .icon-box img {
    max-width: 24px;
}

.footer-contact h3, footer.main-footer .footer-links h3 {
    font-weight: 600;
    font-size: 25px;
}
.home-chapters .chapters figure img {
    display: block;
    border-radius: 16px;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.home-chapters .chapters figure {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 22px;
}

.home-chapters .chapters {
    text-align: left;
    border-radius: 16px;
    padding: 20px 20px 24px;
}
.home-chapters .chapters figure {
    height: 210px;
}
.home-chapters .chapters a.btn-default {
    background: none !important;
    padding-left: 0;
    padding-right: 44px;
    font-family: 'montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.home-chapters .chapters p {
    margin-bottom: 20px;
}

.home-chapters .chapters a.btn-default:before {
    width: 30px;
    height: 30px;
    background-size: 10px;
}

.home-chapters .chapters a.btn-default:after {
    display: none;
}
.heroBanner.innerbanner .section-title h1 {
    font-size: 44px;
}

.heroBanner.innerbanner .section-title {
    padding-top: 67px;
}

.heroBanner.innerbanner {
    padding-bottom: 70px;
    padding-top: 126px;
}
.heroBanner.innerbanner img {
    margin-top: 20px;
}
.howtowrks .timelinesteps {
    background: #17512a;
    background: linear-gradient(185deg, #17512a 0%, rgb(16 60 31) 66%);
    padding: 60px;
    text-align: center;
    border-radius: 20px;
}

.howtowrks .timelinesteps .mtitle h2 {
    font-family: "Saira", sans-serif;
    font-weight: 700;
    text-transform: unset;
    color: #fff;
    font-size: 29px;
}

.howtowrks .timelinesteps .mtitle {
    margin-bottom: 50px;
}

.howtowrks .timelinesteps .mnsteps {
    position: relative;
}
.timelinesteps .mnsteps:before {
    position: absolute;
    content: '';
    width: 5px;
    height: 100%;
    display: block;
    background: #fff;
    left: 50%;
    border-radius: 4px;
    margin-left: -2px;
}
.timelinesteps .mnsteps .step {
    text-align: left;
    margin-bottom: 20px;
    padding-top: 10px;
    position: relative;
}
.timelinesteps .mnsteps .step.alnright {
    text-align: right;
}

.timelinesteps .mnsteps .step:before {
    width: 186px;
    height: 5px;
    background: #fff;
    position: absolute;
    top: 35px;
    left: -100px;
    content: '';
}
.timelinesteps .mnsteps .step.alnright:before {
    left: unset;
    right: -100px;
}

.timelinesteps .mnsteps .step h5 {
    background: #fff;
    font-family: "Saira", sans-serif;
    text-transform: unset;
    color: #000;
    padding: 10px 20px;
    font-size: 19px;
    border-radius: 14px;
    display: inline-table;
    margin-bottom: 11px;
    position: relative;
}
.timelinesteps .mnsteps .step p {
    font-family: "Saira", sans-serif;
    color: #fff;
    margin-bottom: 10px;
    font-size: 15px;
}


.howtowrks.whyhalals {
    padding: 20px 0px 70px;
}


.home5-services-section {
    background: #e5ffec;
    padding: 70px 0px;
}

.mtitle h2 {
    font-family: "Saira", sans-serif;
    font-weight: 700;
    text-transform: unset;
    color: #000000;
    font-size: 30px;
}

.mtitle {
    text-align: center;
    margin-bottom: 50px;
}

.home5-services-section .solution-card {
    border: 1px solid #d9d9d9;
    border-radius: 32px;
    transition: 0.5s;
    background: #ffffff;
    box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    margin-bottom: 42px;
    padding: 30px 25px;
}

.home5-services-section .solution-card .icon img {
    height: 62px;
    width: auto;
    margin: 0;
    display: inline-block;
}

.home5-services-section .solution-card .icon {
    text-align: center;
    margin-bottom: 23px;
}

.home5-services-section .solution-card .solution-content h4 {
    padding: 0;
    margin: 0;
    margin-bottom: 8px;
    font-family: "Saira", sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    transition: 0.5s;
}

.home5-services-section .solution-card .solution-content p {
    font-family: "Saira", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.03em;
    margin-bottom: 0px;
    color: #000;
    min-height: 48px;
}

.home5-services-section .solution-card .solution-content {
    text-align: center;
}


.about-single-items p {
    text-align: center;
    margin-top: 21px;
}

.about-single-items p a {
    font-family: "Saira", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #17512a;
    text-decoration: underline;
    margin: 0px 8px;
}

.home-events .eventlist .about-us-footer.mb-50 {
    margin-top: 0;
    margin-bottom: 33px;
}

.page-header {
    position: relative;
    background-position: center center;
    background-size: cover;
    padding: 190px 0 100px;
    margin-top: -100px;
    background-position: center center !important;
    background-size: cover !important;
}

.page-header.innrPageheader .page-header-box h1 {
    text-transform: unset;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 0;
    color:#fff;
    font-family: "Saira", sans-serif;
    margin-bottom: 11px;
}
.page-header.innrPageheader .page-header-box p {
    width: 100%;
    max-width: 640px;
    margin-top: 20px;
    color:#fff;
    font-size: 17px;
}

.page-header.innrPageheader .page-header-box h6 {
    color: #fff;
    margin-bottom: 25px;
    font-family: "Saira", sans-serif;
    font-size: 19px;
    margin-top: 0;
    margin-bottom: 34px;
}
.home-quote.Innrquote {
    background: #17512a;
    padding: 28px 0px;
}

.home-quote.Innrquote .home-quote .section-title p {}

.home-quote.Innrquote .section-title {
    margin: 0;
}

.home-quote.Innrquote .section-title p {
    color: #fff;
    margin: 0;
}

.home-quote.Innrquote .section-title p strong {
    color: #fff;
}
.mtitle p {
    font-family: "Saira", sans-serif;
    font-size: 17px;
    color: #000;
    font-weight: 600;
    margin-bottom: 1px;
}

.mtitle h2 {
    margin-bottom: 6px;
}

.comparison {
    background: #e5ffec;
    padding: 70px 0;
}

.comparison .table_n {
    width: 100%;
}
.comparison table thead tr th {
    font-family: "Saira", sans-serif;
    font-weight: 700;
    font-size: 14px;
    background: none;
    color: #000;
    padding: 0px 10px;
}
.comparison .table_n tbody tr {
    box-shadow: 0px 0px 6px -2px #a5a5a5;
    border-radius: 10px;
}
.comparison table tbody tr td {
    font-family: "Saira", sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 10px;
    color: #000;
}
.comparison .table_n tbody tr td.fs {
    background: #e5f7ff;
    font-weight: bold;
    border-radius: 10px 0px 0px 10px;
}
.comparison .table_n tbody tr td.lst {
    border-radius: 0px 10px 10px 0px;
}

.comparison .table_n tbody tr td {
    background: #fff;
    border: 0px;
}
.comparison .table_n tbody tr.spacer {
    box-shadow: none;
}
.comparison table thead tr th.frst {
    min-width: 175px;
}
.comparison .table_n tr.spacer td {
    padding: 6px 0px;
    border: 0;
    background: none;
}
.comparison .table_n tbody tr td.ons1, .comparison.comparison2.ssr .table_n tbody tr td.ons1 {
    background: #123e20;
    color: #fff;
}
.comparison .table_n tbody tr td.tws1, .comparison.comparison2.ssr .table_n tbody tr td.tws1 {
    background: #246f3c;
    color: #fff;
}
.comparison .table_n tbody tr td.fhrs1, .comparison.comparison2.ssr .table_n tbody tr td.fhrs1 {
    background: #0eb945;
    color: #fff;
}
.comparison .table_n tbody tr td.thrs1, .comparison.comparison2.ssr .table_n tbody tr td.thrs1 {
    background: #3db363;
    color: #fff;
}
.home-quote.smallQouts {
    background: #e5ffec;
}
.home5-services-section.optnwhite {
    background: #fff;
}

.home5-services-section.optnwhite .about-us-footer.mt-50{margin:0px;}

.home5-services-section.optnwhite {}

.home5-services-section.optnwhite .solution-card .solution-content h4 {
    font-size: 17px;
    line-height: 24px;
}

.home5-services-section.optnwhite .solution-card {
    min-height: 230px;
    align-content: center;
}
.our-vision-item {
}

.vision-mission {
    background: #e5ffec;
    padding: 70px 0;
}

.vision-mission .section-title h2 {}

.vision-mission .section-title p {}

.vision-mission-body p {
    font-size: 15px;
    line-height: 27px;
    font-family: 'montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
    color: #000000;
}

.home-quote .about-us-footer.mt-50 {
    margin-top: 20px;
}


.verse-church .section-title p {
    margin-top: 0;
}

.verse-church .section-title h2 {
    margin-bottom: 19px;
}

.verse-church {
    background-size: 100% 100% !important;
}

.corevalues {
    padding: 60px 0;
}

.PrivacyInner .cnts {
    background: #e5ffec;
    padding: 30px 35px;
    margin-bottom: 22px;
    border-radius: 32px;
    box-shadow: 0 4px 2px 0 rgba(7, 28, 31, 0.1);
}

.PrivacyInner .cnts h4 {
    font-family: "Saira", sans-serif;
    text-transform: unset;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 9px;
}

.PrivacyInner .cnts p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: unset;
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
    margin-bottom: 5px;
    color: #000;
}

.corevalues .about-us-footer.mt-50 {
    margin-top: 20px;
}
.heroBanner.innerbanner1 .section-title {
    padding-top: 37px;
}

.heroBanner.innerbanner1 .section-title h1 {
    font-size: 37px;
    margin-bottom: 13px;
}

.heroBanner.innerbanner1 .section-title h6 {
    color: #fff;
    font-family: "Saira", sans-serif;
    font-size: 19px;
    margin-top: 0;
    margin-bottom: 14px;
}

.heroBanner.innerbanner1 .section-title p {
    margin: 0px 0 10px;
}
.heroBanner.innerbanner1 img {
    margin-top: 40px;
}
.ourcampas {
    background: #fff;
}

.ourcampas .chapters-content .section-title h2 {
    color: #000;
}

.ourcampas .chapters-content .section-title p {
    color: #000;
}
.ourcampas .chapters figure {
    margin: 0;
    height: unset;
}

.ourcampas .chapters {
    min-height: unset;
    padding: 20px;
}

.ourcampas .chapters .cntns {
    height: 100%;
    align-content: center;
}

.ourcampas .chapters .cntns p {
    margin: 0;
    margin-bottom: 7px;
}
.home-chapters.ourcampas {
    padding-bottom: 0;
}

.ourcampas .section-row {
    margin: 0;
}
.fqwhit {
    padding: 70px 0px;
}
.faqWrp div#accordion h3, .faqWrp div#accordion1 h3, .faqWrp .defltaccordions h3 {
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-align: left;
    color: #414141;
    font-family: "Saira", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    padding: 15px 35px;
    border-radius: 35px;
    margin-bottom: 25px;
    border: 1px solid #c1c1c1;
    text-transform: unset;
}
.faqWrp div#accordion h3 i, .faqWrp div#accordion1 h3 i, .faqWrp .defltaccordions h3 i {
    float: right;
    margin-top: 3px;
    display: none;
}
.faqWrp div#accordion h3 i.fa.fa-angle-down, .faqWrp div#accordion1 h3 i.fa.fa-angle-down, .faqWrp .defltaccordions h3 i.fa.fa-angle-down {
    display: block;
}
.faqWrp div#accordion .ui-accordion-content, .faqWrp div#accordion1 .ui-accordion-content, .faqWrp .defltaccordions .ui-accordion-content {
    height: auto !important;
    background: #e5ffec;
    padding: 30px;
    border: 1px solid #c1c1c1;
    margin-bottom: 30px;
    border-radius: 0px 0px 35px 35px;
}
.faqWrp div#accordion h3.ui-state-active, .faqWrp div#accordion1 h3.ui-state-active, .faqWrp .defltaccordions h3.ui-state-active {
    background: #e5ffec;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    margin: 0px;
    border-bottom: 0px;
}
.faqWrp div#accordion h3.ui-state-active i.fa.fa-angle-up, .faqWrp div#accordion1 h3.ui-state-active i.fa.fa-angle-up, .faqWrp .defltaccordions h3.ui-state-active i.fa.fa-angle-up {
    display: block;
}
.faqWrp div#accordion h3.ui-state-active i.fa.fa-angle-down, .faqWrp div#accordion1 h3.ui-state-active i.fa.fa-angle-down, .faqWrp .defltaccordions h3.ui-state-active i.fa.fa-angle-down {
    display: none;
}

.faqWrp div#accordion .ui-accordion-content p, .faqWrp div#accordion .ui-accordion-content ul li, .faqWrp div#accordion1 .ui-accordion-content p, .faqWrp div#accordion1 .ui-accordion-content ul li, .faqWrp .defltaccordions .ui-accordion-content p, .faqWrp .defltaccordions .ui-accordion-content ul li {
    font-family: "Saira", sans-serif;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 13px;
}
.founderabout {
    padding-bottom: 0px;
}
.founderabout1 {
    padding-bottom: 30px;
}
.founderabout .about-content, .founderabout1 .about-content {
    height: 100%;
    align-content: center;
}

.optnwhite1 {
    padding-top: 0;
}
.btmEnvt.home-events .about-single-item {
    padding: 20px 30px;
}
.btmEnvt .mtitle img {
    opacity: 0.1;
}

.btmEnvt .eventlist {align-content: center;height: 100%;}
.founderabout {
    padding-top: 20px;
}
.main-menu ul ul li a:hover, .main-menu ul ul li a:focus {
    color: #fff;
    background: #000;
}

.main-menu ul ul, .main-menu ul li:hover > ul {
    overflow: hidden;
    padding: 0;
}
.comparison1 {
    background: #fff;
}

.comparison1 .table_n tbody tr td {    background: #e5ffec;}

.comparison1 .table_n tr.spacer td {background:none;}

.page-about-us1.about-us p strong {
    font-family: "Saira", sans-serif;
    font-size: 19px;
    font-weight: 700;
}

.page-about-us1.about-us .quote {
    background: #e5ffec;
    padding: 10px 20px;
    border-left: 4px solid #123e20;
    font-family: "Saira", sans-serif;
    text-align: center;
}
.about-us.page-about-us.page-about-us2 {
    background: #e5ffec;
}
.top-header {
    background: #000000;
    position: relative;
    z-index: 9;
    box-shadow: 0px 0px 8px -4px #fff;
}

.top-header-sticky .navbar {
    padding: 10px 0px;
}

.top-header-sticky .navbar-brand  img {
    width: 65px;
    top: -7px;
}

header.main-header.dfltmainheader .navbar {
    padding: 3px 0px;
}


.top-header {
    background: #000000;
    position: relative;
    z-index: 9;
    box-shadow: 0px 0px 8px -4px #fff;
}

.top-header-sticky .navbar {
    padding: 10px 0px;
}

.top-header-sticky .navbar-brand  img {
    width: 65px;
    top: -7px;
}

header.main-header.dfltmainheader .navbar {
    padding: 3px 0px;
}
.top-header {
    position: relative;
    z-index: 999;
}

.main-menu ul li a:hover {
    color: #11af44;
}

.dfltmainheader .main-menu ul li a:before {
    content: '';
    width: 7px;
    height: 7px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
}

.dfltmainheader .main-menu ul li a:hover:before {
    background: #11af44;
}

.home-quote.Innrquote1 {
    background: #0b2614;
    padding: 20px 0px;
}

.home-quote.Innrquote1 .section-title {
    margin: 0;
}

.home-quote.Innrquote1 .section-title p {
    color: #fff;
}

.home-quote.Innrquote1 .section-title strong {
    color: #fff;
}
.home-events .section-title p.qoutes {
    background: #e5ffec;
    border-left: 3px solid #000;
    padding: 10px 20px;
    font-family: "Saira", sans-serif;
    color: #000;
    font-size: 16px;
    border-radius: 20px;
    box-shadow: 0px 0px 9px -4px #000;
}

.eventlist ul li {
    font-family: "Saira", sans-serif;
    color: #000;
    font-size: 16px;
    margin-bottom: 13px;
}
.contact-us-form {
    background-color: #e5ffec;
    border-radius: 0 0 100px 0;
    padding: 50px 80px;
    position: relative;
}

.page-contact-us {
    padding: 80px 0px;
}

.contact-us-form .form-group label {
    text-align: right;
    font-family: "Saira", sans-serif;
    text-transform: unset;
    font-weight: 600;
    font-size: 15px;
    color: #000;
    display: block;
}

.contact-us-form .form-group .form-control {
    padding: 17px 25px;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    color: #000;
    box-shadow: none;
    outline: none;
    border-radius: 32px;
    font-family: "Saira", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.contact-us-form .form-group {
    margin-bottom: 20px;
}

.contact-us-form .form-group .select2-container {
    width: 100% !important;
}

.contact-us-form .form-group .select2-container .select2-selection--single {
    background-color: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 32px;
    height: 60px;
}

.contact-us-form .form-group .select2-container .select2-selection--single .select2-selection__rendered {
    font-family: "Saira", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 60px;
    padding: 0px 24px;
    color: #000;
}

.contact-us-form .form-group .select2-container .select2-selection--single span.select2-selection__arrow {
    height: 60px;
    right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #000 transparent transparent transparent;
}

.contact-us-form .form-group textarea.form-control {
    min-height: 157px;
    resize: none;
}

.btn_loader, .btn_loader1 {
    vertical-align: middle;}

.btn_loader cite, .btn_loader1 cite {
    width: 44px;
    height: 44px;
    border: 4px dotted #17512a;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}
.btn_loader cite::after, .btn_loader1 cite::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted #000000;
    border-style: solid solid dotted;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.afterSubmitloader7{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
    background: rgb(255 255 255 / 68%);
    display:none;
    z-index: 9;
    border-radius: 20px;
}

.contact-us-form form {
    position: relative;
}


.afterForm {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding-top: 60px;
    z-index: 9;
}

.afterForm i {
    width: 90px;
    height: 90px;
    background: #468226;
    line-height: 90px;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.talkAssist .innerAssist .afterForm h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 24px;
    margin-bottom: 10px !important;
    padding: 0;
}

.afterForm h4 {
    margin-bottom: 12px;
}

.afterForm h4 {
    font-family: "Saira", sans-serif;
}

.afterForm p {
    font-family: "Saira", sans-serif;
    font-size: 17px;
    color: #000;
}
.selection1 .mtitle h5 {
    margin-top: 24px;
    font-family: "Saira", sans-serif;
}

.selection1 .btmss .solution-card .solution-content p {
    font-weight: 600;
}
.home-events.map-events .google-map-iframe iframe {
    width: 100%;
    700px;
    filter: grayscale(100%);
    transition: all 0.3s 
ease-in-out;
    border-radius: 32px;
}

.home-events.map-events .section-title h2 {
    margin-bottom: 32px;
}

.home-events.map-events .section-title {
    padding-top: 35px;
}

.jamil-chaptr .chapters {
    text-align: center;
    min-height: unset;
    height: unset;
    padding: 30px 20px;
}

.jamil-chaptr .chapters figure {
    height: unset;
}

.jamil-chaptr .chapters h4 {
    font-size: 15px;
}

.home-chapters.jamil-chaptr {
    padding: 70px 0px;
}


.leftScrol .mtitle {
    text-align: left;
    align-content: center;
}

.leftScrol {
    padding: 60px 0px;
}

.leftScrol .solution-card {
    margin-bottom: 20px;
}

.leftScrol .solution-card .solution-content p {
    font-weight: 600;
}

.leftScrol .rhts {
    padding-top: 40px;
}

.home-events.innrstats  .section-title {
    padding-top: 40px;}
.home-events.innrstats  .section-title h4 {
    margin-top: 23px;
    font-family: "Saira", sans-serif;
    text-transform: unset;
}
.speakerswrp {
    padding: 70px 0;
    background: #e5ffec;
}

.home-events.innrstats {
    padding: 70px 0;
}

.speakerswrp .speakr {
    position: relative;
    background: rgb(255 255 255 / 70%);
    border-radius: 32px;
    border: none;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    -webkit-box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
    min-height: 285px;
    align-content: center;
}

.speakerswrp .speakr figure {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: table;
    position: relative;
    margin: 1.7em auto 21px;
    box-shadow: 0 0 0 5px rgb(25 25 25 / 5%);
    padding: 2px;
    -webkit-box-shadow: 0 0 0 5px rgb(25 25 25 / 5%);
    box-sizing: border-box;
    border: 1px solid #1890c9;
}

.speakerswrp .speakr figure img {
    width: 120px;
    height: 116px;
    border-radius: 50%;
    vertical-align: middle;
}

.speakerswrp .speakr h4 {
    font-family: "Saira", sans-serif;
    font-weight: 700;
    text-transform: unset;
    color: #000000;
    font-size: 19px;
}

.speakerswrp .speakr p {
    font-family: "Saira", sans-serif;
    margin: 6px 0px 0;
    font-weight: 600;
    font-size: 14px;
    color: #000;
}


.speakerswrp .mtitle h3 {
    margin-top: 40px;
    font-family: "Saira", sans-serif;
    font-size: 22px;
}

.Sponsorswrp {
    padding: 70px 0;
}

.Sponsorswrp .speakr {
    position: relative;
    background: rgb(255 255 255);
    border-radius: 32px;
    border: none;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    -webkit-box-shadow: 0 0 10px 3px rgb(0 0 0 / 10%);
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
    align-content: center;
}

.Sponsorswrp .speakr figure {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    position: relative;
    margin: 1.7em auto 21px;
    box-shadow: 0 0 0 5px rgb(25 25 25 / 5%);
    padding: 2px;
    -webkit-box-shadow: 0 0 0 5px rgb(25 25 25 / 5%);
    box-sizing: border-box;
    border: 2px solid #17512a;
    align-content: center;
    line-height: 100px;
}

.Sponsorswrp .speakr figure img {
    width: 81px;
    vertical-align: middle;
}

.Sponsorswrp .speakr h4 {
    font-family: "Saira", sans-serif;
    font-weight: 700;
    text-transform: unset;
    color: #000000;
    font-size: 19px;
}



.Sponsorswrp .mtitle h3 {
    margin-top: 40px;
    font-family: "Saira", sans-serif;
    font-size: 22px;
}
.comparison.comp1 .table_n tbody tr td.lst a {
    background: #17512a;
    color: #fff;
    padding: 6px 18px;
    display: inline-block;
    border-radius: 11px;
    font-size: 13px;
}

.thnksbanner figure {
    width: 300px;
    height: 300px;
    text-align: center;
    line-height: 300px;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: inset 0px 0px 76px 27px #123e20;
    align-content: center;
    color: rgb(255 255 255 / 52%);
    font-size: 170px;
}

.thnksbanner .algn {
    align-content: center;
}
.thankserv .mtitle ul {
    padding: 0;
    list-style: none;
    margin-top: 13px;
}

.thankserv .mtitle ul li {
    border-right: 1px solid #000;
    display: inline-block;
    padding-right: 20px;
    margin-right: 10px;
    font-family: "Saira", sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

.thankserv .mtitle ul li:last-child {
    padding: 0;
    margin: 0;
    border: 0;
}
.home5-services-section.thankbox .solution-card .icon i {
    font-size: 30px;
    color: #17512a;
}

.contact-events iframe {
    height: 100%;
}

.contact-events .google-map-iframe {
    height: 100%;
    border: 3px solid rgb(0 0 0 / 37%);
    border-radius: 32px;
    overflow: hidden;
}

.contact-events {
    background: #e5ffec; padding:70px 0;
}

.contact-events .section-title p.qoutes {
    background: #fff;
}
.mapContactbox .google-map-iframe iframe {
    width: 100%;
    filter: grayscale(100%);
    transition: all 0.3s 
ease-in-out;
    border-radius: 32px;
    margin-bottom: 50px;
}

.home5-services-section.mapContactbox .solution-card .icon i {
    font-size: 30px;
    color: #17512a;
}

.home5-services-section.mapContactbox .solution-card .solution-content h4 {
    font-size: 17px;
}
.page-contact-us.supoortPage {
    background: #e5ffec;
}
.registerRtr .form-group label {
    margin-top: 17px;
}

.registerRtr .guestOption{
    background: #cde7d4;
    padding: 35px 40px 20px;
    border-radius: 15px;
    margin-bottom: 37px;
    border: 2px solid rgb(0 0 0 / 35%);
}
.comparison.comp1.comp2 {
    background: #fff;
}

.comparison.comp1.comp2 .table_n tbody tr td.lst a {
    display: block;
    text-align: center;
}
.comp2  .table_n tbody tr td {
    background: #e5ffec;
}

.comp2  .table_n tr.spacer td {
    background: none;
}
.home-chapters.wisdombx {
    background: #fff;
}

.home-chapters.wisdombx .chapters-content .section-title h2 {
    color: #000;
}

.home-chapters.wisdombx .chapters-content .section-title p {
    color: #000; font-size:14px;
}
.sermons-item {
    overflow: hidden;
    border-radius: 0 0 80px 0;
    margin-bottom: 30px;
}
.home-chapters .sermons-image {
    position: relative;
}
.sermons-image a {
    display: block;
    cursor: none;
}
.sermons-image figure a img {
    width: 100%;
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    transition: all 0.5s 
ease-in-out;
}
.sermons-audio-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.4s 
ease-in-out;
}
.sermons-audio-icon img {
    max-width: 110px;
}
.home-chapters .sermons-image:after {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #123e20;
    width: 100%;
    height: 40px;
    -webkit-clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 95%, 85% 0);
    clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 95%, 85% 0);
    margin-bottom: -0.5px;
    background: #123e20;    background: #123e20;
    content: '';
}
.home-chapters .sermons-body {
    background: #123e20;
    position: relative;
    padding: 20px 30px;
}
.sermons-title {
    margin-bottom: 17px;
}
.home-chapters .sermons-body .sermons-title {
    position: relative;
}
.home-chapters  .sermons-body .sermons-title span {
    position: absolute;
    top: -44px;
    right: 12px;
    color: #fff;
    font-size: 16px;display:inline-block;
}
.home-chapters  .sermons-body .sermons-title span i {
    margin-left: 8px;
}
.home-chapters  .sermons-body .sermons-title .meta {
    overflow: hidden;
    text-align: left;
    margin: 0px -29px 26px;
}
.home-chapters  .sermons-body .sermons-title .meta p {
    background: #17512a;
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
.home-chapters  .sermons-body .sermons-title .meta span {
    position: static;
    background: #ed1c24;
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: normal;
    float: right;
}
.sermons-title h2 {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    font-family: "Saira", sans-serif;
    text-transform: unset;
    min-height: 55px;
}
.home-chapters  .sermons-body .sermons-list p {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 21px;
    font-family: "Saira", sans-serif;
    text-transform: unset;
}

.sermons-meta {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    border-radius: 0 0 20px 0;
    text-align: center;
    width: 50px;
    height: 50px;
    padding: 5px 10px;
}
.sermons-meta h3 {
    font-size: 20px;
    line-height: 1.1em;
    color: #fff;
}
.sermons-meta p {
    font-size: 14px;
    line-height: 1.2em;
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0;
}

.home-chapters .sermons-body .worship-btn a {
    background: rgb(0 0 0 / 22%);
    padding: 10px 40px;
    display: inline-block;
    border-radius: 35px;
    color: #fff;
    font-family: "Saira", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.bookSec {
    padding: 70px 0;
}
.bookSec .worship-item {
    padding: 23px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    background: #e5ffec;
    border-radius: 0px 0px 50px 0px;
}
.bookSec .worship-image {
    width: 50%;
}
.bookSec .worship-body {
    width: calc(100% - 50%);
    margin-left: 30px;
}
.bookSec .worship-image figure {
    position: relative;
}
.bookSec .worship-image figure span {
    position: absolute;
    top: 10px;
    right: 18px;
    z-index: 9;
    background: #fff;
    padding: 2px 10px;
    border-radius: 2px 2px 10px 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
}
.bookSec .worship-image figure span {
    padding: 4px 9px;
}
.bookSec .worship-image a {
    display: block;
    cursor: none;
    border-radius: 0px 0px 50px 0px;
}
.bookSec .worship-image img {
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 0px 0px 50px 0px;
}
.bookSec .worship-image img {
    aspect-ratio: 1 / 1;
}
.bookSec .worship-content {
    margin-bottom: 25px;
}
.bookSec .worship-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;font-family: "Saira", sans-serif;
    text-transform: unset;
}

.bookSec .worship-content p {
    font-family: "Saira", sans-serif;
    text-transform: unset;
}


.main-menu ul li a {
    color: #000;
    font-size: 13px;
}

.main-menu .nav-menu-wrapper > ul {
    background: #efefef;
    border-radius: 50px;
    padding: 0 30px;
}

.navbar-brand img {
    width: 84px;
    margin-top: 0;
}

.heroBanner {
    margin: 0;
    padding-top: 80px;
}

.heroBanner.innerbanner {
    padding-top: 70px;
}

.main-menu ul ul {
    background: #fff;
    border-radius: 7px;
    width: 300px;
    padding: 20px !important;
    box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.15);
}

.main-menu ul ul li a {
    color: #000;
    font-family: "Saira", sans-serif;
    font-weight: 600 !important;
    font-size: 15px;
    border-bottom: 1px dashed #ababab;
    padding: 10px 15px !important;
}

.main-menu ul ul li a:hover, .main-menu ul ul li a:focus {
    padding: 10px 15px !important;
    background: #123e20;
}

.top-header {
    background: #fff;
}

.top-header-sticky .navbar-brand img {
    top: 0;
    width: 91px;
    margin: 6px 0px;
}

header.main-header.dfltmainheader .main-menu .nav-menu-wrapper > ul {
    background: #fff;
    /* border-radius: unset; */
    /* padding: unset; */
}

header.main-header.dfltmainheader .main-menu .nav-menu-wrapper > ul li a {
    font-size: 13px;
    font-family: "Saira", sans-serif;
}

header.main-header.dfltmainheader {
    padding-top: 15px;
    padding-bottom: 15px;
}

.main-menu ul li a {
    font-family: "Saira", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

header.main-header.dfltmainheader .main-menu ul li {
    margin-right: 11px;
}

.otherMenu a {
    height: 48px;
    width: 48px;
    border: 0;
    background: transparent;
    border: 1px solid #999999;
    display: block;
    center;
    line-height: 55px;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 30px;
    text-align: center;
    padding-top: 14px;
}

.otherMenu a span {
    height: 2px;
    display: block;
    width: 17px;
    background: #03060e;
    margin: 0;
    padding: 0;
    line-height: 1;
    margin-bottom: 7px;
    border-radius: 10px;
    -webkit-transition: .4s;
    transition: .4s;
    margin: 0 auto 6px;
}
.otherMenu a span:nth-child(2) {
    width: 25px;
}
.otherMenu a span:last-child {
    margin-bottom: 0;
}

.otherMenu {
    margin-left: 16px;
}

.otherMenu a:hover {
    background: #123e20;
    color: #fff;
}

.otherMenu a:hover span {
    background: #fff;
    width: 25px;
}

.otherMenu a:hover span:nth-child(2) {
    width: 17px;
}

.InnerMenuwrap {
    position: fixed;
    z-index: 99999;
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 
ease 0.8s;
    transition: all 
ease 0.8s;
}
.InnerMenuwrap.show {
    opacity: 1;
    visibility: visible;
    width: 100%;
    -webkit-transition: all 
ease 0.8s;
    transition: all 
ease 0.8s;
}

.innermenu {
    background-color: #fff;
    width: 450px;
    margin-left: auto;
    padding: 70px 30px 40px;
    height: 100%;
    overflow: scroll;
    position: relative;
    right: -500px;
    cursor: auto;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
    -webkit-transition: right 
ease 1s;
    transition: right 
ease 1s;
}
.InnerMenuwrap.show .innermenu {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.innermenu a.cls {
    display: inline-block;
    border: 2px solid;
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 24px;
    padding: 0;
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 
ease 0.4s;
    transition: all 
ease 0.4s;
    text-align: center;
    color: #b7b3b3;
}

.innermenu a.cls:hover {
    color: #123e20;
    border-color: #123e20;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.innermenu h4 {
    font-family: "Saira", sans-serif;
    margin-bottom: 22px;
    font-size: 35px;
}

.innermenu ul li a {
    font-size: 14px;
    font-family: "Saira", sans-serif;
    font-weight: 600;
    border-bottom: 1px dashed #ababab;
    padding: 10px 10px;
    color: #000;
}
.innermenu ul li a:before {
    content: '';
    width: 7px;
    height: 7px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    margin-right: 9px;
    background: #11af44;
}

.innermenu ul li {
    list-style: none;
}

.innermenu ul {
    padding: 0;
}

.innermenu ul li a:hover {
    background: #000;
    color: #fff;
}
.top-bar-area {
    padding: 8px 0;
    position: relative;
    z-index: 3;
    background: #123e20 !important;
}
.address-info ul li {
    font-family: "Saira", sans-serif;
    font-weight: 500;
}
.top-bar-area ul.item-flex {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 30px;
    row-gap: 10px;
    flex-wrap: wrap;
}
.top-bar-area ul.item-flex i {
    margin-right: 6px;
}
.top-bar-area .social {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
}

.top-bar-area .text-end {
    text-align: right !important;
}

.top-bar-area .social ul.item-flex {
    justify-content: end;
    gap: 10px;
}

.top-bar-area .social ul li a {
    text-align: center;
    display: inline-flex;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.top-bar-area .social ul li a i {
    margin-right: 0;
}

.top-bar-area .address-info {
    padding-top: 8px;
}


