/************************************/
/***       15. CTA Box css	      ***/
/************************************/

.cta-box{
	padding: 50px 0;
}

.cta-box-content{
	position: relative;
	z-index: 1;
}

.cta-box-content .section-title{
	margin: 0;
}
.cta-box-btn{
	position: relative;
	text-align: right;
}

.cta-box-btn::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translate(-50%, 50%);
	background: url('../images/arrow-move-white-.svg') no-repeat;
	background-position: left center;
	background-size: auto;
	width: 130px;
	height: 80px;
	animation: ctaarrowmoveobjects 3s infinite linear alternate;
	z-index: 0;
}

@keyframes ctaarrowmoveobjects{
	50%{
		left: 40px;
	}
}

.sermons-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;
}

.sermons-btn-default:hover{
	background-color: transparent;
}

.sermons-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;
}

.sermons-btn-default:hover:before{
	transform: translate(-4px, -50%) rotate(45deg);
	background-size: 12px auto;
}

.sermons-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;
}

.sermons-btn-default:hover::after{
	width: 100%;
}

.sermons-btn-default.btn-highlighted{
	background-color: var(--white-color);
	color: var(--accent-color);
}

.sermons-btn-default.btn-highlighted:hover{
	background-color: transparent;
}

.sermons-btn-default.btn-highlighted:before{
	background-color: var(--accent-color);
	background-image: url('../images/arrow-white.svg');
}

.sermons-btn-default.btn-highlighted::after{
	background-color: var(--primary-color);
}
/************************************/
/***     12. Our Ministries css	  ***/
/************************************/
.our-ministries .section-row{
	margin-bottom: 60px;
}

.our-ministries .section-row .section-title{
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 0;
}

.our-ministries .section-btn{
	text-align: end;
}

.our-ministries .section-title{
	margin-bottom: 40px;
}

.our-ministries .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;
}

.our-ministries .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;
}

.our-ministries .section-title h1{
	font-size: 80px;
	font-weight: 700;
	line-height: 1.3em;
	text-transform: uppercase;
	margin-bottom: 0;
}

.our-ministries .section-title h2{
	font-size: 44px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
}

.our-ministries .section-title h1 span,
.our-ministries .section-title h2 span{
	color: var(--accent-color);
}

.our-ministries .section-title p{
	margin-top: 25px;
	margin-bottom: 0;
}

.our-ministries .section-title h2 span,
.our-ministries .section-title h3{
	color: var(--white-color);
}

.our-ministries .section-title h3::before{
	filter: brightness(0) invert(1);
}

.ministries-item{
	position: relative;
	border-radius: 0 0 100px 0;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.ministries-image a{
	position: relative;
}

.ministries-image a::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0) 22.58%, rgba(4, 4, 1, 0.49) 88.72%);
	width: 100%;
	height: 100%;
	z-index: 2;
}

.ministries-image a img{
	width: 100%;
	aspect-ratio: 1 / 1.3;
	object-fit: cover;
	border-radius: 0 0 100px 0;
	transition: all 0.5s ease-in-out;
	z-index: 0;
}

.ministries-item:hover .ministries-image a img{
    transform: scale(1.1);
}

.ministries-content{
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
}

.ministries-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.ministries-btn{
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index: 2;
}

.ministries-item:hover .ministries-btn .readmore-btn{
	background-color: var(--primary-color);
}

.ministries-item:hover .ministries-btn .readmore-btn img{
	transform: rotate(45deg);
}


/************************************/
/***     13. Our Sermons css	  ***/
/************************************/
.our-sermons .section-row{
	margin-bottom: 60px;
}

.our-sermons .section-row .section-title{
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 0;
}

.our-sermons .section-btn{
	text-align: end;
}

.our-sermons .section-title{
	margin-bottom: 40px;
}

.our-sermons .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;
}

.our-sermons .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;
}

.our-sermons .section-title h1{
	font-size: 80px;
	font-weight: 700;
	line-height: 1.3em;
	text-transform: uppercase;
	margin-bottom: 0;
}

.our-sermons .section-title h2{
	font-size: 44px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
}

.our-sermons .section-title h1 span,
.our-sermons .section-title h2 span{
	color: var(--accent-color);
}

.our-sermons .section-title p{
	margin-top: 25px;
	margin-bottom: 0;
}

.our-sermons{
	padding: 50px 0 70px;
}

.sermons-item{
	overflow: hidden;
	border-radius: 0 0 80px 0;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.sermons-image{
	position: relative;
}

.sermons-image a{
	display: block;
}

.sermons-image figure a img{
	width: 100%;
	aspect-ratio: 1 / 0.72;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.sermons-item:hover .sermons-image figure a img{
    transform: scale(1.1);
}

.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: var(--white-color);
}

.sermons-meta p{
	font-size: 14px;
	line-height: 1.2em;
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.sermons-audio-icon{
	position: absolute;
	bottom: 20px;
	right: 20px;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.sermons-item:hover .sermons-audio-icon{
	opacity: 1;
	visibility: visible;
}

.sermons-audio-icon img{
	max-width: 110px;
}

.sermons-body{
	border-radius: 0 0 80px 0;
	padding: 30px;
}

.sermons-title{
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.sermons-title h2{
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
}

.sermons-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.sermons-list ul li{
	text-transform: capitalize;
	margin-bottom: 15px;
}

.sermons-list ul li:last-child{
	margin-bottom: 0;
}

.sermons-list ul li i{
	font-size: 16px;
	color: var(--accent-color);
	margin-right: 10px;
}

.sermons-list ul li i.fa-tag{
	transform: rotate(90deg);
}

.sermons-list ul li span{
	font-weight: 500;
	color: var(--primary-color);
}
