html{
    overflow-y: hidden;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}body{
    max-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    font-style: normal;
}
/*/scrollbar
/* width */
::-webkit-scrollbar {
    width: 15px;
    background-color: transparent;
    }

    /* Track */
    ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px white; 
    border-radius: 10px;
    }
    
    /* Handle */
    ::-webkit-scrollbar-thumb {
    background: rgba(128, 128, 128, 0.438); 
    border-radius: 10px;
    }

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
    background: #0000006a; 
    cursor:grab;
    }
    ::-webkit-scrollbar-thumb:active {
    background: #000000; 
    cursor:grabbing;
    }.nav_bar{
    width: 100vw;
    height: fit-content;
    padding: .5rem 1rem;
    display: flex;
    justify-content: space-between;
    color:#FF4912 !important;
    img{
        height: 4rem;
    }
}.menu-btn{
    display: block;
    font-size: 4rem;
}.menu-items{
        display: none;
        font-size: 1rem;
        font-weight: 400;
        width: 50vw;
        align-items: center;
        justify-content: space-between;
        transition: all ease-in 1s;
        margin-right: 2rem;
}.menu-item{
    border-bottom: 1px solid #FF4912;
    border-radius: 1rem;
    padding:.2rem 1rem;
    color:#FF4912 !important;
    text-decoration: none;
}
.offcanvas-body {
    overflow: hidden;
    .menu-items{
        display: flex;
        flex-direction: column;
        font-size: 1rem;
        font-weight: 400;
        width: 100%;
        align-items: end;
        transition: all ease-in 1s;
        margin-right: 2rem;
       
    }.menu-item{
        width: 100%;
        color:black !important;
        text-align: end;
        border-bottom: 1px solid #FF4912;
        border-radius: unset;
        padding:.2rem 1rem;
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }
}
/* nav bar destop veiw  */
@media only screen and (min-width: 992px) {
    .menu-btn{
        display: none;
    }.menu-items{
        
        display: flex;
    }.menu-item:hover{

        cursor: pointer;

        text-decoration: underline;

    }
}
.btn-close{
    font-size: 2rem;
    color: #FF4912 !important;
}
/* main styling */
#loader{
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    
}.title1{
    font-size: 2.8rem;
    color: black;
    text-align: center;
    margin: 1rem auto;
    font-family: "Marhey", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}.title2{
    font-size: 1.6rem;
    font-weight: 600;
    color: black;
    text-align: center;
    margin: 1rem auto;
}.title3{
    font-size: 1.2rem;
    font-weight: 600;
    background-color: white;
    border: 2px solid #FF4912 ;
    color: #FF4912 ;
    width: fit-content;
    margin: 1rem auto;
    padding: .2rem 2rem;
    border-radius: 2rem;
}.calltoaction{
    width: 100%;

}.calltoaction_btn1, .calltoaction_btn2{
    width: 80% ;
    font-size: 1.5rem;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    text-align: center;
    cursor: pointer;
}.calltoaction_btn1{
    color: white;
    background-color: #FF4912 ;
}
.calltoaction_btn2{
    color: #FF4912;
    background-color: white ;
    border: 1px dashed #FF4912;
}.hero_p{
    text-align: right;
    width: 80%;
   
    margin: 1rem auto;
}.hero{
    position: relative;
}.hero_bg{
    background-image: url(../../ressources/images/alnour-icon.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: .15;
}

 /* destop veiw  */
 @media only screen and (min-width: 992px) {
    .calltoaction{
        width: 50%;
        margin: auto;
    }.hero_p{
        width: 50%;
    }
}

/* first section styling */
.first_section, .second_section, .third_section, .fourth_section{
    margin: 3rem auto;
}
.title{
    text-align: right;
    padding: 1rem 2rem;
    font-family: "Marhey", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    text-decoration: underline;
}.articles{
    display: flex;
    flex-direction: column;
    align-items: center;
}.article{
    width: 80%;
    border: 1px solid #FF4912 ;
    border-radius: 1rem;
    overflow: hidden;
    margin: .5rem auto;
}.article_bg{
    height: 10rem;
    width: 100%;
    
    background-position: center;
    background-size: cover;
}.article_desc{
    width: 100%;
    height: fit-content;
    text-align: right;
    padding: .5rem;
}.article_date{
    font-size: 1rem;
    text-align: left;
    font-weight: 600;
    color: #FF4912 ;
}.article_content{
    font-weight: 600;
}.article_link{
    text-decoration: underline;
    color: #FF4912 ;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;

}.more_articles{
    width: fit-content;
    padding: .2rem 2rem;
    text-align: center;
    color: #FF4912 ;
    font-size: 2rem;
    text-decoration: underline;
    font-weight: 400;
    border-bottom: 1px solid #FF4912;
    border-radius: 1rem;
    margin: .5rem auto ;
    cursor: pointer;
}

 /* destop veiw  */
 @media only screen and (min-width: 992px) {
    .articles{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        max-width: 100vw;
        overflow-x: scroll;
    } .article{
        max-width: 20rem;
        min-width: 20rem;
        margin: .5rem 3rem;
    }.article_content {
        min-height: 4rem;
        max-height: 4rem;
    }
}

/* SECOND SECTION STYLING */
.info-container{
    width: 90vw;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 2rem;
    border-top: 1px solid #80808047;
}.info-p{
    width: 80%;
    margin: auto;
    padding: 5px;
    border-radius: 10px;
    font-size: 14px;
    display: none;
    text-align: right;
}.list-num{
    color: #FF4912;
    font-size: 2rem;
}.list-title{
    
    color: rgb(60, 60, 60);
    font-size: 1.36rem;
    font-weight: 500;
    text-align: center;
}.list-arr{
    color: rgb(55, 55, 55);
    font-size: 2rem;
    transform: rotate(90deg);

}
@media only screen and (min-width: 992px) {
    .info-container{
    width: 50vw;
    cursor: pointer;
   
}.info-p{
    width: 45vw;
   
}
}

/* THIRD SECTION STYLING */
.search_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}.select_ipt{
    width: 70%;
    height: 3rem;
    margin-bottom:2rem ;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: rgb(65, 65, 65);
    background-color: white;
    border: 1px solid #FF4912;
    border-radius: 1rem;
}.btn_ipt{
    width: 30%;
    padding: .5rem 2rem;
    font-size: 2rem;
    border: unset;
    background-color: #FF4912;
    color: white;
    border-radius: 1rem;
}

@media only screen and (min-width: 992px) {
    .search_form {
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-around;
    }
    .select_ipt{
        width: 30%;
        height: 3rem;
        margin-bottom:2rem ;
        font-size: 2rem;
        font-weight: 600;
        text-align: center;
        color: rgb(65, 65, 65);
        background-color: white;
        border: 1px solid #FF4912;
        border-radius: 1rem;
        margin: unset;
        cursor: pointer;
    }.btn_ipt{
        width: 10%;
        padding: .5rem 2rem;
        font-size: 2rem;
        border: unset;
        background-color: #FF4912;
        color: white;
        border-radius: 1rem;
        cursor: pointer;
    }
}
/* FOURTH SECTION STYLING */
#map { 
    width: 90%; 
    border-radius: 1rem;
    border: 2px solid black;
    margin:1.5rem 0 ;
}.leaflet-routing-container{
    display:none;
}.leaflet-control-zoom a, .leaflet-popup-content-wrapper, .leaflet-popup-tip{
    color:#FF4912 !important;
    background-color: white !important;
    font-family: 'Marcellus', serif !important;
    text-align: center;
}#fourth-section{
    height: fit-content; background-color: white;
        color: black;
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: end;
}
/* #footer{
    height: 5vh;
    width: 100%;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
} */
.foot svg text{
    font-size: 2rem;
    font-family: "Marhey", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    stroke-width: 2;
    text-transform: uppercase;
    fill: #FF4912;
}.foot{
    background-color: white;        
    padding-top: 1rem;
    border-top: 1px solid #bfbfbf;
}.contact_form{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 1rem auto;
    border: #535353 dashed 1px;
    border: 1px solid #FF4912;         
    margin: 3rem auto;
    margin-top: 0rem;
    border-radius: 1rem;
}.form_input, .form_textarea{
    width: 70%;
    height: 3rem;
    font-size: 1.4rem;
    color: rgb(65, 65, 65);
    background-color: white;
    border: 1px solid #FF4912;         
    border: #535353 dashed 1px;   
    border-radius: 1rem;
    text-align: center;
    margin: 1rem auto;
}.form_textarea{
    height: 6rem;
}.form_label{
    font-size: 1.4rem;
    color: rgb(65, 65, 65);
}.section_1{
    display: flex;
    flex-direction: column;
    align-items: center;
}.form_img{
    width: 50%; margin: 1rem auto; 
}
.foot_icon{
width: 30%;
}
@media only screen and (min-width: 992px) {
#fourth-section{
    justify-content: end;
    align-items: center;
}.section_1_container{
    width: 50%;
}.tel_number{
    font-size: 1rem !important;

}.social_btns{
    font-size: 1.5rem !important;

}.contact_form{
    width: 90%;
    .btn_ipt{
        font-size: 1rem;
    }
}.form_input, .form_textarea{
    width: 50%;
    height: 2rem;
    font-size: 1rem;
    color: rgb(65, 65, 65);
    background-color: white;
    border: 1px solid #FF4912;         
    border: #535353 dashed 1px;   
    border-radius: 1rem;
    text-align: center;
    margin: .3rem auto;
}.form_textarea{
    height: 3rem;
}.form_label{
    font-size: 1.1rem;
    color: rgb(65, 65, 65);
}.form_img{
    width: 30%; 
    margin: .5rem auto; 
}.section_2{
    display: none;
}  .foot{
    height: 5rem;
    width: 100%;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}.foot_icon{
    width: unset;
    height: 4rem;
}#map{
    width: 60%;
}
}

.loader {
  width: 200px;
  height: 140px;
  background: #979794;
  box-sizing: border-box;
  position: relative;
  border-radius:8px;
  perspective: 1000px;
}

.loader:before{
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  border-radius:8px;
  background: #f5f5f5  no-repeat;
  background-size: 60px 10px;
  background-image: 	linear-gradient(#ddd 100px, transparent 0) ,
            linear-gradient(#ddd 100px, transparent 0), 
            linear-gradient(#ddd 100px, transparent 0), 
            linear-gradient(#ddd 100px, transparent 0), 
            linear-gradient(#ddd 100px, transparent 0), 
            linear-gradient(#ddd 100px, transparent 0);
  
  background-position: 15px 30px , 15px 60px , 15px 90px, 
            105px 30px , 105px 60px , 105px 90px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}
.loader:after {
  content: '';
    position: absolute;
    width: calc(50% - 10px);
    right: 10px;
    top: 10px;
    bottom: 10px;
    border-radius: 8px;
    background: #fff no-repeat;
    background-size: 60px 10px;
    background-image: linear-gradient(#ddd 100px, transparent 0), 
            linear-gradient(#ddd 100px, transparent 0), 
            linear-gradient(#ddd 100px, transparent 0);
    background-position: 50% 30px ,50% 60px , 50%  90px;
    transform: rotateY(0deg );
    transform-origin: left center;
  animation: paging 1s linear infinite;
}

.loader_book {
    display: inline-block;
    
    margin: auto;
    width: 200px;
    height: 140px;
    background: #979794;
    box-sizing: border-box;
    position: relative;
    border-radius:8px;
    perspective: 1000px;
  }
  
  .loader_book:before{
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border-radius:8px;
    background: #f5f5f5  no-repeat;
    background-size: 60px 10px;
    background-image: 	linear-gradient(#ddd 100px, transparent 0) ,
              linear-gradient(#ddd 100px, transparent 0), 
              linear-gradient(#ddd 100px, transparent 0), 
              linear-gradient(#ddd 100px, transparent 0), 
              linear-gradient(#ddd 100px, transparent 0), 
              linear-gradient(#ddd 100px, transparent 0);
    
    background-position: 15px 30px , 15px 60px , 15px 90px, 
              105px 30px , 105px 60px , 105px 90px;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
  }
  .loader_book:after {
    content: '';
      position: absolute;
      width: calc(50% - 10px);
      right: 10px;
      top: 10px;
      bottom: 10px;
      border-radius: 8px;
      background: #fff no-repeat;
      background-size: 60px 10px;
      background-image: linear-gradient(#ddd 100px, transparent 0), 
              linear-gradient(#ddd 100px, transparent 0), 
              linear-gradient(#ddd 100px, transparent 0);
      background-position: 50% 30px ,50% 60px , 50%  90px;
      transform: rotateY(0deg );
      transform-origin: left center;
    animation: paging 1s linear infinite;
  }


@keyframes paging {
  to {
    transform: rotateY( -180deg );
  }
}

.suggestion{
    background-color: unset !important;
    margin-bottom: .5rem;
}.suggestions_container, .suggestions_container1{
    background-color: #ffffff !important;
    max-height: 50vh;
    overflow-y: scroll;
}.suggestion:hover{
    background-color: #F9322C30 !important;
}

.offcanvas-header .btn-close{
    margin: unset;
}.offcanvas-header{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}.menu-item{
    transition: all .3s ease;

}.menu-item:hover{
   
    color: #FF4912 !important;
    transform: scale(1.1);
}.books_ord_inc:hover{
    cursor: pointer;
}.outline_when_hover:hover{
    cursor: pointer;
}@keyframes icon_breath {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}
.start_now_icon{
    animation: 1.5s ease-in-out infinite alternate icon_breath;
}

@keyframes icon_container_breath {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}
.start_now_icon_container{
    animation: 1.5s ease-in-out infinite alternate icon_container_breath;
}.callAction{
    display: block;
    width: 18vw;
    height: 18vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border: 2px black solid;
    border-radius: 50%;
}.callAction img{
    width: 10vw;
    height: 11.24vw;
}.centerDiv{
    display: flex;
    justify-content: center;
    align-items: center;
}