@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

:root {
    muli-bold: 'muli-bold', sans-serif;
    oswald: 'Oswald', sans-serif;
    play-fair: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.theme-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 15px 40px;
    color: #fff;
    margin: 20px 20px 20px 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    text-transform: capitalize;
    border: 2px solid;
    text-transform: uppercase;
}

.theme-btn:hover {
    background-color: #fff;
    color: #28b16d;
    border-color: #28b16d;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 30px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    font-size: 16px;
    padding: 10px 20px;
    font-weight: 500;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.top_sec {
    display: flex;
    align-items: center;
    justify-content: end;
}

.top_sec ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

ul.social li a {
    color: #fff;
}

.topSec {
    background: #2c5b25;
    padding: 10px 0px;
}

.top_sec>a {
    color: #fff;
    margin-right: 20px;
    border-right: 1px solid #fff;
    padding-right: 10px;
}

ul.social li {
    height: 30px;
    width: 30px;
    border: 1px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_sec>a i {
    margin-left: 10px;
}


/* From uiverse.io */

.btn_1 {
    padding: 10px 30px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    background-color: #2c5b25;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    display: inline-block;
}

.btn_1:hover {
    background-color: #42a03b;
    box-shadow: 0px 15px 20px rgb(65 159 57 / 40%);
    color: #fff;
    transform: translateY(-7px);
}

.btn_1:active {
    transform: translateY(-1px);
}

.menuSec ul li a:hover {
    background: #057835;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0px 10px 16px rgb(5 120 53 / 40%);
}

.nav_btn a:first-child {
    font-size: 24px;
    display: inline-block;
    color: #2c5b25;
    position: relative;
}

.nav_btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border-left: 1px solid #000;
    padding-left: 9px;
    justify-content: space-evenly;
}

.logo a {
    position: absolute;
    top: 15px;
    z-index: 1;
}


/* Banner  */

.banner {
    background-image: url(../images/banner_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: calc(100vh - 155px);
    display: flex;
    align-items: center;
    position: relative;
}

.banner h1 {
    font-family: var(--oswald);
    font-size: 118px;
    line-height: 1;
}

.banner h2 {
    color: #fff;
    font-size: 59px;
    font-family: var(--muli-bold);
}

.banner p {
    color: #fff;
}

.banner ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner .btn_1 {
    padding: 15px 20px;
    letter-spacing: unset;
    font-size: 14px;
    text-transform: capitalize;
}

.banner ul p {
    margin: 0;
}

.banner ul h2 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.banner img {
    height: 520px;
    position: absolute;
    bottom: 0;
    border: 5px solid #fff;
    border-bottom: 0;
}
.music_player .vc_row {
    display: flex;
    align-items: center;
}

/* Banner  */


/* STTR: AFTER BANNER SEC CSS */


/* MP3 CSS  */

.show_schdule_btn {
    padding: 35px 24px;
    background-color: #2c5b25;
    color: #fff;
}

.show_schdule_btn:hover {
    color: #fff;
}

.show_schedule_wrap {
    display: flex;
    align-items: center;
}

.music_player {
    background-color: #000;
}

.song_desc h3 {
    margin: 0 0 5px 0;
    font-size: 21px;
    font-weight: 500;
    color: #fff;
}

.song_desc h6 {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.song_desc {
    padding: 14px 0 14px 120px;
}


/* MP3 CSS  */


/* Video slider  */

section.after_banner h2 {
    font-family: var(--muli-bold);
    font-weight: 600;
    color: #000;
    font-size: 50px;
    margin: 0;
}

section.after_banner h2 span {
    color: #409f39;
}

section.after_banner a {
    background: linear-gradient(45deg, #2c5b25, #409f39);
    padding: 6px 13px;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    margin-top: 14px;
}

section.after_banner {
    padding: 40px 0px;
}

section.after_banner h3 {
    font-family: var(--muli-bold);
    font-size: 21px;
    margin: 0;
}

section.after_banner p {
    font-family: var(--muli-bold);
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    color: #000;
}

.video_box {
    position: relative;
    /*width: 100%;*/
}

.video_box>img {
    width: 100%;
    border-radius: 10px;
}

.video_box .video_info {
    position: absolute;
    bottom: 13px;
    width: 85%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.video_info p,
.video_info h4 {
    color: #fff;
}

.video_info h4 {
    font-size: 17px;
    margin: 0;
}

/*.video_box:before {*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    background: linear-gradient(0deg, #2c5b25, transparent);*/
/*    border-radius: 10px;*/
/*}*/

span.label {
    position: absolute;
    top: 9px;
    width: 58%;
    right: 0;
    background: linear-gradient(45deg, #2c5b25, #409f39);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 5px 7px;
    font-size: 12px;
}

.video_info img {
    width: 51px;
    display: inline-block;
}

.video_slider .slick-slide {
    opacity: 1;
    margin: 10px;
}


/* Video slider  */


/* About */

section.about {
    padding: 80px 0px;
}

.about_image {
    position: relative;
    width: 100%;
}

.about_image:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #2c5b25;
    z-index: -1;
    transform: rotate(355deg);
}

.about_text h2 {
    font-family: var(--muli-bold);
    color: #000;
    font-weight: 600;
    font-size: 50px;
    line-height: 1;
}

.about_text P:first-child {
    font-weight: 800;
}

.about_text h5 {
    color: #2c5b25;
    font-size: 25px;
}

.about_text h2 span {
    color: #2c5b25;
}

.about_text p:nth-child(3) {
    font-weight: 600;
    color: #000;
}


/* About */


/* Prayer */

section.prayer {
    padding: 80px 0px;
}

section.prayer .row {
    background: #409f39;
}

.prayer_text h2 {
    color: #fff;
    font-size: 55px;
    font-family: var(--muli-bold);
}

.prayer_text h3 {
    color: #fff;
    font-size: 55px;
    font-family: var(--muli-bold);
    line-height: 1;
    position: relative;
}

.prayer_text h3::before {
    width: 40%;
    content: '';
    height: 3px;
    background-color: #fff;
    position: absolute;
    bottom: -10px;
}

.prayer_text h2 span {
    font-family: var(--play-fair);
    font-style: italic;
    text-transform: capitalize;
    font-weight: 900;
}

.prayer_text p {
    color: #fff;
}

.prayer_text {
    padding-left: 28px;
}


/* Prayer */


/* prayer wall  */

.prayer_wall {
    background-image: url(../images/p_wall_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0px;
}


/* prayer wall  */


/*footer*/

footer .container-fluid {
    padding: 0 5%;
}

footer {
    background: #000;
    padding: 50px 0;
}

footer h4 {
    font-family: 'Poppins';
    font-weight: 400;
    color: #fff;
    font-size: 23px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.nws-letr h6 {
    font-family: 'Poppins';
    font-weight: 400;
    color: #fff;
    font-size: 17px;
}

.subscribe {
    position: relative;
}

.subscribe input {
    width: 100%;
    border: none;
    height: 46px;
    padding: 10px;
}

.subscribe button {
    position: absolute;
    right: 0px;
    width: 18%;
    top: 0;
    background: #057835;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.nws-letr p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    margin-top: 7%;
    margin-bottom: 7%;
}

.informt ul li a {
    color: #fff;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
}

.informt ul li {
    position: relative;
}

.informt ul li {
    margin-bottom: 7%;
}

.informt ul li i {
    margin-right: 15px;
}

.stp1-img:hover {
    background: #057835;
}

.stp1-img:hover img {
    filter: brightness(0) invert(1);
}

.stp2-img:hover {
    background: #057835;
}

.stp2-img:hover img {
    filter: brightness(0) invert(1);
}

.stp3-img:hover {
    background: #057835;
}

.stp3-img:hover img {
    filter: brightness(0) invert(1);
}

.stp4-img:hover {
    background: #057835;
}

.stp4-img:hover img {
    filter: brightness(0) invert(1);
}

.folw-us ul {
    display: flex;
    gap: 20px;
}

.informt {
    margin-left: 60px;
}

.folw-us {
    margin-left: 60px;
}

.folw-us ul li {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.folw-us ul li i {
    color: #fff;
    font-size: 14px;
}

.folw-us h6 {
    margin-top: 15%;
    font-size: 25px;
    font-family: 'Poppins';
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10%;
}

.login-acnt a {
    display: block;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    color: #fff;
    margin-bottom: 3%;
}

.prodcs ul li a {
    color: #fff;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
}

.prodcs ul li i {
    margin-right: 17px;
}

.prodcs ul li {
    margin-bottom: 5%;
}

.conttct-uss p {
    font-family: 'Poppins';
    font-weight: 400;
    color: #fff;
    font-size: 14px;
    line-height: 28px;
}

.conttct-uss ul li a {
    font-size: 14px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 400;
}

.conttct-uss ul li i {
    margin-right: 21px;
}

.conttct-uss ul li {
    margin-bottom: 5%;
}

.conttct-uss ul {
    margin-top: 31px;
}

.copy-right {
    background: #057835;
}

.copy-right p {
    margin-bottom: 0;
    text-align: center;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    padding: 13px 0;
}

.benfits-slider .slick-slide {
    opacity: 1;
}


/*footer end*/


/*inner banner*/

section.banner.inner-banner {
    /*background-image: url(../images/inner-banner.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: calc(93vh - 155px);
    display: flex;
    align-items: center;
    position: relative;
}


/*inner banner*/


/*contact-us*************************/

.contact-us-pg {
    padding: 70px 0px;
}

.contact-us-pg h3 {
    text-transform: capitalize;
    color: #000000;
    font-size: 48px;
    font-family: 'Playfair Display';
    font-weight: 600;
    margin-bottom: 20px;
}

.contact_2 {
    position: relative;
}

.contact_2:before {
    height: 124%;
    width: 128%;
    right: -15px;
    z-index: -1;
    position: absolute;
    content: '';
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-us-pg p span {
    display: block;
}

.contact-us-pg p {
    font-size: 16px;
    line-height: 30px;
    font-family: 'helvatica';
    font-weight: 400;
    color: #ffffff;
}

.contact-us-pg input {
    margin-top: 20px;
    width: 100%;
    padding: 15px 35px;
    border: 1px solid #057835;
    border-radius: 3px;
    background: #f5fbf1;
}

.contact-us-pg input::placeholder {
    color: #000 !important;
}

.contact-us-pg textarea::placeholder {
    color: #000 !important;
}

.contact-us-pg textarea {
    margin-top: 20px;
    width: 100%;
    padding: 15px 35px;
    border: 1px solid #057835;
    border-radius: 3px;
    height: 200px;
    background: #f5fbf1;
    resize: none;
}

.detai-s {
    background: #231a52;
    position: relative;
    padding: 36px 15px;
}

.contact-us-pg input::placeholder {
    color: #bab9b9;
}

.contact-us-pg textarea::placeholder {
    color: #bab9b9;
}

.detai-s {
    margin-top: 20px;
    padding-bottom: 0px;
}

.detai-s i {
    color: #ffffff;
    line-height: 80px;
    font-size: 20px;
}

.detai-s a {
    color: #ffffff;
    font-size: 14px;
    line-height: 25px;
}

.socails ul {
    display: flex;
}

.socails ul li {
    padding-right: 15px;
}

.socails ul li i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 43px;
    border-radius: 41px;
    color: #fff;
    border: 1px solid #ffffff;
    background: unset;
    font-size: 20px;
    transition: 1.5s ease-in-out;
}

.socails ul li i:hover {
    transform: rotate(360deg);
    font-size: 21px;
}

.f-1 {
    background-color: #e6be8a;
}

.f-2 {
    background-color: #00adef;
}

.f-3 {
    background-color: #cc0001;
}

.f-4 {
    background-color: #2c567e;
}

.f-5 {
    background-color: #f96a02;
}

.detai-s img {
    height: 50px;
    line-height: 53px;
    margin-top: 20px;
}

.detai-s h6 {
    margin: 0;
    color: #ffffff;
}

.detai-s .row {
    display: flex;
    align-items: center;
}

.Leave-wrap {
    padding: 70px 20px;
    padding-left: 252px;
    margin-left: -192px;
    z-index: -1;
    height: 555px;
}

.carousel-inner.pag .carousel-caption {
    top: 10%;
}

.detai-s {
    background: #409f39;
    position: relative;
    padding: 90px 70px;
}

.detai-s h3 {
    color: #ffffff;
}

.Leave-wrap p {
    color: #000000;
}

.Leave-wrap button {
    font-family: 'Poppins';
    color: #fff;
    background: #057835;
    font-size: 14px;
    width: 20%;
    padding: 10px 20px;
    border-radius: 30px;
    border: unset;
    text-transform: uppercase;
    margin-top: 5%;
}

section.contact-us-pg {
    position: relative;
}


/* section.contact-us-pg:after {
content: '';
position: absolute;
background-image: url(../images/circle-yellow.png);
width: 22%;
height: 449px;
top: -218px;
background-repeat: no-repeat;
left: 0;
z-index: -1;
} */

.row.link-row {
    height: 60px;
}

.socails {
    margin-top: 17%;
}

section.contact-us-pg :is(p,
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
textarea,
a) {
    font-family: 'Poppins';
    font-weight: 400;
}


/*contact-us**************************/


/*popular series*/

.top-pop h3 {
    color: #2c5b25;
    font-size: 25px;
    font-family: var(--muli-bold);
    font-weight: 700;
}

.top-pop h4 {
    font-size: 50px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 2%;
    font-family: var(--muli-bold);
}

.top-pop {
    text-align: center;
    padding-bottom: 3%;
}

.pop-abs h6 {
    font-family: var(--muli-bold);
    font-size: 25px;
    color: #ffffff;
    width: 70%;
    line-height: 35px;
    margin-bottom: 5px;
}

.pop-img {
    position: relative;
}

.pop-abs {
    position: absolute;
    bottom: 0;
    left: 6%;
}

.pop-abs ul li span {
    font-size: 17px;
    font-family: var(--muli-bold);
    color: #ffffff;
}

.pop-abs ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-pop h4 span {
    color: #2c5b25;
}

.pop-img ul li a i {
    font-size: 20px;
    color: #ffffff;
    border: 1px solid #ffffff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
}

.row.pop-pd {
    padding-bottom: 2%;
}


/*popular series*/


/*heart beat css*/

section.heart-beat {
    padding: 80px 0px;
    background: linear-gradient(0deg, #87b89b, transparent);
}

.heart-text h6 {
    font-size: 25px;
    color: #000000;
    font-family: var(--muli-bold);
}

.heart-text h2 {
    font-size: 78px;
    color: #000000;
    line-height: 80px;
    font-family: var(--muli-bold);
}

.heart-text h5 {
    font-size: 35px;
    color: #000000;
    line-height: 39px;
    font-family: var(--muli-bold);
}

.heart-text p {
    font-size: 14px;
    font-family: 'Poppins';
    color: #000000;
    margin-bottom: 6%;
}

.heart-text h2 span {
    color: #2c5b25;
}

.heart-text h5 span {
    color: #409f39;
}

.heart-text a {
    font-family: 'Poppins';
    font-size: 15px;
    color: #ffffff;
    background: #057835;
    padding: 17px 40px;
    border-radius: 30px;
}


/*heart beat css end*/


/* Testimonials  */

section.prayer_wall h2 {
    color: #fff;
}

.testimonial p {
    color: #fff;
    width: 70%;
    margin: 0 auto;
}

.testimonial {
    padding: 30px 0px;
}

.testimonial h3 {
    color: #fff;
    margin-top: 10px;
}

.testimonial #t_img {
    display: inline-block;
    margin: 20px 0px;
}

.testimonial_imges .slick-slide {
    opacity: 1;
}

.testimonial_imges .slick-current {
    border: 4px solid #057835;
}

.testimonial_imges img {
    cursor: pointer;
}

img#t_img {
    display: inline-block;
    margin: 20px 0px;
}


/* Testimonials  */


/* News  */

section.news_sec {
    padding: 80px 0px;
    background: #e3f1e1;
}

section.news_sec .heading {
    padding: 20px 0px;
}

section.news_sec .heading h2 {
    color: #000;
    margin: 0;
}

section.news_sec .heading h2 span {
    color: #2c5b25;
}

.news_box .row {
    background: #fff;
    align-items: center;
    margin: 0px;
}

.news_image {
    height: 100%;
}

.news_image img {}

.news_info ul {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 13px;
}

.news_info ul li:first-child {
    width: 23%;
    padding-right: 10px;
    border-right: 1px solid #409f39;
}

.news_date {
    background: #409f39;
    text-align: center;
    padding: 8px;
}

.news_date * {
    color: #fff;
    margin: 0;
}

.news_info ul li h2 {
    color: #000;
    font-size: 25px;
    line-height: 1.2;
    font-family: var(--muli-bold);
    font-weight: 600;
    margin: 0;
}

.news_info {
    padding: 0px 11px;
}

.news_box2 {
    text-align: right;
}

.news_box2 ul li:first-child {
    width: unset;
    border: none;
}

.news_box2 ul li:last-child {
    width: 25%;
    padding-left: 10px;
    border-left: 1px solid #409f39;
}

.news_box.news_box3 div {
    padding: 0;
}

.news_box.news_box3 .news_info {
    padding: 70px 22px;
}


/* News  */


@media only screen and (min-width: 1366px) and (max-width: 1920px){}

@media only screen and (min-width: 1200px) and (max-width: 1365px){}

@media only screen and (min-width: 992px) and (max-width: 1199px){
    .Leave-wrap button {
    width: 30%;
    }
    
    footer h4 {
    font-size: 20px;
    }
    
    .detai-s {;
    padding: 90px 20px;
}

.conttct-uss ul li a {
    font-size: 11px;
}

section.banner.inner-banner h1 {
    font-size: 40px;
}

.logo img {
    width: 100%;
    object-fit: cover;
    height: 100px;
}

.menuSec ul li a {
    padding: 10px 7px;
}

.banner h1 {
    font-family: var(--oswald);
    font-size: 68px;
}

.banner h2 {
    font-size: 39px;
}

.show_schdule_btn {
    padding: 35px 9px;
    color: #fff;
    font-size: 11px;
}

.heart-text h2 {
    font-size: 48px;
    color: #000000;
    line-height: 1;
}

.heart-text a {
    position: relative;
    line-height: 70px;
}
	.wpb_wrapper .btn_1 {
    margin-bottom: 20px !important;
}
	section.banner.inner-banner{
		    height: 100%;
	}
	.folw-us ul {
    display: flex;
    gap: 5px;
}
	.folw-us ul li {
    width: 35px;
		height: 35px;
}
	.conttct-uss ul li i {
    margin-right: 10px;
}
    
    
    }

@media only screen and (min-width: 768px) and (max-width: 991px){
    .logo img {
    width: 100%;
    object-fit: cover;
    height: 90px;
}

.menuSec ul li a {
    font-size: 11px;
    padding: 11px 9px;
}

.nav_btn a.btn_1 {
    font-size: 14px;
}

.banner h1 {
    font-size: 68px;
}

.banner h2 {
    font-size: 39px;
}
    .song_desc h3 {
    font-size: 18px;
    line-height: 1.4;
    }
    
    .song_desc h6 {
    font-size: 11px;
    }
    
    .show_schdule_btn {
    padding: 13px 5px;
    font-size: 9px;
    width: 100%;
}

.wpb_single_image img {
    height: 500px;
    object-fit: cover;
}
    
    .heart-text h2 {
    font-size: 48px;
    line-height: 1;
    }
    
    .heart-text a {
    position: relative;
    line-height: 60px;
}

section.news_sec .heading h2 {
    font-size: 40px !important;
}
    
    .news_info ul li h2 {
        font-size: 22px !important;
    }
    
    .informt {
    margin-left: 0px;
}

.folw-us {
    margin-left: 0;
}

section.banner.inner-banner h1 {
    font-size: 30px !important;
}
    .detai-s {
    padding: 50px 20px;
}
    
    .contact-us-pg h3 {
    font-size: 36px;
    }
    
    .detai-s i {
    color: #ffffff;
    line-height: 20px !important;
    font-size: 11px;
}

.detai-s a {
    font-size: 11px !important;
}

.Leave-wrap {
    padding-left: 262px;
    margin-left: -262px;
    height: 645px;
}

.Leave-wrap button {
    width: 30%;
}
	.wpb_wrapper .btn_1 {
    margin-bottom: 20px !important;
}
	.prayer_text h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 20px 0;
}
	.prayer_text p {
    color: #fff;
    line-height: 25px;
    font-size: 12px;
}
	.vc_single_image-wrapper.vc_box_border_grey {
    overflow: hidden;
    width: 100%;
    padding: 10px;
}
	.heart-text a {
    padding: 15px 48px;
}
	section.how_it_all_began .vc_row {
    display: flex;
    align-items: flex-start !important;
}
	.news_info ul li h2 {
    margin: 10px 0;
}
	.news_info ul{
		margin: 0;
	}
	section.news_sec .col-md-4 .news_image img {
    height: 260px;
    object-fit: cover;
}
	.news_image img {
    height: 228px;
    width: 100%;
    object-fit: cover;
}
	.subscribe {
    position: relative;
    width: 90%;
}
	.nws-letr p {
    margin-top: 0;
    margin-bottom: 0;
    margin: 10px 0;
}
	footer h4 {
    margin-bottom: 10px;
}
	.informt ul li {
    margin-bottom: 10px;
}
	section.banner.inner-banner{
		    height: 100%;
	}
    
    }

@media only screen and (min-width: 520px) and (max-width: 768px){

    
.logo a {
    position: static;
}

.logo a img {
    margin-top: -60px !important;
    object-fit: contain !important;
}
    

.news_box2 {
    text-align: left;
}

.news_box2 ul li:last-child {
    padding-left: 0;
}

.news_box {
    margin-bottom: 20px !important;
}

    .logo a img {
    width: 100%;
    object-fit: cover;
    margin-top: 60px;
    height: 100px;
}
    
    .nav_btn a.btn_1 {
    font-size: 10px !important;
    padding: 5px 14px;
}

.slicknav_menu {
    display: block;
    position: relative;
    z-index: 999;
}
    .banner h1 {
    font-family: var(--oswald);
    font-size: 50px;
    }
    
    .banner h2 {
    color: #fff;
    font-size: 38px;
    line-height: 1;
    }
    
    .banner p {
    font-size: 11px;
    line-height: 20px;
}
.banner ul {
    display: block;
}

.banner .btn_1 {
    padding: 7px 14px;
    font-size: 12px !important;
        margin: 10px 0;
}

.audioplayer-time {
    width: 50px;
}

.show_schdule_btn {
    padding: 14px 10px;
    font-size: 12px;
}

section.after_banner h2 {
    font-size: 40px;
    line-height: 1;
}

section.after_banner p {
    font-family: var(--muli-bold);
    font-size: 11px;
}

.about_text {
    margin-top: 20px;
}

.about_text h2 {
    font-size: 30px;
}

.about_text p:nth-child(3) {
    font-size: 11px;
}

section.about {
    padding: 30px 0px;
}

.prayer_text h2 {
    font-size: 32px;
    line-height: 1;
}

section.vc_section.prayer .vc_row {
    display: block !important;
}   


.prayer_text {
    padding: 10px 10px;
}

.prayer_text p {
    font-size: 11px;
    line-height: 20px;
}

.wpb_single_image img {
    margin-bottom: 20px;
}

.heart-text h2 {
    font-size: 37px;
    line-height: 1;
}

.heart-text h5 {
    font-size: 22px;
    line-height: 30px;
}

.heart-text a {
    font-size: 12px;
    padding: 12px 27px;
    display: inline-block;
    margin-bottom: 8px;
}

section.prayer_wall h2 {
    color: #fff;
    font-size: 38px;
    margin: 0;
}

section.vc_section.prayer_wall p {
    color: #fff;
    font-size: 11px;
}

section.how_it_all_began .vc_row {
    display: block !important;
}

section.news_sec .heading h2 {
    font-size: 30px;
    line-height: 1.2;
}

.news_info ul li h2 {
    margin-top: 14px;
}

.news_info {
    padding: 11px 11px;
}

.news_box.news_box3 .news_info {
    padding: 10px 22px;
}

footer h4 {
    margin-bottom: 20px;
}

.folw-us {
    margin-left: 20px;
}

.conttct-uss p {
    font-size: 11px;
    margin: 0;
}

.conttct-uss ul li a {
    font-size: 11px;
}

.copy-right p {
    font-size: 12px;
}
    .informt {
    margin-left: 20px;
}

section.banner.inner-banner h1 {
    font-size: 40px !important;
    line-height: 1.4;
}


section.about_bottom_sec .vc_row {
    display: block !important;
}

h5.Oswald {
    font-size: 38px;
}

.top-pop h4 {
    font-size: 36px;
}

.detai-s {
    padding: 30px 10px;
}

.contact-us-pg h3 {
    font-size: 40px !important;
}

.detai-s i {
    font-size: 11px;
    line-height: 0px !important;
}

.detai-s a {
    color: #ffffff;
    font-size: 11px;
}

.socails ul li i {
    font-size: 11px;
    width: 20px;
    height: 20px;
}

.Leave-wrap {
    margin-left: -252px;
       height: 625px;
}

.contact-us-pg textarea::placeholder {
    font-size: 10px;
}

.contact-us-pg input::placeholder {
    font-size: 10px;
}

.Leave-wrap button {
    font-size: 12px;
    width: 50%;
    padding: 7px 20px;
}
	section.vc_section.about .vc_col-sm-6 {
    width: 100% !important;
    text-align: center;
    margin: 10px 0;
}
	.wpb_column .vc_column-inner .col-md-8 {
    width: 100%;
}
	.wpb_column .vc_column-inner .col-md-4 {
		width: 100%;
	}
	section.news_sec .col-md-4 .news_info {
    width: 50%;
}
	.news_box.news_box3 div img {
    width: 50%;
}
	section.news_sec .col-md-4 .news_info {
    min-height: 282px;
    width: 100%;
}
	.news_box.news_box3 .row>div {
    width: 50%;
}
	.news_box.news_box3 div img {
    width: 100%;
}
	.heart-text a {
    display: flex;
    width: 150px;
    height: 45px;
    justify-content: center;
    align-items: center;
}
	section.news_sec .col-md-4 .news_info {
    min-height: 282px;
    display: table-cell;
}
    
    }

@media only screen and (min-width: 300px) and (max-width: 519px){
    

.detai-s .col-sm-1 {
    width: 12%;
    float: left;
}

.detai-s .col-sm-10 {
    width: 88%;
    float: left;
    padding: 0;
}

.logo a {
    position: static;
}

.logo a img {
    margin-top: -60px !important;
    object-fit: contain !important;
}
    
.news_box2 {
    text-align: left;
}

.news_box2 ul li:last-child {
    padding-left: 0;
}

.news_box {
    margin-bottom: 20px !important;
}

    
.logo a img {
    width: 100%;
    object-fit: cover;
    margin-top: 60px;
    height: 100px;
}
    
    .nav_btn a.btn_1 {
    font-size: 10px !important;
    padding: 5px 14px;
}

.slicknav_menu {
    display: block;
    position: relative;
    z-index: 999;
}
    .banner h1 {
    font-family: var(--oswald);
    font-size: 50px;
    }
    
    .banner h2 {
    color: #fff;
    font-size: 38px;
    line-height: 1;
    }
    
    .banner p {
    font-size: 11px;
    line-height: 20px;
}
.banner ul {
    display: block;
}

.banner .btn_1 {
    padding: 7px 14px;
    font-size: 12px !important;
        margin: 10px 0;
}

.audioplayer-time {
    width: 50px;
}

.show_schdule_btn {
    padding: 14px 10px;
    font-size: 12px;
}

section.after_banner h2 {
    font-size: 40px;
    line-height: 1;
}

section.after_banner p {
    font-family: var(--muli-bold);
    font-size: 11px;
}

.about_text {
    margin-top: 20px;
}

.about_text h2 {
    font-size: 30px;
}

.about_text p:nth-child(3) {
    font-size: 11px;
}

section.about {
    padding: 30px 0px;
}

.prayer_text h2 {
    font-size: 32px;
    line-height: 1;
}

section.vc_section.prayer .vc_row {
    display: block !important;
}   


.prayer_text {
    padding: 10px 10px;
}

.prayer_text p {
    font-size: 11px;
    line-height: 20px;
}

.wpb_single_image img {
    margin-bottom: 20px;
}

.heart-text h2 {
    font-size: 37px;
    line-height: 1;
}

.heart-text h5 {
    font-size: 22px;
    line-height: 30px;
}

.heart-text a {
    font-size: 12px;
    padding: 12px 27px;
    display: inline-block;
    margin-bottom: 8px;
}

section.prayer_wall h2 {
    color: #fff;
    font-size: 38px;
    margin: 0;
}

section.vc_section.prayer_wall p {
    color: #fff;
    font-size: 11px;
}

section.how_it_all_began .vc_row {
    display: block !important;
}

section.news_sec .heading h2 {
    font-size: 30px;
    line-height: 1.2;
}

.news_info ul li h2 {
    margin-top: 14px;
}

.news_info {
    padding: 11px 11px;
}

.news_box.news_box3 .news_info {
    padding: 10px 22px;
}

footer h4 {
    margin-bottom: 20px;
}

.folw-us {
    margin-left: 20px;
}

.conttct-uss p {
    font-size: 11px;
    margin: 0;
}

.conttct-uss ul li a {
    font-size: 11px;
}

.copy-right p {
    font-size: 12px;
}
    .informt {
    margin-left: 20px;
}

section.banner.inner-banner h1 {
    font-size: 40px !important;
    line-height: 1.4;
}


section.about_bottom_sec .vc_row {
    display: block !important;
}

h5.Oswald {
    font-size: 38px;
}

.top-pop h4 {
    font-size: 36px;
}

.detai-s {
    padding: 30px 10px;
}

.contact-us-pg h3 {
    font-size: 40px !important;
}

.detai-s i {
    font-size: 11px;
    line-height: 0px !important;
}

.detai-s a {
    color: #ffffff;
    font-size: 11px;
}

.socails ul li i {
    font-size: 11px;
    width: 20px;
    height: 20px;
}

.Leave-wrap {
    margin-left: -252px;
       height: 625px;
}

.contact-us-pg textarea::placeholder {
    font-size: 10px;
}

.contact-us-pg input::placeholder {
    font-size: 10px;
}

.Leave-wrap button {
    font-size: 12px;
    width: 50%;
    padding: 7px 20px;
}
	.heart-text p{
		    margin-bottom: 15px !important;
	}
	section.banner.inner-banner{
		    height: 100%;
	}
	section.prayer {
    padding: 0;
}
	.wpb_wrapper a.show_schdule_btn {
    margin-bottom: 20px;
}
	section.banner ul li {
    color: #fff;
    margin: 10px 0;
}
	.music_player .vc_row {
    display: block;
    align-items: center;
}

}







html {
    overflow-x: hidden;
}

.news_box.news_box3 .news_info {
    padding: 24px 22px;
}

section.news_sec .col-md-4 .news_info {
    min-height: 290px;
}











