

:root {
  --blue: #1e90ff;
  --white: #ffffff;

  --input-font-size: 1.1em;
  --input-line-height: 2em;
  --input-padding: 0 .6em;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    font-size: 16px;
    box-sizing: border-box;
    
}


h1 {
    font-size: 2em;  
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1em;
}

input[type='text'],
input[type='password'],
button,
textarea {
    font-size: var(--input-font-size);
    padding: var(--input-padding);
    
}
button {
      line-height: var(--input-line-height);
}
@media (max-width: 576px) {
    body {
        font-size: 14px; 
        
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    body {
        font-size: 15px; 
    }
}

@media (min-width: 768px) and (max-width: 992px) {
   body {
        font-size: 16px; 
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    body {
        font-size: 17px; 
    }
}

@media (min-width: 1200px) {
    body {
        font-size: 18px; 
    }
    .answer-of-question {
        width: 90%;
        margin: 0 auto;
    }
}





a {
    text-decoration: none;
}

@font-face {
    font-family: urfont1;
    src: url("../fonts/nafeesnastaleeq.woff");
    /* src: url("../fonts/nafees_nastaleeq.ttf"); */
}

.ur {
	font-family: urfont1;
    /* font-family: 'Tahoma', Verdana, sans-serif; */
	line-height: 2.5;
	direction: rtl;
    page-break-inside: avoid;
  break-inside: avoid;
}

.ar {
    font-family: 'Tahoma', Verdana, sans-serif;
	line-height: 2.5;
	direction: rtl;
     page-break-inside: avoid;
  break-inside: avoid;
   
}

.en {
    direction: ltr;
     font-family: 'Tahoma', Verdana, sans-serif;
}

.chunk {
    background-color: #f1f1f1;
    border-right: 4px solid #008000;
    padding: 10px 15px;
    margin: 15px 0;
     page-break-inside: avoid;
  break-inside: avoid;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}



.info-bar {
    display: flex;
    justify-content: space-between;
    color: #a3a1a1;
    font-size: .9em;
}
.search-container {
   padding: 50px 30px;
}


.q-ans {
    padding: 0 20px 30px
}

.search-box {
	width: 60%;
    position: relative;
	margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding-left: 140px;
    border: 1px solid #ddd;
}

.search-box input:focus {
    outline: none;
}

.search-btn {
    position: absolute;
    left: 0;
    padding: 0px 10px;
    font-size: var(--input-font-size);
    
}

.add-question {
    padding: 0 50px;
}
.QuestionForm {
    
    border-radius: 10px;
    background: #FFF;
    padding: 30px;
    width: 100%;
    
}
/* .fixed-center {
    position: fixed;
    overflow-y: scroll;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
} */

.form-control {
    display: block;
    width: 100%;
    color: #666;
    appearance: none;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #ddd;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

textarea {
    resize: vertical;
}
input[type=text]:focus, textarea:focus {
    outline: 0;
    box-shadow: inset 0 -2px 0 #04ad31;
}


.btn {
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: .4em 1.4em;
    color: #FFF;
    margin: .4em auto;
    display: block;
    background: #4caf50;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
    transition: color .4s, background .4s, border-color .4s, box-shadow .4s;
}

.btn:hover {
    background: #439846;
}


/*FAQ Styles*/

.accordion {
    /* background: #fff;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5)); */
    padding: 1.5em;
}

.question-answer {
     padding: 1em;
     border-bottom: 1px solid #e8e8e8;
}
.accordion .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .8em 0;
}
.answer {
    opacity: 0;
    height: 0;
}
.fa-chevron-up, .answer {
    transition: all .5s ease-in-out;
}


/*    */

.accordion li {
    list-style: none;
    margin: 20px;
    padding: 10px;
    border-radius: 8px;
    background: #e3edf7;
    box-shadow: 6px 6px 10px -1px  rgba(0,0,0,0.15),
                -6px -6px 10px -1px  rgba(255,255,255,0.7)

}

.accordion li label {
    display: flex;
    align-items: center;
    padding: 10px;
    /* font-size: 18px; */
    font-weight: 500;
    cursor: pointer;
}

.accordion li label::before {
    content: "+";
    margin-left: 10px;
    /* font-size: 24px; */
    font-weight: 600;
}

.accordion input[type="radio"]:checked + label::before {
    content: "-";
}

input[type="radio"] {
    display: none;
}

.accordion .content {
    color: #555;
    padding: 0 10px;
    line-height: 26px;
    height: 0;
    overflow: hidden;
    transition: height 0.5s, padding 0.5s;
}

.accordion input[type="radio"]:checked + label + .content {
    height: auto;
    padding: 10px 10px 20px;
}




.navBar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 20px;
    background: #2CA5DC;
    box-shadow: 0 2px 4px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.08);
    font-weight: 400;
}

.logo img {
    width: 7.5em;
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;;
    justify-content: space-around;
}
.gurdian {
    margin: 0 auto;
}
.menu-links {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.menu-links li {
    display: block;
    padding: 0px 20px; /* this padding should be same as for a::after*/
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.menu-links > li > a::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    width: 100%;
    transition: all .4s;
    padding: 0 20px; /* this padding should be same as for .menu-links li*/
    color: #FFF;
}

.menu-links span {
    transform: translateY(0);
    display: block;
    transition: all .4s;
}

/* hover Effects*/
.menu-links li:hover > a::after {
    transform: translateY(0);
}

.menu-links li:hover > span {
    transform: translateY(100%);
}


/*Menu Button*/
.menu-button {
    position: relative;
    display: none;
    cursor: pointer;
    padding: 10px 20px;
}
.menu-btn-burger, .menu-btn-burger::after, .menu-btn-burger::before {
    width: 36px;
    height: 2px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px rgba(255,101,47,.2);
    transition: all .5s ease-in-out;
}

.menu-btn-burger::after {
    content: "";
    position: absolute;
    transform: translateY(10px);
}

.menu-btn-burger::before {
    content: "";
    position: absolute;
    transform: translateY(-10px);
}

/* Menu Button Animation*/

.menu-button.open .menu-btn-burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}

.menu-button.open .menu-btn-burger::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.menu-button.open .menu-btn-burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
}


@media all and (max-width: 780px){
    .logo {
        order: 0;
    }

    .humberger-menu {
        order: 1;
    }

    .menu {
        order: 2;
        width: 100%;
        margin-top: -500px;
        transition: all .3s ease-in; 
        opacity: 0;
    }

    .menu-links {
        flex-wrap: wrap;
 
     }
    .menu-links li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
        transition: all .3s ease-in;
    }

    .menu-links li:hover {
        background-color: #146d96;
    }
    .menu-links > li > a::after {
        padding: 0;
    }

    /*Menu Button*/
    .menu-button {
        display: block;
    }

    .menu.mobile {
       margin-top: 0;
       opacity: 1;
    }
    .gurdian {
            /* font-size: 12px; */
            
    }

}



/* Slider Styles*/
.sliderBox {
    position: relative;
}
.slider {
    position: relative;
    overflow: hidden;
    height: 450px;
    margin-top: 10px;
   
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.slide.current {
    opacity: 1;
}


.slide .content {
    position: absolute;
    bottom: 0;
    left: -600px;
    width: 600px;
    opacity: 0;
    background-color: rgba(255,255,255,.8);
    padding: 30px 65px;
    color: #333;
}

.slide.current .content {
    opacity: 1;
    transform: translateX(600px);
    transition: all 0.7s ease-in-out 0.3s;
}

.slide .content h1 {
    margin-bottom: 10px;
}

/* Making Slider Responsive*/
@media(max-width: 500px){
    .slide .content {
        bottom: -300px;
        left: 0;
        width: 100%;
    }

    .slide.current .content {
        transform: translateY(-300px);
    }
}

.slide:first-child {
    background: url('../images/01.jpg') no-repeat center center/cover;
}

.slide:nth-child(2) {
    background: url('../images/02.jpg') no-repeat center center/cover;
}

.slide:nth-child(3) {
    background: url('../images/03.jpg') no-repeat center center/cover;
}

.slide:nth-child(4) {
    background: url('../images/04.jpg') no-repeat center center/cover;
}

.slide:nth-child(5) {
    background: url('../images/05.jpg') no-repeat center center/cover;
}

button#next {
    position: absolute;
    top: 50%;
    right: 15px;
}

button#prev {
    position: absolute;
    top: 50%;
    left: 15px;
}

.buttons button {
    border: 2px solid #0cf504;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    /* padding: 13px 15px; */
    border-radius: 50%;
    outline: none;
}

.buttons button:hover {
    background-color: #fff;
    color: #333;
}

.longCopy {
    padding: 0 50px;
}

/* Section Features*/
.sectionFeatures {
    padding: 50px 20px;
}

.columns {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.column {
    padding: 20px;
}



.center {
    text-align: center;
}


/* h2::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #00b894;
    width: 200px;
    margin: 30px auto;
} */

.iconWrapper {
    text-align: center;
}
.iconBig {
    /* font-size: 50px; */
    color: #00b894;
    margin-bottom: 20px;
}

/* Section sectionSteps*/

.sectionSteps {
    padding: 50px 20px;  
    background: #d1d8e0;
}

.col-2-1 {
    width: 50%;
}
.stepsImageWrapper, .stepsContentWrapper {
    margin: 0 auto;
}

.stepsImageWrapper img {
    width: 100%;
}

.workStep {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    direction: rtl;
}


.workStep div{
    text-align: center;
    border: 2px solid #e67e22;
    display: block;
    margin-left: 20px;
    border-radius: 50%;
    color: #e67e22;
    /* font-weight: 500;
    font-size: 22px; */
    line-height: 40px;
    flex: 0 0 40px;
    height: 40px;
}

.signUpBtn {
    display: block;
    background: #e67e22;
    padding: 10px 20px;
    width: 250px;
    text-align:center;
    margin: 0 auto;
    border-radius: 2px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all .2s ease-in-out;
}
.signUpBtn:hover {
    background: #df8c43;
}

/* Section Cities*/
.sectionCities {
    padding: 50px 20px;  
}

.sectionCities img {
    width: 100%;
    height: 200px;
}

.userDetail {
    display: flex;
    align-items: center;
}
.userColumn {
    margin-right: 10px;
}

/* section Testimonial */
.sectionTestimonials {
    padding: 50px 20px;  
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url("../images/customerOpinion.jpg") no-repeat center center/cover;
}

blockquote {
    position: relative;
    /* font-size: 110%; */
    padding: 2%;
    line-height: 145%;
}
blockquote:before {
    content: "\201C";
    /* font-size: 400%; */
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
}


cite {
    margin-top: 25px;
    display: block;
}
cite img {
    width: 50px;
    /* font-size: 90%; */
    border-radius: 50px;
    margin-right: 10px;
    vertical-align: middle;
}

h2.white::after {
    background-color: #fff;
}

/*Section Our Team*/

.sectionOurTeam {
    padding: 50px 20px;
}

.ourTeamWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    margin: 130px 1% 0;
    padding: 20px;
    /* border: 1px solid #778ca3; */
    width: 23%;
    border-radius: 20px 0 20px 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.08);
}

.cardBody img {
    
    width: 100%;
    border-radius: 200px;
    display: block;
    margin: -50% auto 10px auto;
}

.cardBody h3 {
    text-transform: uppercase;
}

.cardBody p {
    margin: 10px 0;
}

.socialContacts {
    list-style: none;
    margin: 50px auto 10px auto;
    display: flex;
    width: 80%;
    justify-content: space-around;
}

.socialContacts a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    /* font-size: 12px; */
    background: #2c3e50;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.socialContacts a:hover {
    background: #e67e22;
}

/* Section Maps*/
    .sectionMaps {
        padding-top: 50px;
        background: #d1d8e0;
    }
    #map {
        width: 100%;
        height: 500px;
        background-color: grey;
    }

  .mapWrapper {
      position: relative;
      overflow: hidden;
  }
  .contactForm {
      position: absolute;
      right: 50px;
      height: 60%;
      width: 40%;
      padding: 20px;
      background: rgba(255,255,255,.7);
      z-index: 999;
  }

  .contactForm p {
      font-weight: 400;
      margin: 10px;
  }

  .ol-styles-btm {
            margin-right: 30px; 
            display: flex;
            direction: rtl; 
            justify-content: space-around;
    }

  /* .contactButton {
    position: absolute;
    display: block;
    background: #e67e22;
    padding: 10px 20px;
    width: 150px;
    text-align: center;
    border-radius: 2px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all .2s ease-in-out;
    transform: rotate(-90deg);
    z-index: 1000;
    top: 40%;
    left: -20%;
  } */

/* Footer */

    footer {
        background-color: #333;
        padding: 20px 50px;
    }

    footer ul {
        list-style-type: none;
    }

    footer li {
        display: inline-block;
        margin: 0 20px;
    }

    footer li a {
        color: #fff;
        text-decoration: none;
    }

    footer p {
        color: #fff;
    }

    @media(max-width: 768px){

        .gurdian {
            /* font-size: 16px; */
            
        }
        .search-box {
            width: 100%;
        }
        .ol-styles-btm {
            flex-direction: column;
        }

        .columns {
            flex-wrap: wrap;
        }

        .column {
            width: 50%;
        }

        .ourTeamWrapper {
            flex-wrap: wrap;
        }
        
        .card {
            width: 46%;
            margin: 180px 2% 0;
        }

        .cardBody img {
            width: 70%;
            /* margin: -25% auto 10px auto; */
        }
        .posterInfo{
            flex-direction: column;
        }
        .q-ans {
            padding: 5px 20px;
        }
        .accordion li label {
            /* font-size: 14px; */
        }
    }

    

    @media(max-width: 480px){

        .columns {
            flex-direction: column;
            padding: 10px 0;
        }

        .column {
            width: 100%;
        }

        .col-2-1 {
            width: 100%;
        }

        .workStep {
            margin-bottom: 25px;
        }

        .workStep  div {
            /* font-size: 14px; */
            line-height: 26px;
            flex: 0 0 26px;
            height: 26px;
        }

        .ourTeamWrapper {
            flex-direction: column;
        }

        .card {
            width: 100%;
            margin: 100px 0 10px;
        }

        .cardBody img {
            width: 60%;
            margin: -25% auto 10px auto;
        }

        blockquote {
            position: relative;
            /* font-size: 15px; */
            padding: 5px;
            line-height: 1.4;
        }
        blockquote:before {
            /* font-size: 25px; */
            top: -4px;
        }

        cite {
            margin-top: 12px;
            /* font-size: 12px; */
        }

        .contactForm {
            position: static;
            width: 100%;
        }

        footer {
            /* font-size: 13px; */
            padding: 20px 5px;
        }

        .socialNav {
            margin-bottom: 10px;
        }

        .socialIcons {
            display: block;
            margin: 0 auto;
            padding: 20px 0;
        }
        .sliderBox {
            display: none;
        }
        
        .add-question {
            padding: 0 20px;
        }
        .QuestionForm {
            padding: 0;
        }
        .form-control {
            padding: 8px;
            /* font-size: 15px; */
            font-weight: normal;
            line-height: 0.8;
        }
    }
.selected-word {
    background-color: yellow;
}

.posterInfo {
    display: flex;
    gap: 20px;
}

.posterInfo div {
    width: 100%;
}

.forgiveness {
    padding: 50px 20px;
}

.forgiveness .img-wrapper {
    margin: 0 auto;

}
.forgiveness .img-wrapper img {
    width: 100%;
    border-radius: 5px;
}


/* Sahre buttons styles*/

.share-btn-container {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: fixed;
    left:0;
    top: 50%;
    transform: translateY(-50%);
}

.share-btn-container a i {
    font-size: 1.6em;
}

.share-btn-container a {
    margin: 12px 0;
    transition: 500ms;
}

.share-btn-container a:hover {
    transform: scale(1.2);
}

.share-btn-container .fa-facebook {
    color: #3b5998;
}

.share-btn-container .fa-twitter {
    color: #1da1f2;
}

.share-btn-container .fa-linkedin {
    color: #3b5998;
}

.share-btn-container .fa-whatsapp {
    color: #25d366;
}

.fa-edit {
    color: blue;
}
.fa-trash-alt {
    color: red;
}

.answer-of-question {
    padding: 0 5em;
}

@media (max-width: 550px){
    .share-btn-container {
        transform: unset;
        position: unset;
        top: unset;
        box-shadow: unset;
        flex-direction: row;
        padding: 1em 0;
        justify-content: space-around;
    }
    .answer-of-question {
        padding: unset;
    }
}



/* admin styles  */
i {
    cursor: pointer;
}

.adminPage {
    font-size: .9em;
}
.adminPage .content {
    display: flex;
    gap: 3.2em;
}
.leftBar {
    background: #2CA5DC;
    padding: 1em 2em;
    position: fixed;
    width: 10em;
    height: 100vh;
    
    transition: left 300ms ease;
    z-index: 100;
}
.rightBar {
    padding: 1em 2em;
    width: calc(100% - 10em);
    margin-left: 10em;
}
.topBar {
    display: flex;
    justify-content: space-between;
    /* position: sticky;
    top: 0;
    padding: 1em 0;
    background: #FFF; */
}
.contentColumns {
    display: flex;
    justify-content: space-between;
    
}

.contentColumns .dataitem {
    width: 100%;
}
.contentColumns .actions {
    width: 40px;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
}

.articleForm {
    width: 60%;
    margin: 0 auto;
    position: fixed;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
    background: #fff;
    border: 5px solid green;
    border-radius: 4px;
    transition: right 1000ms ease;
    z-index: 1001;
}
#articleForm {
    padding: 0 1.6rem;
} 
.fa-bars {
    position: relative;
    z-index: 1000;
} 
.articleForm input, .articleForm textarea {
    width: 100%;
}

.articleForm .closeFormBtn {
    position: sticky;
    padding-left: 7px;
    top: 0;
    color: red;
    font-size: 1.5em;
    background: #FFF;    
}

#pageSelector {
    font-size: 1em;
}



.wall {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0.7;
    z-index: 1000;
}

.model {
    padding: 1em;
    border: 1px solid green;
    width: 20em;
    background: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1002;
}

.model button {
    font-size: .9em;
    width: 100%;
}

#searchText {
    line-height: var(--input-line-height);
}

.pageHeader {
    direction: rtl; 
    display: flex;
    justify-content: space-between;
}
.dataContainer {
    min-height: calc(100vh - 400px);
    display: block;
}

/* Login Page Styles*/
.loginForm {
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid green;
    padding: 50px 20px;
    transform: translate(-50%, -50%);
    
}
.loginForm input {
    line-height: var(--input-line-height);
}
.loginForm button {
    width: 100%;
}



.page-middle {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loading {
    background: #FFF;
    padding: 20px;
    text-align: center;
    width: 500px;
    border: 1px solid gray;
    z-index: 1005;
}

.error {
    color: red;
 
    font-size: .9em;
}


section.mostRecent {
    padding: 50px 20px;
    background: #edecec;
}

section.mostRecent a,
section.mostRecent a:visited,
section.mostRecent a:active {
    color: #ed6a06;
}



.cardsWrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    direction: rtl;
}

.articleCard {
    width: 30%;
    padding: 1em;
    background: hsl(0, 0%, 100%);
    margin-bottom: 1em;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
}

.text-sm {
    direction: ltr;
    font-size: .8em;
}


@media only screen and (max-width: 768px) {


    .leftBar {
        left: -10em;
        height: 100%;
    }

    .leftBar.open {
        left: 0;
    }

    .rightBar {
        margin-left: 0;
        width: 100%;
        transition:  all .5s ease;
    }

    .rightBar.menu-open {
        margin-left: 10em;
    }


    .articleForm {
        width: 95%;
    }
    .pageHeader {
        flex-direction: column;
        gap: .5em;
    }
    .articleCard {
        width: 100%;
    }
}


