


/*******************************
********************************
********* PUBLIC STYLES ********
********************************
*******************************/

*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 ;
    padding: 0 ;
    background-size: cover;
    background-repeat: no-repeat;
}
@font-face {
    font-family: DroidKufi;
    src: url(../fonts/DroidKufi-Regular.woff);
}
:root {
    --bg-color: #b9b9b9;
    --bg-opacity-color: #b9b9b97e;
    --main-color: #007e3f;
    --main-opacity-color: #007e3f6e;
    --main-light-color: #26a465;
    --main-dark-color: #0b894a;
    --main-bright-color: #75b644;
    --light-color:#f9f9f9;
    --dark-color:#707070;
    --grey-color:#f9f9f9;
    --section-pd: 3.7rem 0;
}
body{
    font-family:DroidKufi ;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    color: #868686;
    font-size: 14px;
    background: white;
}
button {
    cursor: pointer;
}
.form-group input:focus , .form-group textarea:focus , .form-group select:focus{
    border-color: var(--bg-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem var(--bg-opacity-color);
}
.dir-ltr{
    direction: ltr;
}
.dir-rtl{
    direction: rtl;
}
img{
    object-fit: cover;
    max-width: 100%;
}
a,a:hover{
    text-decoration: none;
    transition: .3s;
    color: inherit;
}
input,input:hover{
    outline: 0;
    outline: none;
}

/* icons social */
.facebook{
    background-color: #3a5897;
}
.facebook-h:hover, .facebook-c{
    color: #3a5897 ;
    border : 1px solid #3a5897;
}
.twitter{
    background-color: #0cf;
}
.twitter-h:hover, .twitter-c{
    color: #0cf ;
    border : 1px solid #0cf;
}
.telegram{
    background-color: #0094d6;
}
.telegram-h:hover, .telegram-c{
    color: #0094d6 ;
    border : 1px solid #0094d6;
}
.youtube{
    background-color: #f00;
}
.youtube-h:hover, .youtube-c{
    color: #f00 ;
    border : 1px solid #f00;
}
.skype{
    background-color: #00a9f0;
}
.skype-h:hover, .skype-c{
    color: #00a9f0 ;
    border : 1px solid #00a9f0;
}
.google-plus{
    background-color: #dd4d3f;
}
.google-plus-h:hover, .google-plus-c{
    color: #dd4d3f ;
    border : 1px solid #dd4d3f;
}
.instagram{
    background-color: #fb3958;
}
.instagram-h:hover, .instagram-c{
    color: #fb3958 ;
    border : 1px solid #fb3958;
}
/*******************************
********* CUSTOM STYLES ********
*******************************/
.img-thumbnail {
    padding: 0 1rem;
    border:none;
}
.section{
    padding: var(--section-pd);
}
.section-wrapper{
    position: relative;
    z-index: 20;
}
.section-heading{
    padding: 20px 0 30px;
    color:var(--dark-color);
}
.section-pretitle{
    font-size: 15px;
    color: var(--main-color);
    margin-bottom: 10px;
}
.section-title{
    font-size: 27px;
    font-weight: bold;
    color: #222;
}
.section-line{
    position: relative;
    height: 2.5px;
    width: 130px;
    background-color: var(--bg-color);
    margin-top: 30px ;
    margin-bottom: 10px ;
}
.section-line span{
    width: 10px;
    height: 10px;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
.section-desc{
    margin-top:30px ;
    color: #797979;
    font-size: 15px;
}
.section-content{
    position: relative;
    z-index: 20;
}
.bg-grey{
    background-color: var(--grey-color);
}
.bg-main{
    background-color: var(--bg-color);
}
ul.list{
    list-style: none;
    margin: 0;
}


/*socialmedia list */
.socialmedia-list{
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0 2px;
}
.socialmedia-list li{
    display: inline-block;
    padding: 0 2px;
}
.socialmedia-list li i{
    width: 30px;
    color: #fff;
    text-align: center;
    height: 30px;
    line-height: 30px;
    transition: 0.3s;
}
/*langs list */
.langs-list{
    display: flex;
    height: 30px;
    align-items: center;
}
.langs-list li{
    display: inline-block;
    color: var(--dark-color);
}
.langs-list li span{
    color: #000;
    padding-inline-start: 5px;
}
.overlay-wrapper{
    position: relative;
}
.overlay-box{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    z-index: 10;
}
.read-more{
    text-decoration: none;
    padding: 7px 15px;
    color:#9e9e9e;
    background: none ;
    border: 1px solid var(--bg-color);
    transition: all ease-in-out 0.3s;
    margin-top: 20px;
    display: block;
    width: max-content;
}
.read-more:hover{border: 1px solid var(--main-color); color:var(--main-color);}

.read-more span{
    margin-inline-start: 10px;
    transition: .3s;
}
.read-more:hover span{
    margin-inline-end: 10px;
}

.short-desc{
    color: #868686;
    font-size: 15px;
}
/*******************************
********* TOPBAR STYLES ********
*******************************/
.topbar{
    background-color: #fff;
    background: var(--bg-color);
}
.topbar-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
}
.topbar .socialmedia-list li:hover i{
    color:var(--main-color);
}
.topbar .contact-list{
    display: flex;
    padding: 0 5px;
}
.topbar .contact-list li:not(:last-child){
    padding-inline-end: 25px;
}
.topbar .contact-list li i{
    padding-inline-start: 5px;
}


@media (min-width:992px) {
    [class*="mobile-"]{
        display: none;
    }
}
@media (max-width:992px) {
    .topbar{
        display: none;
    }
    .search-wrapper{
        display: none;
    }
    .topbar{
        background-color: var(--bg-color);
    }
    .topbar-wrapper{
        display: block;
        padding: 5px 0;
    }
    .topbar .contact-list{
        padding: 0;
    }
    .socialmedia-list {
        justify-content: center;
    }
    .topbar .contact-list {
        justify-content: space-between;
      }
}
/*******************************
********* NAVBAR STYLES ********
*******************************/
.logo-wrapper{
    /*margin-top: 10px;*/
}
.logo-wrapper img{
   width: 130px;
}
.my-navbar{
    padding: 10px 0;
    background-color: #fff;
    width: 100%;
    z-index: 10000;
}
.navbar-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;
}
.nav-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.nav-list{
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0 2px;
}
.nav-list li.nav-item{
    font-size: 16px;
    text-transform: capitalize;
    position: relative;
    color:var(--bg-color);
}

.nav-list li.nav-item a.nav-item-link{
    text-decoration: none;
    position: relative;
    transition: ease-in 0.2s all;
    display: block;
    padding: 10px 20px;
    color: #444;
}

.nav-list > li.nav-item.active a.nav-item-link,
.nav-list > li.nav-item:hover a.nav-item-link{
    color:var(--main-color);
}
.nav-list > li.nav-item.active {
    border-radius: 7px;
}
.nav-list li.nav-item.has-menu .nav-item-link::after{
    content: '\f107';
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    padding-inline-start: 10px;
}
.nav-list li.nav-item.has-menu .submenu-level-1{
    padding:  15px 0;
    display: none;
    overflow: hidden;
    min-width: 250px;
    position: absolute;
    top: 100%;
    right:50%;
    transform: translateX(50%);
    background-color: var(--main-color);
    color:var(--light-color);
    z-index: 100;
}
.lap-nav .nav-list li.nav-item.has-menu:hover .submenu-level-1{
    height: auto;
    display: block;
}
.nav-list li.nav-item.has-menu .submenu-level-1 li{
    font-size: 15px;
}

.nav-list li.nav-item.has-menu .submenu-level-1 li:hover{
    background-color: var(--bg-color);
}
.nav-list li.nav-item.has-menu .submenu-level-1 a{
    color: #fff;
    display: block;
    padding: 10px 20px;
}
.search-wrapper{
    position: relative;
}
.search-form{
    position: absolute;
    top: 100%;
    left:0;
    width: 300px;
    background: #fff;
    display: flex;
    transition: 0.3s;
    transform: scaleX(0);
}
.search-wrapper .btn-search{
    transform: rotateY(-180deg);
    color:var(--main-color);
    background: none;
    border:none;
    border-radius: 0;
}
.search-wrapper .btn-search:focus{
    outline: none;
    box-shadow: none;
    color: var(--main-color) ;
}
.search-wrapper input{
    border: 1px solid var(--main-color);
    padding: 2px 5px;
    background:none;
    color: #444;
    width: 100%;
}
.search-wrapper input:focus{
    outline:none;
}
.search-wrapper .search-form .btn{
    padding: 4px 10px;
    width: 70px;
    border-radius: 0;
    border: 1px solid var(--main-bright-color);
}
.auth-link{
    background: var(--main-color);
    padding: 3px 15px;
    border-radius: 10px;
    color: #fff !important;
}
.auth-link:hover{background: #03CC6CFF;}
.mobile-btns{
    display: flex;
    justify-content: flex-end;
}
.mobile-btns button{
    background: none;
    color: var(--main-color);
    border: 1px solid #ddd;
}
.mobile-nav .nav-list{
    display: none;
    padding-top: 20px ;
}
.mobile-nav .nav-wrapper{
    display: block;
}
.mobile-nav .submenu-level-1 {
    position: static !important;
    transform: none !important;
    min-width: auto !important;
    background: none !important;
    border: 1px solid var(--main-color);
}
.mobile-nav .nav-list li.nav-item.has-menu:hover .submenu-level-1{
    display: auto !important;
}
.mobile-nav .nav-list li.nav-item.has-menu .submenu-level-1 a {
    color: var(--bg-color) ;
}
.mobile-nav .nav-list li.nav-item.has-menu:hover .submenu-level-1 a {
    color: #fff;
}
.mobile-nav .search-wrapper{
    display: none;
    margin-top: 20px;
}
.mobile-nav .search-wrapper input{
    width: 100%;
    color: #222;
    padding-inline-start: 50px;
}
.mobile-nav .search-wrapper button{
    background: none;
    position: absolute;
    top: 0;
    right: 0;

}
@media (max-width:992px) {
    .topbar .langs-list {
        display: none;
    }
    .logo-wrapper img{
        width: 100px;
     }
}
/*******************************
********* SLIDER STYLES ********
*******************************/

.home-single-slide{
    padding: var(--section-pd);
    min-height: 370px;
    display: flex;
    align-items: center;
}
.home-single-slide .overlay-box{
    background-color: var(--bg-color);
    opacity: 0.3;
}
.home-single-slide .single-slide-content{
    position: relative;
    z-index: 20;
    height: 300px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.home-slide-content{
    width: 50%;
    color: #fff;
    position: relative;
}
.home-slide-title{
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}
.home-slide-content .read-more{
    background: #fff;
    color: var(--main-color);
}
.home-slide-content .read-more:hover{
    background: var(--main-color);
    color: #fff;
}
.slider-section .owl-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3%;
}
.slider-section .owl-nav .owl-prev , .slider-section .owl-nav .owl-next {
    background:none;
    font-size: 67px;
    color:rgba(255, 255, 255, 0.603);
}
.slider-section .owl-nav .owl-prev:hover , .slider-section .owl-nav .owl-next:hover {
    background:none;
    color:#fff;
}
.home-slides-dots-wrapper{
    background-color: var(--bg-color);
    padding: 15px 0;
}
.home-slides-dots-list{
    display: flex;
    justify-content: center;
}
.home-slides-dots-list li{
    display: inline-block;
    padding: 0px 15px;
    cursor: pointer;
    color:var(--grey-color);
}
.home-slides-dots-list li.active{
    color:var(--hover-color);
}
@media (max-width:992px) {
    .home-slide-content{
        width: 100%;
        padding: 30px;
        transform: none;
    }
}

/*******************************
***** Translators STYLES *****
*******************************/
.translators-section{
    background-color: var(--main-color);
    padding-bottom: 200px;
}
.translators-section-title{
    font-size: 25px ;
    color: #fff;
    margin-bottom: 15px;
}
.translators-section-desc{
    font-size: 18px ;
    color: #dadada;
}
.translators-search-form{
    margin-top: 35px;
    width: 50%;
    position: relative;
}
.translators-search-form span{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: 10px;
}
.translators-search-form input{
    padding: 5px;
    padding-inline-start: 30px;
    width: 100%;
    border: none;
}
@media (max-width:992px) {
    .translators-search-form{
        width: 100%;
        margin-bottom: 30px;
    }
}

/*******************************
***** Main Services STYLES *****
*******************************/
.main-services-section{
    padding-top: 0;
    margin-top: -120px;
}
.main-service-item,.view-all-main-services{
    display: block;
    padding: 40px 20px;
    height: 100%;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    text-align: center;
    color: #919191;
}
.main-service-item:hover{
    border: 1px solid var(--main-color);
}
.main-service-item:hover .main-service-item-title{color: #919191;}
.main-service-item img{
    min-width: 120px;
    width: 120px;
    margin:auto;
}
.main-service-item-title{
    font-size: 18px;
    margin: 25px 0;
    color: var(--main-color);
}
.main-services-wrapper [class*="col-"]:first-child .main-service-item{
    background: #f4f4f4;
}
.view-all-main-services{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.view-all-main-services i{
    font-size: 35px;
    margin-bottom: 30px;
}
@media (max-width:992px) {

}
/*******************************
******** Versions STYLES *****
*******************************/
.versions-images-wrapper{
    position: relative;
    min-height: 550px;
}
.versions-images-wrapper img{
    width: 175px;
    position: absolute;
}
.versions-images-wrapper img:first-child{
    top:0;
    left:50px;
}
.versions-images-wrapper img:nth-child(2){
    top:50px;
    right:50px;
}
.versions-images-wrapper img:nth-child(3){
    bottom:0;
    right:10px;
    width: 175px;
}
.versions-images-wrapper img:nth-child(4){
    bottom:50px;
    left:10px;
}
.versions-images-wrapper .overlay-box{
    width:210px;
    height: max-content;
    padding: 15px 10px;
    background: var(--main-color);
    font-size: 35px;
    color: #fff;
    top:50%;
    right: 50%;
    transform: translateY(-50%) translateX(50%);
    text-align: center;
    font-weight: bold;
}
.versions-images-wrapper .overlay-box:hover{background: #00B45EFF;}
.versions-images-wrapper .overlay-box span{
    display: block;
    font-size: 60px;
}
@media (max-width:992px) {
    .versions-images-wrapper img:first-child{
        left:20px;
    }
    .versions-images-wrapper img:nth-child(2){
        right:20px;
    }
    .versions-images-wrapper img:nth-child(3){
        right:0;
    }
    .versions-images-wrapper img:nth-child(4){
        left:0;
    }
}

/*******************************
******** Books STYLES *****
*******************************/
.books-section .section-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.books-section .read-more{
    margin: 0;
}
#books-slides-nav{
    display: flex;
    gap: 5px;
}
#books-slides-nav [class*="owl-"]{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #b6b6b6;
    font-size: 18px;
    text-align: center;
}
.book-item{
    margin-bottom: 20px;
}
.book-item .book-item-content{
    padding-top: 10px;
}
.book-item-status{
    min-height: 24px;
    display: flex;
    margin-bottom: 5px;
}
.book-item .book-item-status{
    justify-content: flex-end;
}
.book-item-status span{
    background-color: #ee644a;
    color: #fff;
    padding: 0 7px;
    border-radius: 2px;
    font-size: 13px;
    display: block;
    width: max-content;
}
.book-item-title{
    font-size: 17px;
    margin-bottom: 10px;
    color: #555;
}
.book-item-title a:hover{color: var(--main-color)}
.book-item-stars i{
    color: #fbcd20;
}
.book-item-stars i:last-child{
    color: #ebebeb;
}
.book-item .book-item-price{
    text-align: center;
    padding: 10px;
}
.book-item-price .price-bf-discount{
    text-decoration: line-through;
    color: #515151;
    margin-inline-end: 10px;
}
.book-item-price .price-current{
    font-size: 21px;
    color: var(--main-bright-color);
    font-weight: bold;
}
.add-to-card{
    border: 1px solid #d5d5d5;
    color: #555;
    border-radius: 20px;
    width: 100%;
    padding: 7px 10px;
    background: none;
}
.book-item .add-to-card{
    display: block;
    text-align: center;
}
.add-to-card span{
    padding-inline-end: 10px;
}
.add-to-card:hover{border: 1px solid var(--main-color);
    color: var(--main-color);}
/*******************************
******** Top Sells STYLES *****
*******************************/
.top-sells-section {
    text-align: end;
}
.top-sells-section .section-heading{
    display: flex;
    justify-content: space-between;
}
.top-sells-section .book-item-price{
    font-size: 25px;
    text-align: center;
    margin-bottom: 0px;
}
.top-sells-section .book-item-price .price-bf-discount{
    margin-inline-end: 5px;
}
.top-sells-section .book-item-price .price-current {
    font-size: 30px;
    color: #222;
}
.top-sells-section .add-to-card{
    background: var(--main-bright-color);
    border: none;
    color: #fff;
    padding: 7px 20px;
}
.top-sells-section .overlay-box{
    top: -2rem ;
    text-align: center;
}
.top-sells-section .overlay-box img{
    max-height: calc( 100% + 4rem);
}
@media (max-width:992px) {
    .top-sells-section .section-heading {
        display: flex;
        flex-direction: column-reverse;
    }
    .top-sells-section .row{
        flex-direction: column-reverse;
    }
    .top-sells-section .overlay-box{
        position: static;
        padding-top: 20px;
    }
}

/*******************************
******** Top Offers STYLES *****
*******************************/
.top-offers-section .book-item .book-item-title{
    margin-bottom: 0;
}
.top-offers-section .book-item .book-item-price {
    padding: 0;
}
@media (max-width:992px) {
    .top-offers-section .book-item {
        margin-bottom: 20px !important;
    }
}
/*******************************
********* About STYLES ********
*******************************/
.top-offers-section{
    border-bottom: 1px solid #ddd;
}
.offers-wrapper [class*="col-"] .book-item{
    /*margin-bottom: 0;*/
}
.offers-wrapper [class*="col-"]:first-child .book-item{
    margin-bottom: 20px;
}
.offer-box{
    border: 3px solid var(--main-color);
    padding: 30px 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.offer-counters{
    display: flex;
    gap:5px;
    text-align: center;
    justify-content: flex-end;
}
.counter-item .counter-box{
    text-align: center;
    width: 60px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #ddd;
    font-size: 25px;
    color: #000;
}
/*******************************
********* Arbization STYLES ********
*******************************/

/*******************************
********* Arbization STYLES ********
*******************************/
.arbization-list li.arbization-list-item{
    display: flex;
    margin-bottom: 20px ;
}
.arbization-list li::before{
    content: '\f00c';
    font: normal normal normal 14px/1 FontAwesome;
    display: inline-block;
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--main-bright-color);
    color: #fff;
    margin-inline-end: 20px;
    font-size: 20px;
    text-align: center;
    line-height: 70px;
}
.arbization-item-title{
    color: var(--main-color);
    font-size: 22px;
    margin-bottom: 15px;
}

@media (max-width:992px) {

}
/*******************************
********* Footer STYLES ********
*******************************/
footer{
    background-color: #118f50;
    padding-bottom: 0 !important;
    color: #fff;
}
.footer-search-wrapper{
    display: flex;
}
.footer-search-wrapper .label-search{
    padding: 4px 20px;
    font-size: 19px;
    background: #26a465;
    color: #fff;
    border-radius: 5px;
    margin: 0;
    position: relative;
    z-index: 10px;
}
.footer-search-wrapper .input-search{
    padding: 4px 20px;
    font-size: 16px;
    color: var(--main-light-color);
    border: none;
    margin-inline-start: -5px;
    width: 100%;
    border-radius: 5px;
}
footer .social-wrapper{
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
}
footer .socialmedia-list {
    flex-direction: row;
}
footer .socialmedia-list i{
    color:#fff;
    border-color: #fff;
}
footer .socialmedia-list li:hover i{
    color:#222;
    border-color: #222;
}
.footer-nav-list{
    display: flex;
    justify-content: space-between;
    border-top:1px solid #999;
    padding-top: 20px;
    font-weight: bold;
}
.footer-nav-list a{
    color: #fff;
}
footer .logo-img{
    max-width: 100%;
    margin:10px 0 10px;
}

.footer-cols{
    background-color: var(--main-light-color);
    padding-bottom: 60px;
     color: #fff;
 }
 .footer-cols-wrapper{
    padding-top: 12px;
    padding-bottom: 20px;
 }
 .footer-col{
    margin-bottom: 20px;
 }
 .footer-col-title{
    font-size: 16px;
    font-weight: bold;
    padding-inline-end: 10px ;
    padding-bottom: 10px;
    margin-bottom: 15px;
    width: max-content;
 }
.footer-col-title::after{
    width: 50%;
    margin-top: 15px ;
    background: var(--main-light-color);
    height: 1.5px;
    display: block;
    content: '';
}
 .footer-col-list li{
     margin-bottom: 7px;
 }
 .footer-col-two{
     display: flex;
     flex-wrap: wrap;
 }
 .footer-col-two li{
     flex: 50%;
 }
.footer-bottom{
    background: var(--main-dark-color);
}
.copyrights{
    color:var(--light-color);
    padding:   30px 0;
    text-align: left;
}

/*****************************************
************ Book Details Page ***************
******************************************/

.actions-wrapper{
    display: flex;
    align-items: center;
    gap:10px;
    color: #222;
    margin-bottom: 20px;
}
.actions-wrapper .add-to-card{
    border-radius: 1px;
    border: 1px solid var(--main-color);
    width: 150px;
}
.count-wrapper .count-box{
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    background-color: #f2f2f2;
    margin-inline-end: 10px;
}
.suggested-books-slides .owl-nav [class*="owl-"]{
    position: absolute;
    padding: 0;
    top:50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    border-radius: 50%;
    background: #f9f9f9;
    color: #888;
    border: 1px solid #888;
}
.suggested-books-slides .owl-nav .owl-prev{
    right: -20px;
}
.suggested-books-slides .owl-nav .owl-next{
    left: -20px;
}
/*****************************************
******************************************
************ Elements Page ***************
/*****************************************
******************************************/
.page-heading{
    min-height: 300px;
}
.page-heading .overlay-box{
    background-color: var(--bg-opacity-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-heading .overlay-box .page-heading-title{
    color: #222;
    min-width: 299px;
    text-align: center;
    background: #ddd6;
    min-height: 100px;
    line-height: 100px;
}


/*****************************************
******************************************
************ Details Page ***************
/*****************************************
******************************************/
.details-section{
    min-height: 500px;
}
.single-element-page .img-box{
    width: 400px;
    float: right;
    margin-inline-end: 30px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}
.single-element-page .img-box img{
    width: 100%;
}
.single-element-page .img-box .element-title{
    text-align: center;
    padding:20px 0;
}

@media (max-width:992px) {
    .single-element-page img{
        max-width:100%;
    }
}

.custom-form{
    padding-bottom: 50px;
}
.custom-form select{
    border-radius: 5.25rem;
    line-height: 1;
    padding: 0rem 1rem;
    border-color: var(--bg-color);
    height:auto !important;
    display: inline-block;
    width: 60%;
}

.custom-form label{
    margin: 0;
    margin-right: 10px;
}
.custom-form .form-group{
    display: flex;
    align-items: center;
}
.custom-form .btn{
    border-radius: 20px;
    padding: 5px 20px;
    background-color: var(--bg-color);
    color: var(--light-color);
}
.custom-form .btn:hover{
    background-color: var(--hover-color);
    color: var(--light-color);
}
@media (max-width:992px) {
    .custom-form label{
        width: 30%;
    }
}

/*****************************************
******************************************
************ Contact Page ***************
/*****************************************
******************************************/

.btn.btn-submit{
    background-color: var(--main-color);
    color:var(--light-color);
    width: 100%;
}
.btn.btn-submit:hover{
    background-color: var(--bg-opacity-color);
}
.contact-title{
    margin-bottom: 30px;
    color: var(--dark-color);
}
.error-text{
    color: red !important;
}
.contact-box{
    padding: 10px 0;
}

.contact-box .icon{
    font-size: 25px;
    color:var(--light-color);
    display: inline-block;
    background-color:var(--bg-color);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    margin-inline-end: 15px;
    transition: all ease-in-out 0.3s;
}
.contact-box .value{
    font-size: 19px;
    color:inherit;
}
.contact-box:hover .icon{
    color:var(--bg-color);
    background-color:var(--light-color);
}
.contact-section .location{
    margin-top:100px ;
}
.contact-section .location .map{
    height: 350px;
}
.contact-section .location .map iframe{
    height: 100%;
    width: 100%;
}
.item .item-title{
    color: #000;
    margin-top: 10px;
}
.item .item-short-desc{
    text-align: justify;
}



.search-row {
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.search-row:not(:last-child) {
    border-bottom: 1px solid #ddd ;
}
.search-row .search-title{
    color:#000;
    position: relative;
    font-size: 21px;
    margin-bottom: 30px;
    padding-inline-start: 20px;
}
.search-row .search-title::before{
    content: '';
    position: absolute;
    right:0;
    top:0;
    width: 5px;
    height: 100%;
    background-color: var(--main-color);
}
.page-title{
    font-size: 23px;
    margin-bottom: 30px ;
    color: #fff;
    padding: 20px 0 ;
    color: var(--main-color);
    position: relative;
}
.page-title::before{
    content: '';
    background-color: var(--main-color);
    position: absolute;
    top: -4px;
    left: 50%;
    height: 5px;
    width: 70px;
    transform: translateX(-50%);
}
.form-block{
    border: 1px solid #ddd;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 20px 20px;
}
.form-block-title{
    font-size: 20px;
    background-color: #fff;
    padding-inline-end:  15px;
    padding-inline-start: -1px;
    padding-bottom: 5px ;
}

.form-block-head{
    margin: -40px -20px 10px;
    display: flex;
    justify-content: space-between;
}
.form-block-head .btn{
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    width: 40px;
    padding: 0;
    text-align: center;
    background-color: var(--main-color);
    color:#fff;
}
.form-block-item{
    border: 1px solid #f2f2f2;
    padding: 20px;
}

.btn.btn-download{
    background-color: var(--main-bright-color);
    color: #fff;
}

.book-details .img-wrapper {
    display: none;
}
.book-details .img-wrapper.active{
    display: block;
}
.book-details .suggested-books-slides .box-image{
    cursor: pointer;
}