/********** Template CSS **********/


/* font-family Cairo arabic */

*:not(i) {
    font-family: "Almarai";
}


/* arabic */

@font-face {
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../font/almarai/tsstApxBaigK_hnnQ1iFow.woff2) format('woff2');
    unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC, U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/*/ font-family Cairo arabic /*/

 :root {
    --primary: #ffd001;
    --light: #FFF;
    --dark: #0F172B;
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/

.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 15px;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffd001 !important;
}

.navbar-dark .navbar-brand img {
    max-height: 110px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }
    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }
    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }
    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: var(--dark) !important;
    }
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 15px;
    font-size: 15px;
    color: var(--dark) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #ffd001 !important;
}

.navbar-light .navbar-brand img {
    max-height: 110px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
    }
    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }
    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: var(--light) !important;
    }
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--light) !important;
    }
}


/*** Section Title ***/

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/

.service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    background-color: var(--light);
    background-clip: border-box;
    border: 0px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.service-item::after {
    content: "";
    position: absolute;
    z-index: -1;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.9);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    bottom: 0px;
    left: 10%;
    right: 10%;
    width: 80%;
    height: 10%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

.col-lg-3 a {
    text-decoration: none;
}

.service-item img {
    height: max-content;
}

.maincard {
    position: relative;
    width: 100%;
    height: 300px
}

.thecard {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}

.thefront {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: hidden;
    background: #008a50;
    color: rgb(255, 255, 255);
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #eee;
    box-shadow: 5px 6px 6px 2px #e9ecef;
    padding: 10px
}

.theback {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: hidden;
    background: #009b00;
    color: #fff;
    border-radius: 10px;
    transform: rotateY(180deg);
    border: 1px solid #eee;
    box-shadow: 5px 6px 6px 2px #e9ecef;
    padding: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.theback a {
    color: #000000;
    text-decoration: none;
}

.user_name {
    color: #eee;
    font-size: 10px;
    margin-top: 0px
}

.about {
    font-size: 12px
}


/*** Footer  AhmedFarouk ***/

.bgfooter {
    background: var(--dark) !important;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    margin-right: calc(-.5 * var(--bs-gutter-x));
}

.bgheader {
    background: var(--dark) !important;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    padding-right: 10%;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    margin-right: calc(-.5 * var(--bs-gutter-x));
}


/* Carousel base class */

.carousel {
    margin-bottom: 4rem;
}


/* Since positioning the image, we need to help out the caption */

.carousel-caption {
    bottom: 3rem;
    z-index: 10;
}


/* Declare heights because of positioning of img element */

.carousel-item {
    height: auto;
}

.carousel-item>img {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
}

.carousel-control-next-icon-text,
.carousel-control-prev-icon-text {
    display: inline-block;
    width: 5rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    background-color: #ffd001;
    align-self: center;
}


/*scrollbar*/

.scrollbar-success::-webkit-scrollbar-track {
    background-color: #F5F5F5;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.scrollbar-success::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-success::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ffd001;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.shadow-box-img-bg {
    width: 100%;
    padding-bottom: 5px;
    background: #fff;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.shadow-box-img {
    position: relative;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 0px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 0 0px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 0 0px rgba(0, 0, 0, 0.3);
}

.shadow-box-img::after {
    background-color: transparent!important;
    content: "";
    position: absolute;
    z-index: -1;
    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.9);
    -webkit-box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.9);
    -ms-box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.9);
    -o-box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.9);
    bottom: 0px;
    left: 10%;
    right: 10%;
    width: 80%;
    height: 50%;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.shadow-box-line-bg {
    width: 100%;
    padding-bottom: 2px;
    background-color: var(--light);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.shadow-box-line {
    position: relative;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}

.shadow-box-line::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.0);
    position: absolute;
    z-index: -1;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.9);
    -webkit-box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.9);
    -ms-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.9);
    -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.9);
    bottom: 0px;
    left: 10%;
    right: 10%;
    width: 70%;
    height: 1%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.CR {
    margin-right: auto;
    margin-left: auto;
    width: 90%;
}

.CR:hover {
    transform: scale(1.2);
    /*(150%zoom-Note: if the zoom is too large, it will go outside of the viewport) */
    ;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}


audio::-webkit-media-controls-panel {
  background-color: transparent;

}

audio::-webkit-media-controls-time-remaining-display {
  color: #000;
}
