@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&family=Homemade+Apple&family=Red+Hat+Display:wght@300;400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Springs Note';
    src: url('/assets/fonts/SpringsNote-Regular.eot');
    src: url('/assets/fonts/SpringsNote-Regular.eot?#iefix') format('embedded-opentype'),
    url('/assets/fonts/SpringsNote-Regular.woff2') format('woff2'),
    url('/assets/fonts/SpringsNote-Regular.woff') format('woff'),
    url('/assets/fonts/SpringsNote-Regular.ttf') format('truetype'),
    url('/assets/fonts/SpringsNote-Regular.svg#SpringsNote-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
p.spring{
    font-family: 'Springs Note';
    font-size: 30px;
    color: #000;
    font-weight: 600;
}
/*font-family: 'Arimo', sans-serif;
font-family: 'Homemade Apple', cursive;
font-family: 'Red Hat Display', sans-serif;
*/
:root{
    --white: #fff;
    --black: #000;
    --brown: #866822;
    --orange:#e94e1b;
    --yellow: #f69e23;
    --sky:#36a9e1;
    --light-black:#323232;
    --gray:#e4e4e4;
    --dark-gray:#323232;
    --blue:#124678;
    --padd60: 60px;
    --padd80: 80px;
    --padd100: 100px;
    --radius:5px;
}
body{
    font-family: 'Arimo', sans-serif !important;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Red Hat Display', sans-serif;
}
html{
    scroll-behavior: smooth;
}
@media (min-width: 1660px) and (max-width: 1920px) {
    .container{
        max-width: 1400px;
    }
}
/*Extra*/
.btn-business{
    background-color: var(--yellow);
    color: var(--white);
    border: 2px solid var(--yellow);
    padding: 8px 35px;
    text-decoration: none !important;
    font-size: 20px;
    border-radius: 0;
    transition: all .5s ease;
    box-shadow: none !important;
    font-family: 'Arimo', sans-serif !important;
    font-weight: 600;
    border-radius: var(--radius);
}
.btn-business:hover{
    background-color: transparent;
    color: var(--yellow);
}
.btn-yellow{
    background-color: #f9b233;
    color: var(--black);
    border: 2px solid #f9b233;
    padding: 10px 35px;
    text-decoration: none !important;
    font-size: 20px;
    border-radius: 0;
    transition: all .5s ease;
    box-shadow: none !important;
    font-family: 'Arimo', sans-serif !important;
    font-weight: 700;
    border-radius: var(--radius);
}
.btn-yellow:hover{
    background-color: transparent;
    color: #f9b233;
}
.btn-three{
    font-size: 20px;
    background-color: #529842;
    color: #ffffff !important;
    border: 2px solid #ffffff;
    padding: 15px 29px;
    text-decoration: none !important;
    font-size: 20px;
    font-weight: 400;
    border-radius: 12px;
    transition: all .5s ease;
    box-shadow: none !important;
}
.btn-three:hover{
    background-color: #fff;
    color: #529842 !important;
    box-shadow: 0px 0px 10px 0px;
}
.dis-flex-start{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.dis-flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.dis-flex-end{
    display: flex;
    align-items: center;
    justify-content: end;
}
.dis-flex-bottom{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.sec-para{
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #3E3E3D;
    margin: 15px 0;
}
.hd{
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
}
.sec-heading{
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 140%;
    margin: 0 0 30px;
    color: var(--yellow);
    text-transform: uppercase;
}
.sec-heading-2 {
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 140%;
    margin: 0 0 30px;
    color: var(--yellow);
    text-transform: uppercase;
    text-shadow:
                -1px -1px 0 #000,
                1px -1px 0 #000,
                -1px  1px 0 #000,
                1px  1px 0 #000;
}

.sec-heading span{
    font-family: 'Homemade Apple', cursive;
    font-weight: 500;
    padding: 0 20px;
}
ul{
    padding: 0;
    margin: 0;
}
/*lazy*/
.lazy {
    opacity: 0;
    transition: opacity 0.35s linear;
}
.lazy[data-scroll="in"] {
    opacity: 1;
    transition-duration: 1s;
}
/*lazy*/
/*Extra*/
/*Header*/
/*Pulse*/

@keyframes pulse-effect {
    /*0% {*/
    /*    transform: scale(1.3);*/
    /*    box-shadow: 0 0 0 0 #ffba44;*/
    /*}*/
    0%   {transform: scale(1.3);}
    100% {transform: scale(1.1);}
}

.glow-text {
    animation: pulse-effect 1s infinite;
    display: inline-block;
}

/*Pulse*/
header .secondary_header .img-box img {
    max-width: 50%;
    height: auto;
}
header{
    box-shadow: 0 0 0 1px rgba(0,0,0,.06), 0 1px 2px 0 rgba(0,0,0,.1);
}
header.sticky{
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    animation-name: fadeInDown;
    animation-duration: .5s;
    animation-fill-mode: both;
    box-shadow: 0 0 0 1px rgba(0,0,0,.06), 0 1px 2px 0 rgba(0,0,0,.1);
}
header .secondary_header{padding: 10px 0 0;}
header .secondary_header .img-box{}
header .secondary_header .img-box img{
}
header .secondary_header .sec_side_icon{float: right;}
header .secondary_header .sec_side_icon li{
    display: -webkit-inline-box;
    margin: 0 0 0 15px;
}
header .secondary_header .sec_side_icon li a{
    color: #fff;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin: 0 4px;
}
header .secondary_header .sec_side_icon li a i{
    margin: 0 5px 0 0;
}
header nav{
    padding: 10px 0 !important;
    border-top: 1px solid var(--brown);
    margin: 15px 0 0;
}
header nav .navbar-brand{}
header nav .navbar-brand img{
}
header nav .navbar-nav {}
header nav .navbar-nav li{
    margin: 0 8px;
}
header nav .navbar-nav li a{
    color: var(--brown) !important;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}
header nav .navbar-nav li a.dashboard{
    background-color: var(--brown) !important;
    padding: 10px 20px !important;
    color: #fff !important;
    border-radius: 8px;
    font-size: 14px;
}
header .side_icons{
}
header .side_icons li{
    display: -webkit-inline-box;
    margin: 0 0 0 50px;
}
header .side_icons li a.btn{
    padding: 8px 20px;
    background: #571518;
    border-radius: 50px;
    line-height: 10px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}
header .side_icons li a {
    color: var(--white);
}
header .side_icons li a i{
}
.secondary_header a.warr_btn {
    color: #000;
    font-weight: 700;
    font-size: 13px;
}

.secondary_header a.warr_btn span {
    color: #f39d21;
    font-size: 15px;
}
header ul.navbar-nav.m-auto {
    align-items: center;
}

header marquee {
    background-color: #f39d21;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
}
header button.btn.btn-secondary.dropdown-toggle {
    padding: 2px 0px 0px 3px;
    font-size: 15.2px;
}
.logo img {
    width: 50%;
}
.img.img-fluid.badge {
    margin-left: 170px;
}
.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    /*position: absolute;*/
    margin-left: 470px;
}
/*Header*/
/*Banner*/
section.banners .banner_img {
    min-height: 800px;
    object-fit: cover;
}
section.banners .carousel-caption{
    text-align: left;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
span.alerty,
p.alerty{
    color: var(--yellow) !important;
}
section.banner{
    background: url(../../assets/images/banner1.png)no-repeat;
    background-size: cover !important;
    background-position: center !important;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
}
section.banner .content{
    padding: 0 0% 10% 15%;
}
section.banner .content p{
    font-size: 30px;
    font-weight: 600;
    color: #000;
    line-height: 40px;
}
section.banner .content .alerty{}
/*Banner*/
/*Footer*/
/*footer{*/
/*    text-align: center;*/
/*    padding: 30px 0 15px;*/
/*}*/
/*footer .logo{}*/
/*footer .logo img{}*/
/*footer nav{}*/
/*footer nav ul{*/
/*    list-style: none;*/
/*    margin: 40px 0 20px;*/
/*}*/
/*footer nav ul li{*/
/*    display: -webkit-inline-box;*/
/*    margin: 0 15px;*/
/*}*/
/*footer nav ul li a{*/
/*    color: var(--brown);*/
/*    font-size: 18px;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*}*/
/*footer #copyright{}*/
/*footer #copyright p{*/
/*    font-size: 18px;*/
/*    font-weight: 600;*/
/*}*/
/*Footer*/
/* Footer */
footer {
    background: url(../../assets/images/ft-bg.png)  no-repeat !important;
    background-size: cover !important;
    background-position: center;
    /*height: 567px !important;*/
    display: flex;
    justify-content: center;
    padding-top: 17.9%;
    background-color: #f9f9f9 !important;
}


.pre_footer li {
    display: inline-block;
}

.pre_footer li a {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    border-left: 2px solid;
    padding: 0px 16px 0px 16px;
    line-height: 10px !IMPORTANT;
}

.pre_footer li:nth-child(1) a {
    border: unset;
}

.pre_footer ul {
    margin: 30px 0px 35px;
}
.pre_footer ul.social_links{}
.pre_footer ul.social_links li a{}
.pre_footer ul.social_links li{}
.copyright p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.copyright {
    border-top: 1px solid #707070;
    padding-top: 30px;
}
/* Footer */

/*Banner Inn*/
.banner_inn{
    height: 500px !important;
    align-items: center !important;
}
.banner_inn #matt_slide{
    padding: 45px 215px;
    margin: 0;
    background: url(../../assets/images/cloud.png) no-repeat;
    background-position: center;
    background-size: 80% 80%;
    height: 351px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
.prayer_war #matt_slide {
    margin: 379px -105px 75px 110px;
}
.prayer_request #matt_slide {
    margin: 19px -105px 75px 110px;
}
.banner_inn #matt_slide .item{}
.banner_inn #matt_slide p{
    font-size: 19px;
    line-height: 23px;
    margin: 0;
}
.banner_inn #matt_slide p.alerty{}
.banner_inn #matt_slide ul.slick-dots{
    bottom: 120px;
    text-align: center;
    right: 15%;
    text-align: right;
}
.banner_inn #matt_slide ul.slick-dots li{
    margin: 0 1px;
}
.banner_inn #matt_slide ul.slick-dots li button{}
.banner_inn #matt_slide ul.slick-dots li button:before{
    font-size: 10px;
    top: 1px;
    left: 0;
    color: var(--brown);
    opacity: 1;
    transition: all .5s ease;
}
.banner_inn #matt_slide ul.slick-dots li.slick-active button{
    border: 2px solid var(--brown);
    border-radius: 10px;
}
.banner_inn #matt_slide ul.slick-dots li.slick-active button:before{}
/*Banner Inn*/
/*Warrior*/
section.warrior{
    padding: 60px 0;
}
section.warrior .img-child{}
section.warrior .img-child img{}
section.warrior .prayers_box{
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px #ccc;
}
section.warrior .prayers_box .box {position: relative;z-index: 1;}
section.warrior .prayers_box .box .img-box{
    position: relative;
}
section.warrior .prayers_box .box .img-box img{
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
}
section.warrior .prayers_box .box .img-box .overlay_hover{
    position: absolute;
    top: 0;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0;
    transition: all .5s ease;
}
section.warrior .prayers_box .box .img-box .overlay_hover img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
section.warrior .prayers_box .box .img-box .overlay_hover h3{
    color: var(--yellow);
    font-weight: 700;
    font-size: 24px;
    margin: 10px 0 0;
    text-shadow: 1px 1px #fff;
}
section.warrior .prayers_box .box .img-box .overlay_static{
    position: absolute;
    bottom: 0;
    text-align: center;
    right: 0;
    left: 0;
    margin: auto;
    padding: 15px 10px;
    background-color: var(--yellow);
    transition: all .3s ease;
}
section.warrior .prayers_box .box .img-box .overlay_static h3{}
section.warrior .prayers_box .box .img-box .overlay_static h3{
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}
section.warrior .prayers_box .box:hover{}
section.warrior .prayers_box .box:hover .overlay_hover,
section.warrior .prayers_box .box.hover .overlay_hover{
    opacity: 1;
}
section.warrior .prayers_box .box:hover .overlay_static,
section.warrior .prayers_box .box.hover .overlay_static{
    opacity: 0;
}
section.warrior .prayers_box .box:hover:before,
section.warrior .prayers_box .box.hover:before,
section.warrior .prayers_box .box:hover:after,
section.warrior .prayers_box .box.hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
section.warrior .prayers_box .box:before,
section.warrior .prayers_box .box:after {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    z-index: 1;
}
section.warrior .prayers_box .box:before {
    border-top: 2px solid #f39d21;
    border-bottom: 2px solid #f39d21;
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
}
section.warrior .prayers_box .box:after {
    border-right: 2px solid #f39d21;
    border-left: 2px solid #f39d21;
    -webkit-transform: scale(1,0);
    transform: scale(1,0);
}
.prayer_list{
    padding: 0px 0 15px;
    background-color: #fff;
    box-shadow: 0px 0px 0px 0px #ccc;
}
.prayer_list .nav-pills{
    background-color: #f1f1f1;
}
.prayer_list .nav-pills li{}
.prayer_list .nav-pills li a{
    padding: 15px 25px;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    border-top: 2px solid transparent;
}
.prayer_list .nav-pills li a.active{
    background-color: #fff;
    color: #000;
    border-color: var(--yellow);
}
.prayer_list .tab-content{}
.prayer_list .tab-content .lists{
    height: 650px;
    overflow-y: scroll;
    margin: 0px 20px;
}
.prayer_list .tab-content .lists .media{
    margin: 0 0 20px;
}
.prayer_list .tab-content .lists .media img{
    width: 120px;
    height: 90px;
}
.prayer_list .tab-content .lists .media .media-body{}
.prayer_list .tab-content .lists .media .media-body h5{
    font-size: 16px;
    font-weight: 700;
}
.prayer_list .tab-content .lists .media .media-body p{
    margin: 0;
    font-size: 14px;
    color: var(--yellow);
}
.prayer_list .tab-content .lists .media .media-body p span{}
/*Warrior*/
/*warrior_action*/
.warrior_action{
    padding: 40px 0;
}
.warrior_action .action_inn{
    padding: 3% 8%;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px #ccc;
}
.warrior_action .sec-heading{
    text-align: center;
}
.warrior_action form{}
.warrior_action form label,
.warrior_action form h5{
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 20px 0 0px;
}
.warrior_action form .form-control:focus{
    border-color: var(--yellow);
}
.warrior_action form .form-control{
    width: 100%;
    height: 50px;
    border: 1px solid #c5c5c5;
    box-shadow: none;
    resize: none;
}
.warrior_action form select{}
.warrior_action form button[type=submit]{
    margin: 30px 0 0;
}
.warrior_action form h5{

}
.warrior_action .prays ul{
    padding: 20px 20px;
    margin: 20px 20px;
    height: 300px;
    overflow-y: scroll;
}
.warrior_action .prays{
    border: 1px solid #c5c5c5;
    padding: 20px 20px;
    margin: 10px 0 0;
}
.warrior_action .prays ul li{
    list-style: none;
    margin: 0 0 15px;
}
.warrior_action form textarea{
    min-height: 200px;
}
.warrior_action form ul li .form-check{}
.warrior_action form ul li .form-check input{}
.warrior_action form ul li .form-check label{
    margin: 0 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
/*warrior_action*/
/*Scrollbar*/

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #f69e23 #ededed;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: #ededed;
}

*::-webkit-scrollbar-thumb {
    background-color: #f69e23;
    border-radius: 10px;
    border: 0px solid #ffffff;
}

/*Scrollbar*/


/*Sliders*/
.main-content.home{
    background-position: top;
    background-size: 100% 100%;
    background-color: #dcf7fe;
    background-image: url(../../assets/images/background-img.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
}
section.lp_slider {
    padding: 50px 0;
}
section.lp_slider .item{
    margin: 5px;
}
section.lp_slider .box a{
    color: #000;
    text-decoration: none;
}
section.lp_slider .box{
    padding: 20px 20px;
    background-color: #fff;
    margin: 10px;
    box-shadow: 0px 0px 10px 0px #0000001a;
    border-radius: 10px;
}
section.lp_slider .box h4{
    font-size: 20px;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
section.lp_slider .box p{
    font-size: 15px;
    line-height: 24px;
    margin: 15px 0 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}
section.lp_slider .box .date{
    justify-content: space-between;
}
section.lp_slider .box .date li {
    list-style: none;
    font-size: 14px;
    /* color: var(--brown); */
}
section.lp_slider .box .date li strong{
    margin: 0 5px 0 0;
}
section.lp_slider .box .date li i{
    font-size: 15px;
    opacity: .8;
}
section.lp_slider .box .response{
    margin: 10px 0 0;
}
section.lp_slider .box .response li {
    list-style: none;
    font-size: 14px;
}
section.lp_slider .box .response li i.fa-certificate{
    color: #1d9bf0;
}
section.lp_slider .box .response li strong{}
section.lp_slider .box .response li i{

}
section.lp_slider .box .response li i.fa-check{}
section.lp_slider .box .response li i.fa-times{}
section.lp_slider .slick-prev{
    background-color: #fff;
    width: 50px;
    height: 50px;
    left: -60px;
    border-radius: 30px;
    top: 35%;
    transition: all .5s ease;
}
section.lp_slider .slick-prev:hover,section.lp_slider .slick-next:hover{transform: translate(0, -50%) scale(1.1);}
section.lp_slider .slick-prev:before,
section.lp_slider .slick-next:before{color: var(--brown);font-size: 30px !important;font-weight: 600;}
section.lp_slider .slick-next:before{}
section.lp_slider .slick-next{
    background-color: #fff;
    width: 50px;
    height: 50px;
    right: -60px;
    border-radius: 30px;
    top: 35%;
    transition: all .5s ease;
}
section.lp_slider .slick-next:before{}
/*Sliders*/
/*Pro Banner*/
section.pro-banner.lazy {
    height: 400px;
    background-size: cover !important;
    background-position: center center !important;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff !important;
}

section.pro-banner:before {
    position: absolute;
    content: "";
    background: #0006;
    height: 100%;
    width: 100%;
}

section.pro-banner h2 {
    font-size: 45px;
    color: #fff;
    line-height: 56px;
    font-weight: 500;
}

section.pro-banner p {
    font-size: 20px;
    width: 93%;
    margin: 0 auto;
}

section.pro-banner a.btn.btn-primary {
    font-size: 18px;
    margin-top: 28px;
}
blockquote {
    padding: 2rem;
    padding: 3% 10% 1% 8%;
    border: 1px solid #ddd;
    font-style: italic;
    color: #000;
    background: #fafafa;
    position: relative;
}
blockquote::before {
    color: #666;
    position: absolute;
    font-size: 2rem;
    top: 10px;
    left: 20px;
    content: "\f10d";
    font-family: 'Font Awesome 5 Free';
}
/*Pro Banner*/
/*Section 5*/
section.bible_sec {
    padding: 100px 0;
    position: relative;
    margin: 0 0 0px;
}
section.bible_sec:before{
    position: absolute;
    content:"";
    background: url(../../assets/images/bible-bg.jpg)no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: .2;
}
section.bible_sec h2{
    font-size: 30px;
    font-weight: 700;
}
section.bible_sec p{}
section.bible_sec blockquote{
    padding: 0 15%;
    margin: 0 0 40px;
}
section.bible_sec a.btn{}
/*Section 5*/

/*Login*/
.login-icon-color {
    color: #866822;
}
section.login{
    padding: 100px 0;
}
section.login .login_box{
    transition: all .5s ease;
    background-color: #fff;
    box-shadow: 0px 0px 10px -1px #ccc;
    border-radius: 5px;
}
section.login nav{
}
section.login nav .nav-tabs{justify-content: center;box-shadow: 0px 10px 10px 0px #c200250d;}
section.login nav .nav-tabs a{
    width: 50%;
    padding: 30px 30px;
    border: 0;
    text-align: center;
    background-color: #fff;
    transition: all .5s ease;
    color: #f69e23;
    font-weight: 600;
    font-size: 26px;
    border-bottom: 2px solid #f69e23 !important;
}
section.login nav .nav-tabs a.active {background-color: #f69e23;color: #fff;}
section.login .tab-content {}
section.login .tab-pane {}
section.login .tab-content form{
    width: 75%;
    padding: 50px 0 80px;
    margin: auto;
}
section.login .tab-content form a.forgot{
    color: #000;
}
section.login .tab-content form input{
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    color: #000;
    font-size: 18px;
}
section.login .tab-content form select {
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    color: #000 !important;
    font-size: 18px;
    height: 80px;
}
section.login .tab-content form input:active,
section.login .tab-content form input:focus{
    box-shadow: 0 0 0 0.1rem rgb(194 0 37);
}
section.login .tab-content form button.btn{
    font-size: 18px;
}
.disclaimer_modal{
    text-align: center;
}
.disclaimer_modal .modal-header{justify-content: center;border: 0;padding: 0 0;}
.disclaimer_modal .modal-header h5{
    font-size: 24px;
    font-weight: 700;
}
.disclaimer_modal .modal-body{
    padding: 20px 20px;
}
.disclaimer_modal .modal-body p{}
.disclaimer_modal .modal-footer {
    justify-content: center;
    border: 0;
    padding: 0 0;
}
.disclaimer_modal .modal-content{
    padding: 30px 0 40px;
}
.disclaimer_modal .modal-footer button:hover:last-child{
    -webkit-animation-name: spaceboots;
    -webkit-animation-duration: 1s;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}
.disclaimer_modal .modal-footer button.bg_dark{
    background-color: #222121;
}
.modal-content label {display: flex;align-items: center;justify-content: center;margin-bottom: 10px;margin-left: 20px;}
.modal-content input[type=checkbox], .modal-content input[type=radio] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.btn.btn-primary {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    background: #f69e23;
    border: unset;
    padding: 15px 31px;
    border-radius: 16px;
}
@-webkit-keyframes spaceboots {
    0% {
        -webkit-transform: translate(2px, 1px) rotate(0deg);
    }
    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        -webkit-transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        -webkit-transform: translate(0px, 2px) rotate(0deg);
    }
    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        -webkit-transform: translate(2px, 1px) rotate(-1deg);
    }
    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        -webkit-transform: translate(2px, 2px) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
    }
}
/* Country Code */
.intl-tel-input,
.iti{
    width: 100%;
}
/*Login*/

/* Responsive */
@media screen and (max-width: 1660px) {
    section.banner .carousel-item .carousel-caption{
        padding: 0 0% 0 0 !important;

    }
    header nav .navbar-nav li a {
        font-size: 15.2px !important;
        color: #2B2B2B !important;
        font-weight: 600 !important;
        font-family: 'Montserrat';
        padding: 3px 0px 2px 0px !important
    }
    header .navbar-expand-lg .navbar-nav .dropdown-menu {
        padding: 9px 10px 10px;
        min-width: 8.1rem;
        top: 103%;
    }
    header nav .navbar-nav li {
        margin: 0px 11px 5px !important;
    }
    section.donate .container {
        max-width: 1280px !important;
    }

    .our-info .heading h2 {
        font-size: 23px;
    }

    .our-info h3 {
        font-size: 19px;
    }

    .info-start p a {
        font-size: 15px;
    }

    .info-note p {
        font-size: 14px;
    }

    .info-start {
        background: #8080800a;
        margin: 17px 0px 11px;
        padding: 27px 10px 13px 19px;
    }

    .videos iframe {
        height: 270px !important;
    }
    .our-info {
        padding: 11% 7%;
    }

    /*header:after {*/
    /*    height: 170px;*/
    /*    width: 160px;*/
    /*    background-size: 90%;*/
    /*    top: 15px;*/
    /*    right: 1.6%;*/
    /*    z-index: -1;*/
    /*}*/

    /*header:before {*/
    /*    background-size: 90%;*/
    /*    left: 3%;*/
    /*    top: 15px;*/
    /*}*/

    header:before {
        position: absolute;
        content: "";
        /*background: url(../../assets/images/animated-flag.gif) no-repeat;*/
        height: 170px;
        width: 160px;
        background-size: 100%;
        left: 0;
        top: 15px;
    }

    header:after {
        position: absolute;
        content: "";
        /*background: url(../../assets/images/animated-flag.gif) no-repeat;*/
        height: 170px;
        width: 160px;
        background-size: 100%;
        top: 15px;
        right: 0;
    }

    header button.btn.btn-secondary.dropdown-toggle {
        padding: 2px 0px 0px 3px;
        font-size: 15.2px;
    }

    section.banner h2 {
        font-size: 47px;
        line-height: 63px;
    }

    section.banner .carousel-item .carousel-caption h3 {
        font-size: 40px;
        line-height: 50px;
    }
    section.banner .carousel-item .carousel-caption p {
        font-size: 14px;
    }

    section.banner .carousel-item .carousel-caption a.btn {
        font-size: 14px;
    }
    .heading h2 {
        font-size: 41px;
        color: #292929;
        line-height: 46px;
    }

    section.posts .heading h2 {
        padding: 15px 0px 19px;
    }

    .post-box h3 {
        font-size: 23px;
        line-height: 30px;
    }

    .post-box p {
        font-size: 15px;
        line-height: 23px;
    }

    ul.comment li a {
        font-size: 15px;
        color: #292929;
        padding: 0px 8px 0px 16px;
    }

    .countries {
        background: #F7F7F7;
        padding: 55px 39px 46px;
        margin-top: 10%;
        width: 100%;
    }

    .countries h4 {
        font-size: 19px;
    }

    .countries .media-body {
        padding-left: 2px;
    }

    .left-post p {
        font-size: 15px;
        line-height: 23px;
    }

    .left-post h3 {
        font-size: 21px;
        line-height: 29px;
    }

    .left-post .media-body {
        padding-top: 1px;
        padding-left: 5px;
        padding-right: 0%;
    }

    /*section.banner.lazy {*/
    /*    height: 400px;*/
    /*    padding-bottom: 6% !important;*/
    /*}*/
    footer {
        background-position: center;
        /*height: 535px !important;*/
        display: flex;
        justify-content: center;
        padding-top: 23.9%;
        background-color: #f9f9f9 !important;
    }

    a.btn.btn-primary {
        padding: 13px 31px;
    }
}

@media(max-width: 1440px){
    section.banner .carousel-item img.banner_img{
        height: 650px;
    }
}
button#dropdownMenu2 {
    color: #866822;
    font-size: 18px;
    font-weight: 600;
}
/* Responsive */

/*Banner Slider*/
section.banner {
    position: relative;
}

section.banner .carousel-inner {
    position: relative;
}

section.banner .carousel-item {
    position: relative;
    height: 650px;
}

section.banner .carousel-item img.banner_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

section.banner .carousel-item .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: left;
    background: rgba(0, 0, 0, 0.5); /* Optional: Adds a semi-transparent background to improve text readability */
}

section.banner .carousel-item .carousel-caption img {
    max-width: 100px;
    margin-bottom: 20px;
}

section.banner .carousel-item .carousel-caption h3 {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff; /* Ensure text color contrasts with background */
}

section.banner .carousel-item .carousel-caption p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff; /* Ensure text color contrasts with background */
}

section.banner .carousel-item .carousel-caption a.btn {
    background-color: #f39d21;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 16px;
    margin: 5px;
}

section.banner .carousel-indicators {
    bottom: 20px;
}

section.banner .carousel-indicators li {
    width: 12px;
    height: 12px;
    opacity: 1;
    margin: 0 5px;
}

section.banner .carousel-indicators li.active {
    background-color: #f39d21;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section.banner .carousel-item {
        height: 450px;
    }

    section.banner .carousel-item .carousel-caption {
        padding: 10px;
    }

    section.banner .carousel-item .carousel-caption h3 {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    section.banner .carousel-item .carousel-caption p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    section.banner .carousel-item .carousel-caption img {
        max-width: 80px;
        margin-bottom: 10px;
    }

    section.banner .carousel-item .carousel-caption a.btn {
        font-size: 14px;
        padding: 8px 16px;
        border-radius: 12px;
        margin: 3px;
    }
}

@media (max-width: 576px) {
    section.banner .carousel-item {
        height: 300px;
    }

    section.banner .carousel-item .carousel-caption {
        padding: 5px;
    }

    section.banner .carousel-item .carousel-caption h3 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    section.banner .carousel-item .carousel-caption p {
        font-size: 12px;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    section.banner .carousel-item .carousel-caption img {
        max-width: 60px;
        margin-bottom: 5px;
    }

    section.banner .carousel-item .carousel-caption a.btn {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 10px;
        margin: 2px;
    }
}


/*New Image Gif Section*/
section.one_image {
    background-size: 100% 100% !important;
    background-position: top !important;
    height: 1600px;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 0 0 110px 0px;
}
button.transparent-btn {
    font-weight: 500;
    font-size: 14px;
    /*background: #f69e23;*/
    border: unset;
    padding: 2px 3px;
    border-radius: 16px;
    background: none;
    color: black;
    border: none;
}
form.transparent {
    display: contents;
}
/*New Image Gif Section*/
/*Donate Page*/
section.donate{
    padding: 100px 0;
}
section.donate form{
    display: inline-flex;
}
section.donate form .form-check{
    padding: 0;
}
section.donate form .form-check label{
    line-height: inherit;
    width: 100%;
    background-color: #fff;
    display: inline-block;
    font-size: 1rem;
    padding: 6px 18px;
    margin: 0px 0 18px;
    font-weight: 700;
    cursor: pointer;
}
section.donate form .form-check input{}

form#donationForm input[type="radio"]:checked + label {
    background-color: #f69e23 !important;
    color: #fff;
}
form#donationForm {
    width: 100%;
    box-shadow: 0px 0px 10px 10px #f6f6f6;
    border-radius: 5px;
    padding: 2% 2%;
    background-color: #ffffff85;
}
form#donationForm .form-group {
    width: 100%;
}
form#donationForm .form-group label {
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #efefef;
}
form#donationForm .form-group input {}
.amount_tab{width: 50%;padding: 0 15px;}
.info_tab{
    width: 50%;
    padding: 0 15px;
}
.info_tab .form-group{}
.amount_tab .form-group {display: table;}
form#donationForm input[type=radio] {
    position: relative;
}

form#donationForm input[type=radio] {opacity: 0;position: fixed;width: 0;}
section.donate form .hd{
    margin: 0 0 20px;
    color: #000;
    font-size: 18px;
    line-height: 22px;
    min-height: 50px;
}
section.donate form select{}
section.donate form textarea{
    min-height: 160px;
}
section.donate form .form-control{
    resize: none;
    border-radius: 5px;
    border: 1px solid #efefef;
    transition: all .5s ease;
}
.form-control{
    resize: none;
    border-radius: 5px;
    border: 1px solid #efefef;
    transition: all .5s ease;
    outline: none !important;
}
.form-control:focus, section.add_blog form label.custom-file-label:focus{
    border: 1px solid rgb(194 0 37) !important;
    outline: none !important;
    box-shadow: none;
}
.our-info {
    box-shadow: 0px 0px 10px 10px #f6f6f6;
    border-radius: 5px;
    padding: 12% 7%;
    background-color: #ffffff85;
    margin: 0px !IMPORTANT;
}
/*our-info*/
.our-info .heading h2 {
    font-size: 33px;
    color: #292929;
    font-weight: 600;
}

.info-start {
    background: #8080800a;
    margin: 17px 0px 11px;
    padding: 31px 10px 15px 20px;
    backdrop-filter: blur(2px);
}

.info-start p a {
    font-size: 18px;
    color: #f69e23;
    font-weight: 600;
}

.info-start a i {
    font-family: 'Font Awesome 5 Free';
    padding-right: 7px;
    position: relative;
    top: 1px;
}


.info-note {
    padding-top: 20px;
}

.info-note p {
    color: #f69e23;
    font-size: 16px;
}

.info-start h3 {
    font-size: 23px;
}
.our-info .heading h2 {
    font-size: 33px;
    color: #292929;
    font-weight: 600;
}

.our-info h3 {
    font-size: 23px;
}
.our-info {
    box-shadow: 0px 0px 10px 10px #f6f6f6;
    border-radius: 5px;
    padding: 12% 7%;
    background-color: #ffffff85;
    margin: 0px !IMPORTANT;
}


.our-info .heading h2 {
    font-size: 26px;
    font-weight: 600;
}

/*Donate Page*/
/*Banner*/
section.banner.lazy {
    height: 520px;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: self-end;
    padding-bottom: 6%;
}
section.banner h2 {
    padding-top: 200px;
    font-size: 57px;
    color: #fff;
    font-weight: 600;
    text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px  1px 0 #000,
            1px  1px 0 #000;
}

section.banner h3 {
    font-size: 45px;
    color: #fff;
    font-weight: 600;
    text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px  1px 0 #000,
            1px  1px 0 #000;
}
/*Banner*/
/*Newsletter*/
.main-content {
    /*background: url(../../assets/images/fullbg.jpg);*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
/*Newsletter*/
/* Add Blog */
section.add_blog {
    padding: 100px 0px;
}
section.add_blog form{
    padding: 60px 40px;
    box-shadow: 0px 0px 20px 0px #e7e7e7;
    background-color: #f9f9f9;
}
section.add_blog form .form-control{
}
section.add_blog form label{font-weight: 400;}
section.add_blog form label.custom-file-label {
    height: 50px;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    border: 1px solid #ebebeb;
    box-shadow: none !important;
}
section.add_blog form .input-group>.custom-file{
    height: 50px;
    margin: 0 0 20px;
}
section.add_blog form .custom-file-label::after{
    height: 100%;
    display: flex;
    align-items: center;
}
/* Add Blog */
/* Posts */
.heading h2 {
    font-size: 44px;
    color: #292929;
    line-height: 50px;
    font-weight: 500;
}

section.posts {
    padding: 60px 0;
}
.posts .slick-prev:before, .posts .slick-next:before {
    opacity: 1 !important;
    color: #c20025;
    font-size: 50px !important;
}

.posts .slick-prev {
    left: -50px !important;
}
.posts .slick-next{
    right: -35px !important;
}
section.posts .post-box{padding: 15px;}
section.posts .post-box img{
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0 0 10px;
    padding: 10px;
    background-color: #efefef;
}

section.posts .heading h2 {
    padding: 15px 0px 22px;
}

.post-box h3 {
    color: #292929;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    padding-top: 17px;
    min-height: 80px;
    text-transform: capitalize;
}

.post-box p {
    font-size: 16px;
    color: #292929;
    font-weight: 500;
    line-height: 24px;
}
/*Post box universal*/
section.posts .post-box{}
section.posts .post-box img{}
section.posts .post-box span{
    color: #000;
    font-weight: 600;
    font-size: 14px;
}
section.posts .post-box h3{}
section.posts .post-box p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 70px;
}
section.posts .post-box a.btn.btn-primary{}
/*Post box universal*/

ul.comment {padding: 0px 0px 7px;}

ul.comment li {
    display: inline-block;
}

ul.comment li a {
    font-size: 16px;
    color: #292929;
    font-weight: 500;
    border-left: 2px solid #4C4C4C;
    padding: 0px 9px 0px 18px;
}

ul.comment li a img {
    padding: 0px 6px 0px 0px;
}

ul.comment li:first-child a {
    border: unset;
    padding-left: 0px;
}

.btn.btn-primary {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    background: #f69e23;
    border: unset;
    padding: 15px 31px;
    border-radius: 16px;
}

/* Posts */

/*Detail Page*/
a.btn.btn-dark.ml-3{
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    background: #f69e23;
    border: unset;
    padding: 15px 31px;
    border-radius: 16px;
}
button.btn.btn-secondary {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    background: #e8f0fe;
    border: unset;
    padding: 8px 13px;
    border-radius: 16px;
}
/*Detail Page*/

/* BEATX PLAYER */
.jp-audio {
    width: 100% !important;
}

.beatx-playyer {
    position: absolute;
    bottom: -34px;
    left: 0;
    width: 100%;
    z-index: 99;
}

.beatx-playyer.fixed-player {
    position: fixed;
    bottom: 7px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 9999;
}

.beatx-playyer.fixed-player.show {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.beatx-playyer.fixed-player .jp-gui.jp-interface {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.beatx-playyer .jp-playlist {
    /*display: none;*/
}

.beatx-playyer .musicc-controls > h2 {
    display: inline-block;
    width: auto;
}

.beatx-playyer .music-cont {
    display: inline-block;
    width: auto;
}

.beatx-playyer .musicc-controls {
    width: 100%;
    position: static;
    padding: 0;
}

.beatx-playyer .jp-audio .jp-type-playlist .jp-time-holder,
.beatx-playyer .jp-volume-controls {
    position: static;
    padding: 0;
}

.beatx-playyer .jp-audio .jp-type-playlist .jp-progress {
    width: 100%;
    margin: 0;
}

.beatx-playyer .jp-audio .jp-interface,
.beatx-playyer .jp-audio-stream .jp-interface {
    height: auto;
}

.beatx-playyer .jp-gui.jp-interface {
    background-color: #fff;
    padding: 22px 45px 21px;
    -webkit-box-shadow: 0 0 54px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 0 54px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 0 54px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 0 54px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 54px rgba(0, 0, 0, 0.10);
}

.beatx-playyer .jp-audio,
.beatx-playyer .jp-audio-stream,
.beatx-playyer .jp-video {
    background: transparent;
}

.beatx-playyer .jp-title {
    color: #333333;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    padding-left: 30px;
}

.beatx-playyer .jp-title:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    opacity: 0.31;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -6px;
    animation: zoominoutsinglefeatured 1s infinite;
}

@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1.2);
    }
    100% {
        transform: scale(1, 1);
    }
}

.beatx-playyer .jp-title:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    width: 6px;
    height: 6px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin-top: 2px;
}

.beatx-playyer .jp-audio .jp-play {
    background: #f69e23;
    width: 110px;
    height: 110px;
    line-height: 118px;
    display: inline-block;
}

.beatx-playyer .jp-play i {
    font-size: 30px;
    color: #fff;
}

.beatx-playyer .jp-previous,
.beatx-playyer .jp-next {
    width: 44px;
    height: 44px;
    line-height: 40px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
    display: inline-block;
}

.beatx-playyer .jp-previous i:before,
.beatx-playyer .jp-next i:before {
    color: #000000;
    font-size: 15px;
}

.beatx-playyer .jp-previous {
    position: relative;
    left: 5px;
    z-index: 999;
}

.beatx-playyer .jp-next {
    position: relative;
    left: -12px;
    z-index: 999;
}

.beatx-playyer .jp-audio .jp-controls {
    margin: -37px 0;
    position: relative;
    left: 15px;
}

.beatx-playyer.fixed-player .jp-audio .jp-controls {
    left: -25px;
}

.beatx-playyer .jp-audio .jp-type-playlist .jp-progress {
    width: 168px;
    height: 8px;
    background-color: #f1f1f1;
    display: inline-block;
}

.beatx-playyer .jp-volume-controls {
    display: inline-block;
}

.beatx-playyer .jp-time-holder {
    display: inline-block;
}

.beatx-playyer .jp-audio .jp-type-playlist .jp-time-holder {
    height: 15px;
    margin-left: 17px;
}

.beatx-playyer .jp-current-time,
.beatx-playyer .jp-duration {
    color: #333;
    font-size: 12px;
    font-weight: 500;
}

.beatx-playyer .jp-audio .jp-type-playlist .jp-toggles {
    display: inline-block;
    position: static;
    width: auto;
    position: relative;
    top: 4px;
    left: 0;
}

.beatx-playyer .jp-toggles button {
    text-indent: inherit;
    background: inherit;
    font-size: 12px;
    color: #555555;
    margin: 0;
    width: auto;
    margin-left: 15px;
}

.beatx-playyer .jp-volume-controls button {
    color: #333;
    line-height: initial;
    text-align: center;
    width: 100%;
}

.beatx-playyer .jp-volume-controls:hover .jp-volume-bar {
    opacity: 1;
    visibility: visible;
}

.beatx-playyer .jp-volume-bar {
    margin-right: 10px;
    margin-left: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -15px;
    opacity: 0;
    visibility: hidden;
}

.beatx-playyer .jp-volume-controls {
    position: relative;
    width: 55px;
    height: 55px;
    background: #fafafa;
    text-align: center;
    line-height: 55px;
    top: 0;
    left: 10px;
}

.beatx-playyer .jp-volume-bar {
    margin-right: 10px;
    margin-left: 10px;
}

.jp-state-muted .jp-mute i:before {
    content: '\f6a9';
}

.musicc-controls .beatx-playyer .jp-gui.jp-interface {
    background: transparent;
    -webkit-box-shadow: inherit;
    -moz-box-shadow: inherit;
    -ms-box-shadow: inherit;
    -o-box-shadow: inherit;
    box-shadow: inherit;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.musicc-controls .beatx-playyer {
    position: static;
    padding: 0;
}

.musicc-controls .beatx-playyer .jp-title {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
}

.musicc-controls .beatx-playyer .jp-audio .jp-controls {
    left: 0;
    margin: 0;
}

.jp-gui.jp-interface.play-list-style {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.11);
    -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.11);
    -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.11);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.11);
}

.musicc-controls .beatx-playyer .musicc-controls {
    top: 0;
}
/* BEATX PLAYER */
/*New*/

.btn-default {
    display: inline-block;
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    height: 58px;
    line-height: 58px;
    padding: 0px 40px;
    font-weight: 700;
    transition: all .5s ease;
}

.btn-default i {
    color: #000;
    margin-right: 7px;
    transition: all .5s ease;
}

.btn-default:hover {
    color: #fff !important;
    background-color: var(--black) !important;
    border-color: var(--black) !important;
    /* border-radius: 0px 40px 0px 40px !important; */
}

.btn-default:hover i {
    color: #fff;
}

.btn-default i:before {
    font-size: 16px;
}

.remove-music-player {
    position: absolute;
    top: -20px;
    right: 5px;
    width: 30px;
    height: 30px;
    z-index: 999;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    background: var(--green);
}

.remove-music-player.v2 {
    position: fixed;
    right: 10px;
    bottom: 41px;
    top: auto;
    opacity: 0;
    visibility: hidden;
}

.remove-music-player.show,
.remove-music-player.v2.show {
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
    padding: 10px;
}

.open-music-player.playy i:before {
    content: '\f04c';
}

.remove-music-player:hover {
    color: #fff;
}

.movies-section #trailers .item {
    margin: 0 15px !important;
    height: 320px;
}

.movies-section #trailers .item iframe {
    width: 100% !important;
}

.movies-section #trailers .item iframe .img {
    height: 280px;
    object-fit: cover;
    object-position: center;
}

/* PODCAST EPISODE */

.jp-audio {
    width: 100%;
}

.jp-audio .jp-controls {
    width: auto;
    height: auto;
    padding: 0;
    display: inline-block;
}

.jp-audio .jp-type-playlist .jp-progress {
    position: static;
    height: 6px;
}

.jp-audio .jp-interface, .jp-audio-stream .jp-interface {
    height: 200px;
}

.jp-progress {
    background: #434444;
}

.jp-audio .jp-type-playlist .jp-time-holder {
    color: #fff;
    font-size: 20px;
}

.jp-current-time {
    width: auto;
    position: relative;
}

.jp-gui.jp-interface {
    display: flex;
    flex-wrap: wrap;
    background: #171717;
}

.album-img {
    max-width: 210px;
    height: 100%;
}

.album-img > img {
    height: 100%;
    object-fit: cover;
}

.musicc-controls {
    width: calc(100% - 210px);
    position: relative;
    padding: 0 40px;
    top: 0;
}

.musicc-controls > h2 {
    color: #fff;
    font-weight: 600;
    font-size: 28px;
    text-transform: capitalize;
    margin-bottom: 15px;
    font-family: 'Barlow';
}

.jp-controls button {
    text-indent: inherit;
}

.jp-controls button {
    color: #fff;
    font-size: 20px;
}

.jp-audio .jp-type-playlist .jp-time-holder {
    position: static;
    padding-left: 92px;
    width: auto;
    position: relative;
    left: 0;
    top: -20px;
}

.jp-play,
.jp-audio .jp-play,
.jp-audio .jp-state-playing .jp-play {
    width: 55px;
    height: 55px;
    line-height: 55px;
    background-color: #fff;
    position: relative;
    z-index: 99;
}

.jp-audio.jp-state-playing .jp-play i:before {
    content: '\f04c';
}

.jp-play i {
    color: #373737;
}

.blog-music {
    margin-top: 50px;
}

.jp-previous,
.jp-next,
.jp-stop {
    display: none;
}

.jp-audio .jp-type-playlist .jp-progress {
    width: calc(100% - 92px);
    position: static;
    height: 6px;
    display: inline-block;
    margin-left: 30px;
}

.jp-volume-bar {
    background: #434444;
    position: static;
    width: 50px;
    height: 4px;
    margin-right: 10px;
}

.jp-volume-controls {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
    margin-left: auto;
    width: auto;
    left: 0;
    top: -20px;
}

.jp-mute {
    background: inherit;
    position: static;
}

.jp-volume-controls button {
    position: static;
    text-indent: inherit;
    width: auto;
    height: auto;
    display: inline-block;
    margin-right: 20px;
    color: #fff;
}

.jp-volume-controls button:last-child {
    margin-right: 0;
}

.jp-volume-max {
    background: inherit;
}

.jp-current-time:before {
    content: '/';
    position: absolute;
    top: 0;
    left: 100%;
    color: #fff;
    margin-left: 0;
}

.jp-current-time,
.jp-duration {
    color: #d0d0d0;
    font-size: 15px;
    font-weight: 500;
    font-style: inherit;
}

.jp-current-time {
    padding-right: 5px;
}

.jp-duration {
    width: auto;
    margin-left: 5px;
}

.jp-audio {
    font-family: 'Barlow';
}

.jp-audio, .jp-audio-stream, .jp-video {
    border: 0;
}

.jp-details, .jp-playlist {
    border: 0;
}

.jp-playlist {
    background: #ffffff;
    padding: 32px 40px 40px;
    border: 3px solid #f1f1f1;
    border-top: 0;
}

.jp-playlist ul {
    padding: 0;
    overflow-y: scroll !important;
    height: 200px;
}

.jp-playlist ul::-webkit-scrollbar {
    width: 10px;
    background-color: #f4f8f9;
}

.jp-playlist ul::-webkit-scrollbar-track {
}

.jp-playlist li {
    background-color: #f4f8f9;
    padding: 12px 25px;
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Barlow';
    border: 0;
    position: relative;
}

.jp-playlist-item {
    position: relative;
    padding-left: 40px;
}

.jp-playlist-item:before {
    content: '\f04b';
    position: absolute;
    top: 50%;
    left: 0px;
    color: #333;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 1px;
}

div.jp-type-playlist div.jp-playlist li.jp-playlist-current {
    list-style: inherit;
    padding-left: 0;
    padding: 12px 25px;
}

div.jp-type-playlist div.jp-playlist li.jp-playlist-current .jp-playlist-item:before {
    content: '\f04c';
}

.jp-playlist li:nth-child(even) {
    background-color: #fff;
}

.jp-playlist > h3 {
    color: #1b1a1a;
    font-size: 26px;
    font-weight: 700;
    position: relative;
    padding-bottom: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.jp-playlist > h3:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: #d1d1d1;
}

/*colorcss*/
.radio-stations table thead, .ms-title:before, .like-post:hover, .input-field button, .mss-player .mm-audio div.maudio .audio-control, .testimonial-slider .slick-dots li.slick-active button, .play-video, .points li:before, .vid_play .mss-player, .download-btn, .sidebar .widget-title:before, .sb-title:before, .progress .progress-bar, .method-optz li label input:checked ~ .checkmark, .jp-playlist ul::-webkit-scrollbar-thumb, .remove-music-player, .social-links li a:hover, .btn-default, .banner-text ul li .btn-default:hover, .rad-status, .download, div.maudio .audio-control .progress-pass, div.maudio .audio-control .volume-pass, .slick-dots li.slick-active button, .optz, .jp-play-bar, .jp-volume-bar-value, div.maudio .audio-control a.play, .jp-play, .pagination li a.active, .pagination li a:hover, .jp-title:before, .jp-title:after, .close-menu:hover, .failed, .text-info, .blog-post.v2 .like-post:hover, .listen-now {
    background: #f69e23;
}

.svs-icon, .svs-icon:before, .author-col > img, .playlist-icon, .newsletter-form .input-field button, .mss-player, .mss-player .mm-audio div.maudio .audio-control, .stz-list li > span, .play-video, .play-video > span, .vid_play, .vid_play .mss-player, .social_links li a, .comnt-img > img, .checkmark, .jp-play, .jp-audio .jp-play, .jp-audio .jp-state-playing .jp-play, .remove-music-player, .beatx-playyer .jp-title:before, .beatx-playyer .jp-controls button, .beatx-playyer .jp-volume-controls {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}
.social_links li a {
    border-radius: 0px;
}


/*New By MS*/
.jp-playlist {/* height: 340px; */margin: 0 0 20px;overflow: hidden;}

.beatx-playyer.fixed-player.show {
    box-shadow: 0px 0px 10px 0px #a2a2a2;
    width: 90%;
    left: 5%;
    border-radius: 10px;
    background-color: #fff;
}
/*New By MS*/
/*Login Eye Button*/
/*button.btn.btn-secondary.toggle-button {*/
/*    background-color: #e8f0fe;*/
/*}*/
/*Login Eye Button*/

/*Add To My Prayer Button*/
.add_to_my_prayer_button {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    background: #f69e23;
    border: unset;
    padding: 15px 31px;
    border-radius: 16px;
}
/*Add To My Prayer Button*/

/*new*/
section.one_image .slick-dots{
    bottom: 245px;
}
section.one_image .slick-dots li button{
    background-color: #ccc;
}
section.one_image .slick-dots li.slick-active button{
    background-color: #f69e23;
}
header nav ul li a.active {
    /*color: #f69e23 !important;*/
    color: #00ff00 !important;
}
/*new*/
/*Donate Link*/
header nav .navbar-nav li a.donate{
    background-color: #c20025;
    color: #Fff !important;
    padding: 5px 30px !important;
    border-radius: 10px;
    animation: crescendo .8s alternate infinite ease-in;
}

@keyframes crescendo {
    0%   {transform: scale(1);}
    100% {transform: scale(1.1);}
}
/*Donate Link*/

/* Default styles */
.one_image {
    background: url('/frontend/assets/images/blessings.gif') no-repeat;
    position: relative;
    height: 100vh; /* Ensure the section takes the full height of the viewport */
}

.bible_verses {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%; /* Adjust as needed */
}

blockquote {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px; /* Reduce spacing between paragraph and bottom button */
}

.bible_verses blockquote {
    font-size: 1.2em;
    color: #333;
    background: transparent;
    border-radius: 10px;
    text-align: center;
    border: none;
    padding: 160px;
    margin-bottom: 136px;
}

/* Carousel indicators styling */
.carousel-indicators {
    position: absolute;
    bottom: 20px; /* Adjust position of indicators */
    right: 0;
    left: 0;
    text-align: center;
}

.carousel-indicators button {
    width: 22px;
    height: 20px;
    background-color: #f39d21;
    border: 1px solid #fff;
    margin-bottom: 213px;
}

.carousel-indicators .active {
    background-color: #fff; /* Active button color */
}

/* Carousel controls styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    /*background-color: #333; !* Change color as needed *!*/
    border-radius: 50%;
}

/* Responsive styles */
@media (max-width: 767px) {
    .bible_verses {
        position: static;
        width: 100%;
        padding: 20px 10px;
    }

    .bible_verses blockquote {
        padding: 15px;
        font-size: 1em;
    }

    .carousel-indicators {
        bottom: 10px; /* Adjust for mobile devices */
    }

    section.one_image .slick-dots {
        bottom: 122px;
    }
    section.banners .banner_img{
        min-height: 1200px;
    }
}
/*carousel-indicators*/
section.one_image .carousel-indicators li {
    width: 12px;
    height: 12px;
    border: 1px solid #f69e23;
}
section.one_image .carousel-indicators li.active {background-color: #f69e23;}
/*carousel-indicators*/

