

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap&rel=preconnect');

/* poppins-700 - latin */
/*@font-face {
    font-family: 'Poppins' !important;
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Poppins-Regular.ttf') format('truetype'), Safari, Android, iOS,
    url('/fonts/Poppins-Regular.ttf') format('truetype') !important, Safari, Android, iOS,
    url('../fonts/Poppins-Thin.ttf') format('truetype') ,
    url('../fonts/Poppins-Black.ttf') format('truetype'),
    url('../fonts/Poppins-Bold.ttf') format('truetype'),
    url('../fonts/Poppins-Medium.ttf') format('truetype'),
    url('../fonts/Poppins-Light.ttf') format('truetype'),
    url('../fonts/Poppins-Bold.ttf') format('truetype');
}
*/
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #ddd;
    --dark: #333;
    --light: #fff;
    --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.5), rgba(4,9,30,0.5)), url(../images/HeroWhite-Caligraphy.jpg);
    /*background-image: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4)), url(../images/madinah3.jpeg);*/
    /*background-image: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4)), url(../images/hero-calligraphy.jpg);*/
    background-position: center;
    background-size: cover;
    position: relative;
}


/*.topbar {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1001;
    width: 100vw;
    margin-bottom: 300px;
 }*/

nav {
    display: flex;
    padding: 10px 6%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

    nav img {
        width: 100px;
    }

.nav-links {
    flex: 1;
    text-align: right;
}



    .nav-links ul li {
        list-style: none;
        display: inline-block;
        margin: 10px 20px;
    }

        .nav-links ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
        }

        .nav-links ul li::after {
            content: '';
            width: 0%;
            height: 2px;
            background-color: #66adeb;
            display: block;
            margin: auto;
            transition: 0.5s;
        }

        .nav-links ul li:hover::after {
            width: 100%;
        }

    .nav-links .home-buttons {
        border: none;
        background-color: transparent;
        color: #fff;
        cursor: pointer;
        font-size: 15px;
    }



.nav-links-cart ul li a {
    color: #000;
    text-decoration: none;
    font-size: 13px;
}




.cart-items {
    color: white;
    text-decoration: none;
    position: relative;
    display: inline-block;
    border-radius: 0px;
    overflow: hidden;
    padding: 3px 9px;
    /*transition: ease-in-out .3s;
    margin-right: 10px;
    */
}

.cart-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 5px 8px;
    border-radius: 50%;
    background-color: red;
    color: white;
    font-size: 10px;
    font-family: Arial;
}



.text-box {
    width: 96%;
    color: #fff;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

    .text-box h1 {
        font-size: 40px;
    }

    .text-box p {
        margin: 10px 0 40px;
        font-size: 16px;
        color: #fff;
    }

textarea:focus, input:focus {
    outline: none;
}

.main-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 10px;
    font-size: 13px;
    background-color: #cfbe9e;
    position: relative;
    cursor: pointer;
    text-align: center;
}

    
.main-btn:hover {
    border: 1px solid #66adeb;
    background-color: #66adeb;
    transition: 1s;

}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 20px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

    .hero-btn:hover {
        border: 1px solid #66adeb;
        background: #66adeb;
        transition: 1s;
    }


nav .fa-menu {
    display: none;
}

.trial-button {
    /*display: flex;
    flex-direction: column;
    justify-content: center;*/

    display: grid;
    grid-template-columns: 1fr 1fr;

}

.heroH1Content {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-top: auto;
}
/*----------------*/
.button__text {
    /*font: bold 20px "Quicksand", san-serif;*/
    color: #ffffff;
    transition: all 0.2s;
}

.button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

.button {
    position: relative;
    /* padding: 8px 16px;
    background: #009579;
    border: none;
    outline: none;
    border-radius: 2px;
    cursor: pointer;*/
}

/* .button:active {
        background: #007a63;
    }*/

input::placeholder {
    color: lightgray;
}


/*-------------------- User Profile --------------------------------*/
.menu-profile {
    display: flex;
    flex-direction: column;
}

.user-pic {
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 30px;
    margin-bottom: 5px;
}


nav .user-info {
    display: flex;
    align-items: center;
}

    nav .user-info h3 {
        font-weight: 500;
        color: #777;
        font-size: 14px;
    }

    nav .user-info img {
        width: 40px;
        border-radius: 50%;
        margin-right: 15px;
    }


/*---------*/

nav .sub-menu-wrap {
    position: absolute;
    /* right: 5%;
     top:65%;*/
    width: 260px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
    z-index: 999;
}

    nav .sub-menu-wrap.open-menu {
        max-height: 400px;
        border: 1px solid #ccc;
    }

nav .sub-menu {
    background: #fff;
    padding: 20px;
    margin: 0px;
    /*position: absolute;*/
}

    nav .sub-menu hr {
        border: 0;
        height: 1px;
        width: 100%;
        background: #ccc;
        margin: 15px 0 10px;
    }

.sub-menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #525252;
    margin: 12px 0;
}


    .sub-menu-link .fa-icon {
        margin-right: 15px;
        color: #66adeb;
    }

    .sub-menu-link p {
        width: 100%;
    }

    .sub-menu-link:hover p {
        font-weight: bold;
    }

    .sub-menu-link img {
        width: 40px;
        background: #e5e5e5;
        border-radius: 50%;
        padding: 8px;
    }

    .sub-menu-link span {
        font-size: 22px;
    }


.sub-menu-icon .fa-solid {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: #66adeb;
    border: 1px solid #66adeb;
    text-align: center;
}

/*-------------------- Offer --------------------------------*/

.offer {
    width: 80%;
    /*margin: auto;*/
    margin: 10px;
    text-align: center;
    padding-top: 20px;
}

.offer-col {
    flex-basis: 44%;
    background: #fff; /* #fff3f3;*/
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: .5s;
    border: 1px solid #ccc;
    position: relative;
    overflow: hidden;
}

    .offer-col:hover {
        box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    }

.SpecialOffer {
    position: absolute;
    background: #e43;
    /*#e46c0a;*/
    text-transform: uppercase;
    padding: 5px;
    box-shadow: var(--shadow);
    transform: rotate(45deg);
    transition: ease-in-out .5s;
    font-size: 12px;
    right: -30px;
    top: 20px;
    width: 120px;
    text-align: center;
    color: white;
}


h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    color: #646363;
}


/*---------- WhyLearnArabic -------------*/

.feature-box {
   /* width: 90%;*/
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    text-align: center;
}

.features {
    flex-basis: 50%;
}

.features-img {
/*    flex-basis: 40%;*/
    margin: auto;
}

    .features-img img {
        /*width: 70%;*/
        border-radius: 10px;
/*        width: 100px;*/
    }

.feature-desc {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 30px;
}

.feature-icon .fa-solid {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 50%;
    color: #66adeb;
    border-right: 2px solid rgba(4,9,30,0.1);
    border-bottom: 2px solid rgba(4,9,30,0.1);
    /*border: 1px solid white;*/
    /*background-color: #66adeb;*/
}

/*---------------- Benefit --------------*/
.benefit-h4 {
    margin-left: 60px;
    text-align: left;
    font-size: 20px;
    color: #777;
}

.benefit {
    flex-basis: 50%;
}

.benefit-icon .fa-solid {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 50%;
    color: #66adeb;
    border: 1px solid #66adeb;
    border-right: 2px solid rgba(24 45 137 / 0.5);
    border-bottom: 2px solid rgb(24 45 137 / 0.5);
}
/*------------ Levels -------------------*/

.levels {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
}

.levels-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
   /* background: #fff3f3;*/
     background: #fff;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    transition: .5s;
    border: 1px solid #ccc;
    position: relative;
    overflow: hidden;
}

    .levels-col:hover {
        box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    }

    .levels-col img {
        width: 100%;
        height: 200px;
        border: 1px solid lightgray;
        /*border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;*/
    }

.SpecialBonus {
    position: absolute;
    background: #e43;
    /*#e46c0a;*/
    text-transform: uppercase;
    padding: 5px;
    box-shadow: var(--shadow);
    transform: rotate(45deg);
    transition: ease-in-out .5s;
    font-size: 12px;
    right: -30px;
    top: 20px;
    width: 120px;
    text-align: center;
    color: white;
}
/*---------- BOOKS -------------*/


.course {
    /*width: 80%;*/
    /*margin: auto;*/
    margin:10px;
    text-align: center;
    padding-top: 20px;
}

h1 {
    font-size: 30px;
    font-weight: 600;
    color: #646363;
}

.course h1 span {
    /* background-color: rgb(161, 240, 88);
    transform: rotate(-8deg); */
    color: #646363;
    background: rgb(255, 0, 0);
    text-transform: uppercase;
    padding: 5px 5px;
    /*box-shadow: var(--shadow);*/
    transform: rotate(-6deg);
    display: inline-block;
    text-shadow: 0 0 3px #000;
    transition: ease-in-out .5s;
    border-radius: 5px;
    font-size: 14px;
}

    .course h1 span:hover {
        transform: rotate(0deg);
        transition: ease-in-out .5s;
    }

h2 {
    color: #666;
    }

p, points {
    color: #333;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: justify;
    text-justify: inter-word;
}

.row {
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
    /*display: grid;
    grid-template-columns: repeat(3,minmax(300px, 1fr));
    grid-gap: 10px;*/
}


.cards {
    display: grid;
    /*grid-template-columns: repeat(auto-fit,minmax(260px,3fr));*/
    grid-template-columns: repeat(3,minmax(240px, 1fr));
    grid-gap: 20px;
    
}

.lessons-cards {
    background-color: #036bbf; /*#66adeb;*/
    color: #fff;
}



.course-col {
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: .5s;
}

    .course-col:hover {
        box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    }




/*--- testimonials ----*/
.testimonials {
    width: 80%;
    margin: auto;
    padding-top: 20px;
    text-align: center;
}


/*-------------------- Index page ---------------------------*/
.testimonial-col {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    /*background: #fff3f3;*/
    padding: 5px;
    /*cursor: pointer;*/
    display: flex;
    /*outline: 2px solid #d3eafb;*/ /*#66adeb;*/
    /*outline-offset: 0.125rem;*/
    background-color: white;
    border: 1px solid #8cc0ee;

}

    .testimonial-col:hover {
        box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    }

    .testimonial-col img {
        height: 40px;
        margin-left: 5px;
        /*margin-right: 30px;*/
        border-radius: 50%;
        padding: 10px 10px;
        
    }

/*.testimonial-col {
    padding: 0;
}*/

    .testimonial-col h3 {
        margin-top: 15px;
        text-align: left;
    }

    .testimonial-col h4 {
        font-size: 14px;
        color: #777;
        margin-top: 2px;
    }

/*-------------------- Testimonial page ---------------------------*/
.testimonial-row {
    margin-top: 5%;
    display: grid;
    grid-template-columns: repeat(2,minmax(240px, 1fr));
    grid-gap: 20px;
    
}
.testimonial {
    /*flex-basis: 44%;*/
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    /*background: #fff3f3;*/
    padding: 5px;
    /*cursor: pointer;*/
    display: flex;
    /*grid-template-columns: repeat(auto-fit,minmax(260px,3fr));*/
   /* grid-template-columns: repeat(2,minmax(240px, 1fr));
    grid-gap: 20px;*/

    outline: 3px solid #d3eafb; /*#66adeb;*/
    outline-offset: 0.125rem;
    /*background-color: #d3eafb;*/
    /*border: 1px solid #ccc*/
}

    .testimonial:hover {
        box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    }

    .testimonial img {
        height: 40px;
        margin-left: 5px;
        /*margin-right: 30px;*/
        border-radius: 50%;
        padding: 10px 10px;
    }

    /*.testimonial-col {
    padding: 0;
}*/

    .testimonial h3 {
        margin-top: 15px;
        text-align: left;
    }

    .testimonial h4 {
        font-size: 14px;
        color: #777;
        margin-top: 2px;
    }

/*---------------------------- myLesson ---------------- */
.lesson-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    background: #fff3f3;
    padding-bottom: 10px;
    box-sizing: border-box;
    transition: .5s;
    border: 1px solid #ccc;

}
  

    .lesson-col:hover {
        box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    }

.lesson-bk {
    background-image: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4)), url(../images/madinah3.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}

.FreeContent-bk {
 /*   background-image: linear-gradient(rgba(4,9,30,0.8), rgba(4,9,30,0.8)), url(../images/Numbers1-5.jpg);
    background-position: center;
    background-size: cover;*/
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-top: 10px;
    padding-bottom: 30px;
    border:1px solid white;
}

.FreeContent {
    background-image: linear-gradient(rgba(4,9,30,0.2), rgba(4,9,30,0.2)), url(../images/prayerDesert.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}
    .lesson-btn {
    display: inline-block;
    text-decoration: none;
    width: 60px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10%;
    padding: 8px 8px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

    .lesson-btn:hover {
        border: 1px solid #fcb02f;
        background: #66adeb;
        color: #fcb02f;
        transition: 1s;
    }


.Level-lesson-btn {
    display: inline-block;
    text-decoration: none;
    width: 60px;
    color: #fff;
    border: 1px solid #bcdffc;
    border-radius: 10%;
    padding: 8px 8px;
    font-size: 13px;
    background: #66adeb;
    position: relative;
    cursor: pointer;
}

    .Level-lesson-btn:hover {
        border: 1px solid #bcdffc;
        background: #fff;
        color: #66adeb;
        transition: 1s;
    }
/*---------------------- sign in -----------------------------*/


.sign {
    /*margin-top: -70px;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*transition: ease-in-out 1s;*/
}

.sign-col {
    /*flex-basis: 44%;*/
    background: transparent; /*linear-gradient(rgba(251, 251, 252, 0.4), rgba(4,9,30,0.4));*/
    border-radius: 10px;
    border: 1px solid #66adeb;
    margin: auto;
    margin-bottom: 5%;
    /*padding: 20px 12px;*/
    padding-bottom: 5px;
    box-sizing: border-box;
    width: 45%;
    text-align: center;
    /*transition:ease-in-out 1s;*/
}

/*
.sign-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}*/

.sign-tab {
    text-align: center;
    height: 40px;
}

.sign-col h2 {
    color: #fff;
    opacity: 1;
}

.signup-btn {
    border: 1px solid #777;
    color: #777;
}

    .signup-btn:hover {
        color: #fff;
    }


.textbox {
    border: 1px solid #d2d1d1;
    padding: 10px 10px;
    margin: 10px 10px;
    width: 70%;
    border-radius: 2px;
}

.sign-alert {
    color: #fcc260;
    text-align: center;
    font-size: 16px;
}


.tablinks {
    /* background-color: inherit;*/
    background-color: #fff;
    border: 1px solid #d2d1d1;
    /*float: left;*/
    /*border: none;*/
    outline: none;
    cursor: pointer;
    padding: 0 0;
    font-size: 17px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin-right: 0;
    border-top-width: 10px;
    border-bottom-width: 0;
    width: 160px;
    color: #777;
    height: 40px;
}

    /* Change background color of buttons on hover */
    .tablinks:hover {
        color: #777;
        font-weight: bold;
    }

    /* Create an active/current tablink class */
    .tablinks.active {
        /*  background-color: #ccc;*/
        background-color: #fff;
        font-weight: bold;
        border: 1px solid #2196F3;
        border-top-style: solid;
        border-top-color: #2196F3;
        border-top-width: 10px;
        border-bottom: 1px solid #fff;
    }

/*---------------------------- Rate Result ---------------------*/

#rating_bar {
    width: 100px;
    height: 100px;
    display: inline-block;
    display: inline;
}

/*-------------------------------------------  ----------------*/
#scrollBtn {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    /*background-color: rgba(226,226,226,.4);*/
    background-color: transparent;
    color: #66adeb;
    cursor: pointer;
    padding: 10px;
    width: 50px;
    border-radius: 10px;
    border: 1px solid #66adeb;
    /*box-shadow: var(--shadow);*/
    transition: all ease 1s;
}

    #scrollBtn:hover {
        background-color: #66adeb;
        color: #fff;
    }

.counter-area {
    color: #ccc;
}


.alert-message {
    color: #66adeb;
}

/* popup alert css*/


#AlertDiv, #ConfirmDv {
    /*margin: 70px auto;*/

    padding: 20px;
    background: #fff;
    border-radius: 5px;
    /* width: 30%;*/
    /*max-width: 600px;*/
    max-height: auto;
    z-index: 1000;
}

.alert-position {
    margin: auto;
    margin-bottom: 10px;
    /* padding: 20px 12px; */
    width: 55%;
    text-align: left;
}

.closebtn {
    /*position: absolute;*/
    /*top: 0px;*/
    /*right: 5px;*/
    /* transition: all 200ms;*/
    font-size: 25px;
    /* font-weight: bold;*/
    text-decoration: none;
    color: #777;
    width: 30px;
    height: 30px;
    /*background: lightgray;*/
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

    .closebtn:hover {
        background-color: transparent;
        /*border: 1px solid #777;*/
        /*font-size: 26px;*/
        color: #333;
    }


pre {
    white-space: pre-wrap;
}

/*---------- Alert Modal Popeup------------------------------------------------------------------------*/
.overlay, .overlay2, .overlay3, .overlay4 {
    z-index: 1000;
    position:fixed;
    top: 0;
    padding-top: 100px;
    padding-left: 10px;
    padding-right: 10px;
   /* justify-content: center;*/
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.2);
    /* transition: opacity 500ms;*/
    visibility: hidden;
    opacity: 1;
/*    box-shadow: var(--shadow);*/
}

/*-------------- Qur'aan*/
.Quranmemorizer {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 5px;
    align-items: center;
    justify-content: left;
    padding: 10px;
    width: 100%;
    background: url(/img/podcast-2.jpg) no-repeat;
    background-size: cover;
    height: 230px;
}

.btnPlay {
    padding: 5px 5px 5px 5px;
    margin: 5px 2px 5px 2px;
    background-color: #1b9bff; /*rgb(156, 156, 156);*/
    max-width: 50px;
    min-width: 50px;
    border-radius: 5px;
    border-style: none;
    outline: none;
    text-transform: uppercase;
    color: var(--light);
    cursor: pointer;
    box-shadow: var(--shadow);
    width: 8px;
}

    .btnPlay:hover {
        background-color: #1b9bff; /*rgb(156, 156, 156); #78c3fe; */
        /*box-shadow: var(--shadow);*/
        color: darkgrey;
    }

input[type=number]::-webkit-inner-spin-button {
    opacity: 1
}

.ddlMemorize {
    /*width: auto !important;*/
    white-space: nowrap;
}

.inputQur {
    width: 60px;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ddlQur {
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    /*white-space: nowrap;*/
}

select {
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;

}

.FooterContent {
    text-decoration: none;
    color: white;
    padding: 10px;
    line-height: 25px;
}

.QuranFooter {
    width: 100%;
    background: url(../images/QuranBanner.jpg) no-repeat;
    background-size: cover;
    height: 200px;
}

.FooterLinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: white;
    font-size: 13px;
    text-align: left;
    padding-left: 10px;
    margin-right: 10px;
    margin: auto
}

.BooksList {
    width: 60%;
}

/*-------   Free Content ------------------*/
.FreeContentDv {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 90%;

}
/*----------------------------------------------------------------------------------*/
@media(max-width: 860px) {
    .row {
        flex-direction: column;
        
    }

    .testimonial-row {
        grid-template-columns: repeat(2,minmax(300px, 1fr));
    }

    .features {
        flex-basis: 100%;
    }

    .features-img {
        flex-basis: 100%;
    }

    .alert-position {
        width: 80%;
    }

    .trial-button {
        /*flex-direction: column;*/
        grid-template-columns: 1fr;
    }

    .heroH1Content {
        flex-direction: column;
    }
        .cards {

        grid-template-columns: repeat(2,minmax(300px, 1fr));
    }

    .levels {
        width: 90%;
    }

    .testimonials {
        width: 90%;
    }

    .FreeContentDv {
        flex-direction: column;
        margin: 10px;
    }

    }


@media(max-width: 800px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        margin-left: 5px;
    }

    .row {
        flex-direction: column;
        /*grid-template-columns: repeat(2,minmax(300px, 1fr));*/
    }

    .testimonial-row {
        grid-template-columns: repeat(1,minmax(300px, 1fr));
    }

    .features {
        flex-basis: 100%;
    }

    .features-img {
        flex-basis: 100%;
    }

    .sign {
        margin-top: 0px;
    }

    .sign-col {
        width: 80%;
    }

    .tablinks {
        width: 120px;
    }

    .text-box h1 {
        font-size: 24px;
    }


        .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #66adeb;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa-menu {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    nav .fa-menu-black {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;
    }


    .levels-col {
        flex-basis: 50%;
    }

    .benefit {
        flex-basis: 100%;
    }

    .cards {
        grid-template-columns: repeat(2,minmax(200px, 1fr));
    }

    .testimonial {
        grid-template-columns: repeat(2,minmax(200px, 1fr));
    }
}


@media(max-width: 600px) {

    .cards {
        grid-template-columns: repeat(1,minmax(200px, 1fr));
    }


    .testimonial {
        grid-template-columns: repeat(1,minmax(200px, 1fr));
    }

    .Quranmemorizer {
        grid-template-columns: 100%;
        height: 400px;
        background: url(/img/podcast-2.jpg) top no-repeat;
        width: 600px;
    }

    .ddlMemorize {
        width: 98%;
    }
}



    /*@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}*/


    /*---------------------------------- cart ----------------*/
    .cart-info {
        display: flex;
        flex-wrap: wrap;
        text-align: left;
    }

    /*table {
    width: 70%;
    border-collapse: collapse;
}*/

    .table-products {
        width: 70%;
        border-collapse: collapse;
    }

    .table-totals {
        border-collapse: collapse;
    }

    th {
        text-align: left;
        padding: 5px;
        color: #fff;
        background-color: #66adeb;
        font-weight: normal;
    }

    td {
        padding: 2px 10px;
    }

        td a {
            color: #ff523b;
            font-size: 12px;
            text-decoration: none;
        }

        td:last-child {
            text-align: right;
        }

    th:last-child {
        text-align: right;
    }

    .total-price {
        display: flex;
        justify-content: flex-end;
        width: 70%;
        margin-bottom: 40px;
    }

        .total-price table {
            border-top: 3px solid #66adeb;
            border-bottom: 3px solid #66adeb;
            border-right: 1px solid #ccc;
            border-left: 1px solid #ccc;
            max-width: 300px;
        }

        .total-price td:first-child {
            text-align: right;
        }


    .menu-item {
        color: #777;
    }

    nav .nav-bg {
        background-image: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4)), url(../images/madinah3.jpeg);
        background-position: center;
        background-size: cover;
    }

    .link-button {
        color: rgb(249, 100, 100);
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    .cart-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        margin: auto;
        width: 80%;
    }

    @media(max-width: 700px) {

        .menu-item {
            color: #fff;
        }

        .cart-content {
            grid-template-columns: 1fr;
        }

        .total-price {
            margin-top: 20px;
        }

        .BooksList {
            width: 100%;
        }
    }



    /*------------------------------ Loading -----------------------------------*/
