::-webkit-scrollbar
{
    width: 3px;
    background-color: black;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: rgba(0, 0, 0, 0.34);
}

::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 2px solid #ff5733;
}
html {
  scroll-behavior: smooth;
}
body{
    background: url('../images/general/body.png');
    color: #2c3e50;
    overflow-x: auto;
}
*{
    box-sizing: border-box;
}
a,a:hover{
    text-decoration: none;
}
p,span,div{
    cursor: default;
}
/*===HOMEPAGE===*/
.homepage{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.main-menu{
    width: 320px;
    min-height: 100vh;
    background: #333333;
    padding: 30px 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
}
.page-content{
    width: calc(100% - 320px);
    margin-left: 320px;
    width: calc(100% - 320px);
    margin-left: 320px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}
/*===MAIN MENU===*/
.logo{
    text-align: center;
    font-size: 3em;
    color: white;
    font-weight: bold;
}
.logo a{
    color: white;
}
.logo a img{
    height: 65px;
    object-fit: contain;
}
.menu-area{
    margin-top: 30px;
}
.menu-area ul{
    margin: 0;
    padding: 0;
}
.menu-area ul li{
    display: block;
    padding: 0 30px;
    border-left: 5px solid transparent;
    transition: 0.3s;
}
.menu-area ul li:hover{
    background: #EFF4F7;
    border-color: #ff5733;
}
.menu-area ul li:hover a{
    color: #000000;
}
.menu-area ul li a{
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
}
.menu-area ul li a > span{
    cursor: pointer;    
}
.child-menu{
    background: #232829;
}
.child-menu li a{
    padding-left: 20px;
}
/*===CONTENT===*/
.content-slide{
    background: white;
}
.content-slide .item{
    text-align: center;
}
.content-slide .item img{
    width: 100%;
    height: 320px!important;
    object-fit: contain;
}
.content-slide .carousel-indicators {
    bottom: 0px;
}
.content-slide .carousel-indicators li{
    border-color: #2c3e50;
    width: 30px;
    height: 5px;
}
.content-slide .carousel-indicators li.active{
    background: #ff5733;
    border-color: #ff5733;
}
/*===SEARCH===*/
.content-search{
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -300px;
    width: 300px;
    transition: 0.4s;
}
.search-field{
    position: relative;
}
.search-field input{
    height: 40px;
    border-radius: 0;
    border-color: #333333;
}
.search-btn{
    position: absolute;
    top: 0;
    right: 0;
    background: #ff5733;
    color: white;
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.search-toogle-btn{
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #ff5733;
    color: white;
    position: absolute;
    top: 0;
    left: -40px;
    cursor: pointer;
}
.section-title{
    position: relative;
    margin: 30px 0;
    border-bottom: 2px solid #333333;
}
.section-title span{
    position: relative;
    display: inline-block;
    background: #333333;
    color: white;
    padding: 5px 20px;
    padding-right: 40px;
    font-size: 12px;
}
.section-title span:after{
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 27px solid #e7e6e7;
    position: absolute;
    top: 0;
    right: -25px;
}
.section-title a{
    position: absolute;
    right: 0;
    text-transform: uppercase;
    display: inline-block;
    background: #333333;
    color: white;
    padding: 5px 20px;
    padding-left: 40px;
    font-size: 12px;
}
.section-title a:after{
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 27px solid #e7e6e7;
    position: absolute;
    top: 0;
    left: -25px;
}
/*===BOOKS===*/
.content-books{
    display: flex;
    flex-wrap:wrap;
    justify-content: flex-start;
    align-items: center;
}
.books-item{
    display: flex;
    width: calc(100% / 4);
    justify-content: center;
}
.books-item-inner{
    width:300px;
    margin-bottom:50px;
    background: #F5F5F5;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);  
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content:  space-evenly;
    padding: 20px 0;
}
.books-cover{
    transform-style: preserve-3d;
    perspective: 1000px;
}
.books-cover .book{
    position: relative;
    margin:10px auto;
    width: 180px;
    height: 266px;
    box-shadow: 20px 20px 20px rgba(0,0,0,0.2);
    transform-style: preserve-3d;
    transition: 0.5s;
}
.books-cover .book img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
}
.book-side{
    position: absolute;
    height: 100%!important;
    transform-origin: left;   
    transform: rotateY(90deg);
    object-fit: contain;
    object-position: center center;
}
.book-side-small{
    width: 12px!important;
}
.book-side-middle{
    width: 22px!important;
}
.book-side-big{
    width: 30px!important;
}
.books-cover .book:hover{
    transform: rotateY(35deg);
    box-shadow: 0 20px 20px rgba(0,0,0,0.2);
}

.books-item-inner > h2{ 
    color: #5A3D3E;
    font-family: 'Arial AMU';
    text-align: center;
    height: 85px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.books-item-inner p{
    text-align: center;
    font-size:16px;
    font-family: 'GHEAGrpalatReg';
    font-family: 'Arial AMU';
    color: #5A3D3E;
    letter-spacing: 0.056px;
    padding: 0 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.books-item-inner .pom{
    font-family: 'Armomega';
    font-family: 'Arial AMU';
}
.books-item-inner > h2:after{
    content: "";
    display:block;
    width:70px;
    height:3px;
    margin:17px auto 0;
    background: #5A3D3E;
}
.for-button{
    text-align:center;
    width:280px;
}
.books-item-inner a{
    box-sizing: border-box;
    display:inline-block;
    text-decoration:none;
    width:120px;
    margin:0 5px;
    padding:8px 0;
    background: #ff5733;
    border-radius: 5px;
    color: #fff;
    font-family: 'GHEAGrpalatReg';
    font-size: 16px;
    letter-spacing: 2px;
    transition: background 0.2s ease-in-out;
}
.books-item-inner a:hover{
    background: #e25e2d;
    cursor:pointer
}
/*===REVIEWS===*/
.review-inner{
    text-align: center;
    margin: 0 20px;
    padding: 30px;
}
.review-inner img{
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: top center;
    background: white;
    border-radius: 50%;
}
.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #e25e2d;
}
.review-inner h4 a{
    color: #2c3e50;
}
.review-inner h4 a:hover{
    color: #2d88ff;
}
.review-inner p{}
/*===FAQ===*/
.content-faq{
    padding: 0 20px;
}
/*===ABOUT===*/
.content-about{
    padding: 0 20px;
}
.about-inner{
    background: white;
    padding: 40px;
    text-align: justify;
    box-shadow: 0 8px 16px 0 rgb(0 0 0 / 20%)
}
/*===CONTACT===*/
.content-contact{
    padding: 0 20px;
}
.contact-inner{
    padding: 40px;
    background: white;
    box-shadow: 0 8px 16px 0 rgb(0 0 0 / 20%);
    border-radius: 5px;
}
.dual-field{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.dual-field span{
    width: 50%;
    display: block;
}
.dual-field span:first-child{
    margin-right: 10px;
}
.dual-field span:last-child{
    margin-left: 10px;
}
.single-field{    
    margin-bottom: 20px;
}
.single-field span{
    width: 100%;
    display: block;
}
.field-border{
    position: relative;
}
.field-border label{

    position: absolute;
    top: -6px;
    left: 10px;
    font-size: 13px;
    color: #e25e2d;
    background: white;
    z-index: 2;
}
.field-border input{
    width: 100%;
    height: 40px;
}
.field-border textarea{}
.submit-btn{
    display: inline-block;
    padding: 15px 30px;
    color: white;
    background: #e25e2d;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.3s;
    border: none;
}
.contact-feedback{
    display: none!important;
    padding: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background: white;
    margin-top: 30px;
}
.contact-feedback-sides{
    width: 50%;
}
.map iframe{
    width: 100%;
    height: 300px;
    padding-right: 10px;
}
.feedback-info{    
    padding-left: 10px;
}
.feedback-info p{
    font-size: 16px;
}
.feedback-info p i{
    color: #333333;
}
.contact-social a{
    display: inline-block;
    width: 33px;
    height: 33px;
    text-align: center;
    line-height: 33px;
    box-sizing: border-box;
    color: #333333;
    background: transparent;
    border: 1px solid #333333;
    border-radius: 3px;
    transition: 0.3s;
}
.contact-social a:hover{
    color: white;
    background: #333333;
}
/*===VIDEO===*/
.content-video{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.video-side{
    padding: 20px;
    width: 50%;
}
.video-title{
    padding: 30px;
    background: white;
    min-height: 100px;
}
.video-title p{
    font-size: 20px;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.video-frame iframe{
    width: 100%!important;
    height: 450px!important;
}
/*===BIBLE BOOKS===*/
.content-bible-books{
    display: flex;
    flex-wrap:wrap;
    justify-content: flex-start;
    align-items: center;
}
.bible-books-item{
    display: flex;
    width: calc(100% / 5);
    justify-content: center;
}
.bible-books-item a{
    display: block;
    width: 100%;
    background: white;
    color: #2c3e50;
    padding: 15px;
    text-align: center;
    box-shadow: 0 8px 16px 0 rgb(0 0 0 / 20%);
    margin: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}
.bible-books-item a:hover{
    color: white;
    background: #333333;
}
/*===READBOOK===*/
.content-read{
    padding: 25px 0;
    background: white;
}
.heading-collapse{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 10px 20px;
}
.heading-arrow a{
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #2c3e50;
    border-radius: 50%;
    cursor: pointer;
    color: #2c3e50;
    background: white;
}
.heading-arrow a:hover{
    color: white;
    background: #2c3e50;
}
.heading-arrow span{
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 50%;
    cursor: default;
    color: #eee;
    background: white;
}
.heading-collapse-title span{
    cursor: pointer;
    margin-top: 25px;
    display: inline-block;
    font-size: 20px;
    font-weight: normal;
}
.heading-collapse-title span:hover{
    color: #ff5733;
}
.heading-content-info{
    background: white;
}
.heading-info-inner{
    padding: 20px;
}
.head-title{
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    font-weight: bold;
    text-transform: capitalize;
}
.head-subtitle{
    font-size: 17px;
    margin-top: 15px;
}
.head-subtitle a{
    font-family: arial unicode ms,serif; 
}
#accordionMenu a{
    font-family: arial unicode ms,serif ;
}
.head-subtitle a{
    color: inherit;
}
.head-subtitle a:hover{
    color: #e25e2d;
}
.head-subtitle a.active{
    color: #e25e2d;
}
.read-the-book{
    background: white;
    padding: 20px;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}
.read-the-book p{
    text-align: justify;
    font-size: 19px;
}
/*===PLAYER===*/
.content-player{
    background: white;
    padding: 35px 20px;
}
.player-book-title h2{
    margin: 0;
    padding-bottom: 40px;
}
/*===PAGE GALLERY===*/
.page-gallery{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 40px;
}
.page-gallery-item{
    width: 100%;
    padding: 0 10px;
    margin-bottom: 20px;
}
.page-gallery-item img{
    max-width: 100%;
}
/*===FOOTER===*/
.footer{
    background: #333333;
    color: white;
    line-height: 40px;
    text-align: center;
    margin-top: 30px;
}
.footer a{
    color: #e25e2d;
}
/*===SNIPPETS===*/
.link-to-page{
    box-sizing: border-box;
    display: inline-block;
    text-decoration: none;
    width: 120px;
    margin: 0 5px;
    padding: 8px 0;
    background: #ff5733;
    border-radius: 5px;
    color: #fff;
    font-family: 'GHEAGrpalatReg';
    font-size: 16px;
    letter-spacing: 2px;
    transition: background 0.2s ease-in-out;
    margin-top: 35px;
}
.link-to-page:hover{
    color: #fff;    
}
.menu-toogle-btn{
    display: none;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #ff5733;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 999;
}
.read-the-book h3{
    margin-bottom: 40px;
}
.soundHeader__rightRow{display:none!important}
.menu-img-hr{
    margin: 35px;
}
.menu-img{
    border-radius: 20px;
    width: calc(100% - 70px);
    margin: 0 auto;
}

/*common classes*/
.mw-1000{
    max-width: 1000px;
}
.w-100{
    width: 100%;
}
.w-90{
    width: 90%;
}

.pb-50{
    padding-bottom: 50px;
}
.cont-fl-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.rearchres{
    position: absolute;
    left: 0;

}
.rearchres div{
    width: 340px;
    min-height: 35px;
    display: flex;
    align-items: center;
    background-color: azure;
    border: 1px solid gray;
    border-top: none;
    padding-left: 5px;
    margin-left: -40px;
}
#accordion1_6,#accordion1_7,#accordion1_8,#accordion1_9,#accordion1_10,#accordion1_11{
    /* display: flex; */
    width: 100%;
    /* justify-content: center; */

 
}
#accordion1_6 .mw-1000,#accordion1_7 .mw-1000,#accordion1_8 .mw-1000,#accordion1_9 .mw-1000,#accordion1_10 .mw-1000,#accordion1_11 .mw-1000{
    margin: 0 auto;
}
.content-contact{
    display: flex;
    justify-content: center;
}
.contact-inner p{
    text-align: left;
}
/*===RESPONSIVE===*/
@media only screen and (max-width: 1920px) {
    .review-inner img{
        margin-top: 40px;
    }
}
@media only screen and (max-width: 1660px) {
    .review-inner img {
        margin-top: 15px;
    }
    .books-item {
        width: calc(100% / 3);
    }
    .review-inner img {
        margin-top: 0px;
    }
}
@media only screen and (max-width: 1440px) {}
@media only screen and (max-width: 1280px) {
    .review-inner img {
        width: 130px;
        height: 130px;
    }
    .books-item {
        width: calc(100% / 2);
    }
    .books-item:last-child{
        display: flex;
    }
    .bible-books-item {
        width: calc(100% / 4);
    }
}
@media only screen and (max-width: 1024px) {
    .review-inner {
        background-image: none;
    }    
}
@media only screen and (max-width: 600px) { 
    .panel-group .panel{
        padding: 10px 20px !important;
    }
    .content-about{
        width: 100%;
    }
    .contact-inner{
        width: 100%;
    }
}
@media only screen and (max-width: 960px) {   
    .contact-inner{
        padding: 10px !important; 
    } 
    .section-title-area{
        margin-top: 45px;
    }
    .page-content {
        width: 100%;
        margin-left: 0;
    }
    .main-menu {
        left: -320px;
    }
    .content-slide .item img {
        width: 100%;
        height: auto!important;
    }
    .menu-toogle-btn{
        display: inline-block;
    }
    .page-gallery-item {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {}
@media only screen and (max-width: 660px) {
    .books-item {
        width: 100%;
    }
    .video-side {
        padding: 20px;
        width: 100%;
    }
    .bible-books-item {
        width: calc(100% / 3);
    }
}
@media only screen and (max-width: 480px) {
    .section-title {
        border-bottom: 0;
    }
    .section-title span:after {
        top: -1px;
    }
    .section-title a:after {
        top: 1px;
    }
    .section-title a {
        top: 28px;
    }
    .bible-books-item {
        width: calc(100% / 1);
    }
    .bible-books-item a{
        margin: 10px 20px;
    }
    .dual-field {
        flex-wrap: wrap;
    }
    .dual-field span {
        width: 100%;
        margin:0!important;
        margin-bottom:10px!important;
    }
}
@media only screen and (max-width: 320px) {}
