/**
*/

:root {
    /* Fonts */
    --font-default: 'Droid Arabic Kufi', Consolas, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: 'Droid Arabic Kufi', Consolas;
    --font-secondary: Consolas,'Droid Arabic Kufi';
    --font-arabic: 'Droid Arabic Kufi', Consolas;
    --font-english: Consolas,'Droid Arabic Kufi';
    --font-size-default: 1.3rem;
    --font-size-large: 1.2rem;
    --font-size-small: 1rem;
    --font-size-extra-large: 2rem;
    --font-size-extra-small: .8rem;
    --font-size-h2: 2rem;
    /* Colors */
    /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */
    /* Default text color */
    --color-default: #1a1f24;
    --color-default-rgb: 26, 31, 36;
    /* Defult links color */
    --color-links: #9A7350; /*#d1c59d*/
    ;
    --color-links-hover: #cfb26b;
    /* Primay colors */
    --color-primary: #9A7350; /*#d1c59d*/
    ;
    --color-primary-light: #f2f0eb;
    --color-primary-dark: #cfb26b;
    --color-primary-soft: #cfb26b21;
    --color-primary-soft-dark: #201d1d4a;
    --color-primary-rgb: 14, 162, 189;
    --color-primary-light-rgb: 30, 195, 224;
    --color-primary-dark-rgb: 1, 137, 161;
    /* Secondary colors */
    --color-secondary: #485664;
    --color-secondary-light: #8f9fae;
    --color-secondary-dark: #3a4753;
    --color-secondary-rgb: 72, 86, 100;
    --color-secondary-light-rgb: 143, 159, 174;
    --color-secondary-dark-rgb: 58, 71, 83;
    /* Title colors */
    --color-title: #9A7350; /*#d1c59d*/
    --color-title-light: #f2f0eb;
    --color-title-dark: #cfb26b;
    --color-title-rgb: 72, 86, 100;
    --color-title-light-rgb: 143, 159, 174;
    --color-title-dark-rgb: 58, 71, 83;
    /* General colors */
    --color-blue: #0d6efd;
    --color-blue-rgb: 13, 110, 253;
    --color-white-for-dark-theme: white; /*#aaaaaa;*/
    --color-white-for-dark-theme-rgb: 255, 255, 255;
    --color-indigo: #6610f2;
    --color-indigo-rgb: 102, 16, 242;
    --color-purple: #6f42c1;
    --color-purple-rgb: 111, 66, 193;
    --color-pink: #f3268c;
    --color-pink-rgb: 243, 38, 140;
    --color-red: #df1529;
    --color-red-rgb: 223, 21, 4;
    --color-orange: #fd7e14;
    --color-orange-rgb: 253, 126, 20;
    --color-yellow: #ffc107;
    --color-yellow-rgb: 255, 193, 7;
    --color-green: #059652;
    --color-green-rgb: 5, 150, 82;
    --color-teal: #20c997;
    --color-teal-rgb: 32, 201, 151;
    --color-cyan: #0dcaf0;
    --color-cyan-rgb: 13, 202, 240;
    --color-white: #ffffff;
    --color-white-rgb: 255, 255, 255;
    --color-gray: #6c757d;
    --color-gray-rgb: 108, 117, 125;
    --color-black: #000000;
    --color-black-rgb: 0, 0, 0;
    --color-link-dark: #FEF104; /*#d1c59d*/
}

/*--------------------------------------------------------------
# 2. Override default Bootstrap variables
--------------------------------------------------------------*/
:root {

  --bs-blue: var(--color-blue);
  --bs-indigo: var(--color-indigo);
  --bs-purple: var(--color-purple);
  --bs-pink: var(--color-pink);
  --bs-red: var(--color-red);
  --bs-orange: var(--color-orange);
  --bs-yellow: var(--color-yellow);
  --bs-green: var(--color-green);
  --bs-teal: var(--color-teal);
  --bs-cyan: var(--color-cyan);
  --bs-white: var(--color-white);
  --bs-gray: var(--color-gray);
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: var(--color-blue);
  --bs-secondary: var(--color-blue);
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: var(--color-primary-rgb);
  --bs-secondary-rgb: var(--color-secondary-rgb);
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: var(--color-white-rgb);
  --bs-black-rgb: var(--color-black-rgb);
  --bs-body-color-rgb: var(--color-default-rgb);
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: var(--font-default);
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--font-default);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: var(--color-default);
  --bs-body-bg: #fff;

}

/*--------------------------------------------------------------
# 3. Set color and background class names
--------------------------------------------------------------*/
/* Fonts */
.font-default { font-family: var(--font-default) !important; }
.font-primary { font-family: var(--font-primary) !important;}
.font-secondary { font-family: var(--font-secondary) !important; }

/* Text Colors */
.color-default { color: var(--color-default) !important; }
.color-links { color: var(--color-links) !important; }
.color-links:hover { color: var(--color-links-hover) !important; }
.color-primary { color: var(--color-primary) !important; }
.color-primary-light { color: var(--color-primary-light) !important; }
.color-primary-dark { color: var(--color-primary-dark) !important; }
.color-secondary { color: var(--color-secondary) !important; }
.color-secondary-light { color: var(--color-secondary-light) !important; }
.color-secondary-dark { color: var(--color-secondary-dark) !important; }
.color-blue { color: var(--color-blue) !important; }
.color-indigo { color: var(--color-indigo) !important; }
.color-purple { color: var(--color-purple) !important; }
.color-pink { color: var(--color-pink) !important; }
.color-red { color: var(--color-red) !important; }
.color-orange { color: var(--color-orange) !important; }
.color-yellow { color: var(--color-yellow) !important; }
.color-green { color: var(--color-green) !important; }
.color-teal { color: var(--color-teal) !important; }
.color-cyan { color: var(--color-cyan) !important; }
.color-white { color: var(--color-white) !important; }
.color-gray { color: var(--color-gray) !important; }
.color-black { color: var(--color-black) !important; }

/* Background Colors */
.bg-default { background-color: var(--color-default) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.bg-primary-light { background-color: var(--color-primary-light) !important; }
.bg-primary-dark { background-color: var(--color-primary-dark) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-secondary-light { background-color: var(--color-secondary-light) !important; }
.bg-secondary-dark { background-color: var(--color-secondary-dark) !important; }
.bg-blue { background-color: var(--color-blue) !important; }
.bg-indigo { background-color: var(--color-indigo) !important; }
.bg-purple { background-color: var(--color-purple) !important; }
.bg-pink { background-color: var(--color-pink) !important; }
.bg-red { background-color: var(--color-red) !important; }
.bg-orange { background-color: var(--color-orange) !important; }
.bg-yellow { background-color: var(--color-yellow) !important; }
.bg-green { background-color: var(--color-green) !important; }
.bg-teal { background-color: var(--color-teal) !important; }
.bg-cyan { background-color: var(--color-cyan) !important; }
.bg-white { background-color: var(--color-white) !important; }
.bg-gray { background-color: var(--color-gray) !important; }
.bg-black { background-color: var(--color-black) !important; }

/*!
 * Dark Mode Switch v1.0.1 (https://github.com/coliff/dark-mode-switch)
 * Copyright 2021 C.Oliff
 * Licensed under MIT (https://github.com/coliff/dark-mode-switch/blob/main/LICENSE)
 */

[data-theme="dark"] .blog .entry .entry-title a, [data-theme="dark"] .recent-posts .post-box .post-title, .title-mil-unit .title-color {
    /*color: #FEF104;*/
}
[data-theme="dark"] {
    /*background-color: #111 !important;*/
    background-color: #2A2727 !important;
    color: #eee;
}

    [data-theme="dark"] .bg-black {
        background-color: #fff !important;
    }

    [data-theme="dark"] .bg-dark {
        background-color: #eee !important;
    }

    [data-theme="dark"] .bg-light {
        background-color: #222 !important;
    }

    [data-theme="dark"] .bg-white {
        background-color: #000 !important;
    }

[data-theme="dark"] {
    background-color: #2A2727 !important;
    /*background-color: #111 !important;*/
    color: #eee;
}



    [data-theme="dark"] body {
        background: #0c0b09;
        color: var(--color-white-for-dark-theme);
    }

    [data-theme="dark"] a {
        color: var(--color-link-dark);
    }

        [data-theme="dark"] a:hover {
            color: #d9ba85;
        }

    [data-theme="dark"] .btn-home-showall {
        background: #0c0b09;
        color: var(--color-white-for-dark-theme);
    }

    [data-theme="dark"] .recent-posts .post-box p {
        margin: 15px 0 0 0;
        color: var(--color-white-for-dark-theme);
    }
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
    [data-theme="dark"] #preloader {
        background: #1a1814;
    }

        [data-theme="dark"] #preloader:before {
            border-top-color: #cda45e;
            border-bottom-color: #cda45e;
        }


    /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
    [data-theme="dark"] .back-to-top {
        border: 2px solid #cda45e;
    }

        [data-theme="dark"] .back-to-top i {
            color: var(--color-white);
        }

        [data-theme="dark"] .back-to-top:hover {
            background: #cda45e;
            color: #1a1814;
        }

            [data-theme="dark"] .back-to-top:hover i {
                color: #444444;
            }





/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/


#topbar [data-theme="dark"] .contact-info i {
    color: #d9ba85;
}

    #topbar [data-theme="dark"] .contact-info i span {
        color: var(--color-white-for-dark-theme);
    }

#topbar [data-theme="dark"] .languages ul {
    color: #cda45e;
}

    #topbar [data-theme="dark"] .languages ul a {
        color: var(--color-white-for-dark-theme);
    }



    #topbar [data-theme="dark"] .languages ul li + li::before {
        color: rgba(255, 255, 255, 0.5);
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
[data-theme="dark"] #header {
    background: #1B1A1A;
    /*background: rgba(0, 0, 0, 0.85);*/
}

    [data-theme="dark"] #header.header-scrolled {
        background: rgba(0, 0, 0, 0.85);
    }

    [data-theme="dark"] #header [data-theme="dark"] .logo a {
        color: var(--color-white-for-dark-theme);
    }


/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
[data-theme="dark"] .book-a-table-btn {
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] .book-a-table-btn:hover {
        background: #cda45e;
        color: var(--color-white-for-dark-theme);
    }


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/


[data-theme="dark"] .navbar a,
[data-theme="dark"] .navbar a:focus {
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] .navbar a:hover,
    [data-theme="dark"] .navbar [data-theme="dark"] .active,
    [data-theme="dark"] .navbar [data-theme="dark"] .active:focus,
    [data-theme="dark"] .navbar li:hover > a {
        color: #d9ba85;
    }

[data-theme="dark"] .navbar [data-theme="dark"] .dropdown ul {
    background: #fff;
}



    [data-theme="dark"] .navbar [data-theme="dark"] .dropdown ul a {
        color: #444444;
    }


        [data-theme="dark"] .navbar [data-theme="dark"] .dropdown ul a:hover,
        [data-theme="dark"] .navbar [data-theme="dark"] .dropdown ul [data-theme="dark"] .active:hover,
        [data-theme="dark"] .navbar [data-theme="dark"] .dropdown ul li:hover > a {
            color: #cda45e;
        }


/**
* Mobile Navigation 
*/
[data-theme="dark"] .mobile-nav-toggle {
    color: var(--color-white-for-dark-theme);
}

[data-theme="dark"] .navbar-mobile {
    background: rgba(0, 0, 0, 0.9);
}


    [data-theme="dark"] .navbar-mobile ul {
        background-color: var(--color-white-for-dark-theme);
    }

    [data-theme="dark"] .navbar-mobile a,
    [data-theme="dark"] .navbar-mobile a:focus {
        color: #1a1814;
    }

        [data-theme="dark"] .navbar-mobile a:hover,
        [data-theme="dark"] .navbar-mobile [data-theme="dark"] .active,
        [data-theme="dark"] .navbar-mobile li:hover > a {
            color: #cda45e;
        }

    [data-theme="dark"] .navbar-mobile [data-theme="dark"] .dropdown ul {
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        [data-theme="dark"] .navbar-mobile [data-theme="dark"] .dropdown ul a:hover,
        [data-theme="dark"] .navbar-mobile [data-theme="dark"] .dropdown ul [data-theme="dark"] .active:hover,
        [data-theme="dark"] .navbar-mobile [data-theme="dark"] .dropdown ul li:hover > a {
            color: #cda45e;
        }



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


[data-theme="dark"] #hero:before {
    background: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] #hero h1 {
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] #hero h1 span {
        color: #cda45e;
    }

[data-theme="dark"] #hero h2 {
    color: #eee;
}

[data-theme="dark"] #hero.btn-menu,
[data-theme="dark"] #hero.btn-book {
    color: var(--color-white-for-dark-theme);
    border: 2px solid #cda45e;
}

    [data-theme="dark"] #hero.btn-menu:hover,
    [data-theme="dark"] #hero.btn-book:hover {
        background: #cda45e;
        color: var(--color-white-for-dark-theme);
    }


[data-theme="dark"] #hero.play-btn {
    background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
}



    [data-theme="dark"] #hero.play-btn::before {
        background: rgba(198, 16, 0, 0);
    }





/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/


[data-theme="dark"] .section-bg {
    background-color: #1a1814;
}



[data-theme="dark"] .section-title h2 {
    color: #aaaaaa;
}

    [data-theme="dark"] .section-title h2::after {
        background: rgba(255, 255, 255, 0.2);
    }

[data-theme="dark"] .section-title p {
    color: #cda45e;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
[data-theme="dark"] .breadcrumbs {
    background: #1d1b16;
}





    [data-theme="dark"] .breadcrumbs ol li + li::before {
        color: #37332a;
    }


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

[data-theme="dark"] .about:before {
    background: rgba(0, 0, 0, 0.8);
}


[data-theme="dark"] .about [data-theme="dark"] .content ul i {
    color: #cda45e;
}





/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
[data-theme="dark"] .why-us [data-theme="dark"] .box {
    background: #1a1814;
}

    [data-theme="dark"] .why-us [data-theme="dark"] .box span {
        color: #cda45e;
    }

    [data-theme="dark"] .why-us [data-theme="dark"] .box h4 {
        color: rgba(255, 255, 255, 0.8);
    }

    [data-theme="dark"] .why-us [data-theme="dark"] .box p {
        color: #aaaaaa;
    }

    [data-theme="dark"] .why-us [data-theme="dark"] .box:hover {
        background: #cda45e;
    }

        [data-theme="dark"] .why-us [data-theme="dark"] .box:hover span,
        [data-theme="dark"] .why-us [data-theme="dark"] .box:hover h4,
        [data-theme="dark"] .why-us [data-theme="dark"] .box:hover p {
            color: var(--color-white-for-dark-theme);
        }

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/


[data-theme="dark"] .menu #menu-flters li {
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] .menu #menu-flters li:hover,
    [data-theme="dark"] .menu #menu-flters li.filter-active {
        color: #cda45e;
    }

    [data-theme="dark"] .menu #menu-flters li:last-child {
        margin-right: 0;
    }

[data-theme="dark"] .menu [data-theme="dark"] .menu-item {
    margin-top: 50px;
}



[data-theme="dark"] .menu [data-theme="dark"] .menu-content::after {
    color: #bab3a6;
}

[data-theme="dark"] .menu [data-theme="dark"] .menu-content a {
    background: #1a1814;
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] .menu [data-theme="dark"] .menu-content a:hover {
        color: #cda45e;
    }

[data-theme="dark"] .menu [data-theme="dark"] .menu-content span {
    background: #1a1814;
    color: #cda45e;
}

[data-theme="dark"] .menu [data-theme="dark"] .menu-ingredients {
    color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/




[data-theme="dark"] .specials [data-theme="dark"] .nav-link {
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] .specials [data-theme="dark"] .nav-link:hover {
        color: #cda45e;
    }

    [data-theme="dark"] .specials [data-theme="dark"] .nav-link.active {
        color: #1a1814;
    }

    [data-theme="dark"] .specials [data-theme="dark"] .nav-link:hover {
        border-color: #cda45e;
    }



[data-theme="dark"] .specials [data-theme="dark"] .details h3 {
    color: var(--color-white-for-dark-theme);
}

[data-theme="dark"] .specials [data-theme="dark"] .details p {
    color: #aaaaaa;
}





/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/

[data-theme="dark"] .events::before {
    background-color: rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .events [data-theme="dark"] .section-title h2 {
    color: var(--color-white-for-dark-theme);
}





[data-theme="dark"] .events [data-theme="dark"] .events-carousel {
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .events [data-theme="dark"] .event-item {
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] .events [data-theme="dark"] .event-item h3 {
        color: #cda45e;
    }




    [data-theme="dark"] .events [data-theme="dark"] .event-item ul i {
        color: #cda45e;
    }





[data-theme="dark"] .events [data-theme="dark"] .swiper-pagination [data-theme="dark"] .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .events [data-theme="dark"] .swiper-pagination [data-theme="dark"] .swiper-pagination-bullet-active {
    background-color: #cda45e;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/



[data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form [data-theme="dark"] .validate {
    color: red;
}

[data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form [data-theme="dark"] .error-message {
    color: var(--color-white-for-dark-theme);
    background: #ed3c0d;
}

    [data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form [data-theme="dark"] .error-message br + br {
        margin-top: 25px;
    }

[data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form [data-theme="dark"] .sent-message {
    color: var(--color-white-for-dark-theme);
    background: #18d26e;
}




[data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form input,
[data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form textarea {
    background: #0c0b09;
    border-color: #625b4b;
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form input::-moz-placeholder,
    [data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form textarea::-moz-placeholder {
        color: #a49b89;
    }

    [data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form input::placeholder,
    [data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form textarea::placeholder {
        color: #a49b89;
    }

    [data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form input:focus,
    [data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form textarea:focus {
        border-color: #cda45e;
    }




[data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form button[type=submit] {
    background: #cda45e;
    color: var(--color-white-for-dark-theme);
    transition: 0.4s;
    border-radius: 50px;
}

    [data-theme="dark"] .book-a-table [data-theme="dark"] .php-email-form button[type=submit]:hover {
        background: #d3af71;
    }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/









[data-theme="dark"] .testimonials [data-theme="dark"] .testimonial-item h3 {
    color: var(--color-white-for-dark-theme);
}

[data-theme="dark"] .testimonials [data-theme="dark"] .testimonial-item h4 {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .testimonials [data-theme="dark"] .testimonial-item [data-theme="dark"] .quote-icon-left,
[data-theme="dark"] .testimonials [data-theme="dark"] .testimonial-item [data-theme="dark"] .quote-icon-right {
    color: #d3af71;
}


[data-theme="dark"] .testimonials [data-theme="dark"] .testimonial-item p {
    background: #26231d;
}





[data-theme="dark"] .testimonials [data-theme="dark"] .swiper-pagination [data-theme="dark"] .swiper-pagination-bullet-active {
    background-color: #cda45e;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
[data-theme="dark"] .chefs [data-theme="dark"] .member {
    background: #343a40;
}

    [data-theme="dark"] .chefs [data-theme="dark"] .member [data-theme="dark"] .member-info-content h4 {
        color: var(--color-white-for-dark-theme);
    }

    [data-theme="dark"] .chefs [data-theme="dark"] .member [data-theme="dark"] .member-info-content span {
        color: var(--color-white-for-dark-theme);
    }


    [data-theme="dark"] .chefs [data-theme="dark"] .member [data-theme="dark"] .social a {
        color: var(--color-white-for-dark-theme);
    }

        [data-theme="dark"] .chefs [data-theme="dark"] .member [data-theme="dark"] .social a:hover {
            color: #cda45e;
        }



    [data-theme="dark"] .chefs [data-theme="dark"] .member:hover [data-theme="dark"] .member-info {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
    }


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/


[data-theme="dark"] .contact [data-theme="dark"] .info i {
    background: #cda45e;
}

[data-theme="dark"] .contact [data-theme="dark"] .info p {
    color: #bab3a6;
}




[data-theme="dark"] .contact [data-theme="dark"] .php-email-form [data-theme="dark"] .validate {
    color: red;
}

[data-theme="dark"] .contact [data-theme="dark"] .php-email-form [data-theme="dark"] .error-message {
    color: var(--color-white-for-dark-theme);
    background: #ed3c0d;
}

[data-theme="dark"] .contact [data-theme="dark"] .php-email-form [data-theme="dark"] .sent-message {
    color: var(--color-white-for-dark-theme);
    background: #18d26e;
}

[data-theme="dark"] .contact [data-theme="dark"] .php-email-form [data-theme="dark"] .loading:before {
    border: 3px solid #cda45e;
    border-top-color: #1a1814;
}

[data-theme="dark"] .contact [data-theme="dark"] .php-email-form input,
[data-theme="dark"] .contact [data-theme="dark"] .php-email-form textarea {
    background: #0c0b09;
    border-color: #625b4b;
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] .contact [data-theme="dark"] .php-email-form input::-moz-placeholder,
    [data-theme="dark"] .contact [data-theme="dark"] .php-email-form textarea::-moz-placeholder {
        color: #a49b89;
    }


    [data-theme="dark"] .contact [data-theme="dark"] .php-email-form input::placeholder,
    [data-theme="dark"] .contact [data-theme="dark"] .php-email-form textarea::placeholder {
        color: #a49b89;
    }

    [data-theme="dark"] .contact [data-theme="dark"] .php-email-form input:focus,
    [data-theme="dark"] .contact [data-theme="dark"] .php-email-form textarea:focus {
        border-color: #cda45e;
    }



[data-theme="dark"] .contact [data-theme="dark"] .php-email-form button[type=submit] {
    background: #cda45e;
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] .contact [data-theme="dark"] .php-email-form button[type=submit]:hover {
        background: #d3af71;
    }


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
[data-theme="dark"] #footer {
    background: #1B1A1A;
    /*background: black;*/
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] #footer [data-theme="dark"] .footer-top {
        /*background: #0c0b09;*/
    }

        [data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .footer-info {
            margin-bottom: 30px;
        }



            [data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .footer-info p {
                color: var(--color-white-for-dark-theme);
            }

        [data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .social-links a {
            background: #28251f;
            color: var(--color-white-for-dark-theme);
        }

            [data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .social-links a:hover {
                background: #cda45e;
                color: var(--color-white-for-dark-theme);
            }

        [data-theme="dark"] #footer [data-theme="dark"] .footer-top h4 {
            color: var(--color-white-for-dark-theme);
        }



        [data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .footer-links ul i {
            color: #cda45e;
        }



        [data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .footer-links ul a {
            color: var(--color-white-for-dark-theme);
        }

            [data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .footer-links ul a:hover {
                color: #cda45e;
            }

        [data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .footer-newsletter form {
            background: #28251f;
        }

            [data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .footer-newsletter form input[type=email] {
                background: #28251f;
                color: var(--color-white-for-dark-theme);
            }

[data-theme="dark"] [data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .footer-newsletter form input[type=submit] {
    background: #cda45e;
    color: var(--color-white-for-dark-theme);
}

[data-theme="dark"] #footer [data-theme="dark"] .footer-top [data-theme="dark"] .footer-newsletter form input[type=submit]:hover {
    background: #d3af71;
}

[data-theme="dark"] #footer .footer-top .footer-info, [data-theme="dark"] #footer .footer-top .social-links a {
    margin-bottom: 15px;
    background: #2a27277d; /*var(--color-primary-soft-dark)*/;
    color: var(--color-white-for-dark-theme);
}

    [data-theme="dark"] #footer [data-theme="dark"] .credits {
    color: var(--color-white-for-dark-theme);
}
[data-theme="dark"] .single-line-link > li > a {
    color: var(--color-white-for-dark-theme);
}
[data-theme="dark"] .icon-boxes .icon-box {
    background: #030303a6;
}

[data-theme="dark"] .icon-box>.title> a {
    color: var(--color-white-for-dark-theme);
}
[data-theme="dark"]  #footer .copyright {
    /*border-top: 1px solid var(--color-white-for-dark-theme);*/
}
[data-theme="dark"] .single-line-link > li > a:hover {
    color: var(--color-primary);
}
[data-theme="dark"] .entry-content {
    color: var(--color-white-for-dark-theme);
}
[data-theme="dark"] .blog .sidebar .recent-posts h4 a {
    color: var(--color-primary);
}
[data-theme="dark"] .blog .sidebar .sidebar-title {
    color: var(--color-primary-dark);
}
[data-theme="dark"] .blog .entry .entry-footer a {
    color: var(--color-primary-dark);
}
[data-theme="dark"] .aboutarmytext {
    background-color: #1B1A1A;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 10px;
    color: #aaaaaa;
}
[data-theme="dark"] .label-tbl-head {
    color: var(--color-primary-dark);
    text-align:center !important;
}
[data-theme="dark"] .CourseTitle, [data-theme="dark"] .coursedesc {
    color: var(--color-white-for-dark-theme) !important;
}
[data-theme="dark"] .ul-rejoin-content > li {
    color: #495057 !important;
}

/**
* Template Name: Bootslander - v4.8.1
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: #444444;
}

a {
    color: var( --color-links);
    text-decoration: none;
}

    a:hover {
        color: var(--color-links-hover);
        text-decoration: none;
    }


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--color-primary-dark);
    padding:10px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }


    .back-to-top1 i {
        font-size: 49px;
        color: #fff;
        line-height: 0;
    }



    .back-to-top:hover {
        background: var(--color-primary-soft);
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid var(--color-primary);
        border-top-color: var(--color-primary-dark);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #545454;
    padding: 10px 0;
    font-size: var(--font-size-default);
}

    #topbar .contact-info i {
        font-style: normal;
        color: var(--color-default);
    }

        #topbar .contact-info i a,
        #topbar .contact-info i span {
            padding-left: 5px;
            color: #fff;
        }

        #topbar .contact-info i a {
            line-height: 0;
            transition: 0.3s;
        }

            #topbar .contact-info i a:hover {
                color: var(--color-links-hover);
            }

    #topbar .social-links a {
        color: #bababa;
        line-height: 0;
        transition: 0.3s;
        margin-left: 10px;
    }

        #topbar .social-links a:hover {
            color: var(--color-links-hover);
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

    #header .logo h1 {
        font-size: 26px;
        padding: 0 0 0 8px;
        margin: 11px 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-left: 8px solid #e96b56;
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: var(--color-links-hover);
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 40px;
    }

.scrolled-offset {
    margin-top: 70px;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-size: var(--font-size-default);
        color: #545454;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: var(--color-links-hover);
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: #e96b56;
        padding: 8px 20px;
        margin-left: 30px;
        border-radius: 4px;
        color: #fff;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: #ec7f6d;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 24px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: var(--font-size-default);
            text-transform: none;
            color: #545454;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: var(--color-links-hover);
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #545454;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(59, 59, 59, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: var(--font-size-default);
        color: #545454;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: var(--color-links-hover);
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: var(--color-links-hover);
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 70vh;
    background-color: rgba(31, 38, 39, 0.8);
    overflow: hidden;
    position: relative;
    padding: 0;
    /*margin-top: 114px;*/
}

    #hero .carousel-item {
        width: 100%;
        height: 70vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

        #hero .carousel-item::before {
            content: "";
            background-color: rgba(0, 0, 0, 0.2);
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
        }

    #hero .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .carousel-content {
        text-align: center;
    }

    #hero h2 {
        color: #fff;
        margin-bottom: 30px;
        font-size: var(--font-size-extra-large);
        font-weight: 700;
    }

    #hero p {
        width: 80%;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #fff;
    }

    #hero .carousel-inner .carousel-item {
        transition-property: opacity;
        /*background-position: center top;*/
        background-size: cover;
    }

    #hero .carousel-inner .carousel-item,
    #hero .carousel-inner .active.carousel-item-start,
    #hero .carousel-inner .active.carousel-item-end {
        opacity: 0;
    }

    #hero .carousel-inner .active,
    #hero .carousel-inner .carousel-item-next.carousel-item-start,
    #hero .carousel-inner .carousel-item-prev.carousel-item-end {
        opacity: 1;
        transition: 0.5s;
    }

        #hero .carousel-inner .carousel-item-next,
        #hero .carousel-inner .carousel-item-prev,
        #hero .carousel-inner .active.carousel-item-start,
        #hero .carousel-inner .active.carousel-item-end {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 10%;
    }

    #hero .carousel-control-next-icon,
    #hero .carousel-control-prev-icon {
        background: none;
        font-size: 48px;
        line-height: 1;
        width: auto;
        height: auto;
    }

    #hero .carousel-indicators li {
        cursor: pointer;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 4px;
        transition: ease-in;
        opacity: 0.7;
    }

        #hero .carousel-indicators li.active {
            opacity: 1;
            background-color: #01b1d7;
        }

    #hero .btn-get-started {
        font-weight: 500;
        font-size: var(--font-size-default);
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 5px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #fff;
        background: #01b1d7;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

        #hero .btn-get-started:hover {
            background: #019cbe;
        }

@media (max-width: 768px) {
    #hero {
        height: 90vh;
    }

        #hero .carousel-item {
            height: 90vh;
        }

        #hero h2 {
            font-size: 28px;
        }
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 150vh;
    }

        #hero .carousel-item {
            height: 150vh;
        }
}

/*--------------------------------------------------------------
# Hero Section--- STATIC SLIDER
--------------------------------------------------------------*/
/*#hero {
    width: 100%;
    background: url("../../img/hero-bg.jpg");
    position: relative;
    padding: 120px 0 0 0;
}

    #hero:before {
        content: "";
        background: rgba(55, 81, 126, 0.81);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero h1 {
        margin: 0 0 20px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: rgba(255, 255, 255, 0.8);
    }

        #hero h1 span {
            color: #fff;
            border-bottom: 4px solid var(--color-primary);
        }

    #hero h2 {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 40px;
        font-size: 24px;
    }

    #hero .btn-get-started {
        font-weight: 500;
        font-size: var(--font-size-default);
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 30px;
        border-radius: 50px;
        transition: 0.5s;
        color: #fff;
        background: var(--color-primary);
    }

        #hero .btn-get-started:hover {
            background: #17b57d;
        }

    #hero .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        padding-top: 80px;
    }

        #hero .animated {
            -webkit-animation: none;
            animation: none;
        }

        #hero .hero-img {
            text-align: center;
        }

            #hero .hero-img img {
                max-width: 50%;
            }

        #hero h1 {
            font-size: 28px;
            line-height: 32px;
            margin-bottom: 10px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.hero-waves {
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}
*/
/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-boxes {
    padding-top: 0;
    position: relative;
    z-index: 100;
}

.mt-minus-100 {
    margin-top: -100px;
}

.mt-minus-20 {
    margin-top: -20px;
}

.icon-boxes .icon-box {
    padding: 18px 10px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #ffffffa6;
    box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    width: 100%;
}

.icon-boxes .icon {
    margin: 0 auto 10px auto;
    display: inline-block;
    text-align: center;
}

    .icon-boxes .icon i {
        font-size: 80px;
        line-height: 1;
        color: var(--color-primary);
    }

.icon-boxes .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: var(--font-size-large);
}

    .icon-boxes .title a {
        color: #05579e;
    }

.icon-boxes .description {
    font-size: var(--font-size-default);
    line-height: 28px;
    margin-bottom: 0;
    color: #777777;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f5ff;
}

.section-title {
    padding-bottom: 40px;
}

    .section-title h2 {
        font-size: var(--font-size-default);
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #aaaaaa;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: var(--color-primary);
            margin: 4px 10px;
        }

    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 36px;
        font-weight: 700;
        text-transform: uppercase;
        color: #010483;
    }

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #fafaff;
    min-height: 40px;
    margin-top: 80px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 64px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--font-size-default);
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #6c757d;
            content: "/";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    background: #f5f5ff;
    padding: 70px 0 60px;
}

    .counts .count-box {
        padding: 30px 30px 25px 30px;
        width: 100%;
        position: relative;
        text-align: center;
        background: #fff;
    }

        .counts .count-box i {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 20px;
            background: var(--color-primary);
            padding: 12px;
            color: #fff;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 0;
            width: 48px;
            height: 48px;
        }

        .counts .count-box span {
            font-size: 36px;
            display: block;
            font-weight: 600;
            color: #010483;
        }

        .counts .count-box p {
            padding: 0;
            margin: 0;
            font-size: var(--font-size-default);
        }

/*--------------------------------------------------------------
# Gallery - Home Page
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

    .gallery .gallery-item img {
        transition: all ease-in-out 0.4s;
    }

    .gallery .gallery-item:hover img {
        transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
    margin-bottom: 30px;
}

.gallery #gallery-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

    .gallery #gallery-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s;
    }

        .gallery #gallery-flters li:hover,
        .gallery #gallery-flters li.filter-active {
            color: #006fbe;
        }

        .gallery #gallery-flters li:last-child {
            margin-right: 0;
        }

.gallery .gallery-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(36, 50, 93, 0.6);
}

    .gallery .gallery-wrap::before {
        content: "";
        background: rgba(36, 50, 93, 0.6);
        position: absolute;
        left: 30px;
        right: 30px;
        top: 30px;
        bottom: 30px;
        transition: all ease-in-out 0.3s;
        z-index: 2;
        opacity: 0;
    }

    .gallery .gallery-wrap .gallery-info {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .gallery .gallery-wrap .gallery-info::before {
            display: block;
            content: "";
            width: 48px;
            height: 48px;
            position: absolute;
            top: 35px;
            left: 35px;
            border-top: 3px solid #fff;
            border-left: 3px solid #fff;
            transition: all 0.5s ease 0s;
            z-index: 9994;
        }

        .gallery .gallery-wrap .gallery-info::after {
            display: block;
            content: "";
            width: 48px;
            height: 48px;
            position: absolute;
            bottom: 35px;
            right: 35px;
            border-bottom: 3px solid #fff;
            border-right: 3px solid #fff;
            transition: all 0.5s ease 0s;
            z-index: 9994;
        }

        .gallery .gallery-wrap .gallery-info h4 {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
        }

        .gallery .gallery-wrap .gallery-info p {
            color: #ffffff;
            font-size: 14px;
            text-transform: uppercase;
            padding: 0;
            margin: 0;
        }

    .gallery .gallery-wrap .gallery-links {
        text-align: center;
        z-index: 4;
    }

        .gallery .gallery-wrap .gallery-links a {
            color: #fff;
            margin: 0 2px;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }

            .gallery .gallery-wrap .gallery-links a:hover {
                color: var(--color-links-hover);
            }

    .gallery .gallery-wrap:hover::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 1;
    }

    .gallery .gallery-wrap:hover .gallery-info {
        opacity: 1;
    }

        .gallery .gallery-wrap:hover .gallery-info::before {
            top: 15px;
            left: 15px;
        }

        .gallery .gallery-wrap:hover .gallery-info::after {
            bottom: 15px;
            right: 15px;
        }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding: 40px 0 0 0;
}

    .about .icon-boxes h3 {
        font-size: 28px;
        font-weight: 700;
        color: #010483;
        margin-bottom: 15px;
    }

    .about .icon-box {
        margin-top: 40px;
    }

        .about .icon-box .icon {
            float: left;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            border: 2px solid #7ceec6;
            border-radius: 50px;
            transition: 0.5s;
        }

            .about .icon-box .icon i {
                color: var(--color-primary);
                font-size: 32px;
            }

        .about .icon-box:hover .icon {
            background: var(--color-primary);
            border-color: var(--color-primary);
        }

            .about .icon-box:hover .icon i {
                color: #fff;
            }

        .about .icon-box .title {
            margin-left: 85px;
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 18px;
        }

            .about .icon-box .title a {
                color: #343a40;
                transition: 0.3s;
            }

                .about .icon-box .title a:hover {
                    color: var(--color-links-hover);
                }

        .about .icon-box .description {
            margin-left: 85px;
            line-height: 24px;
            font-size: var(--font-size-default);
        }

    .about .video-box {
        background: url("../../img/about.png") center center no-repeat;
        background-size: contain;
        min-height: 300px;
    }

    .about .play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
        border-radius: 50%;
        display: block;
        position: absolute;
        left: calc(50% - 47px);
        top: calc(50% - 47px);
        overflow: hidden;
    }

        .about .play-btn::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 100;
            transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

        .about .play-btn::before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
            -webkit-animation: pulsate-btn 2s;
            animation: pulsate-btn 2s;
            -webkit-animation-direction: forwards;
            animation-direction: forwards;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-timing-function: steps;
            animation-timing-function: steps;
            opacity: 1;
            border-radius: 50%;
            border: 5px solid rgba(63, 67, 253, 0.7);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        .about .play-btn:hover::after {
            border-left: 15px solid #3f43fd;
            transform: scale(20);
        }

        .about .play-btn:hover::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border: none;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 200;
            -webkit-animation: none;
            animation: none;
            border-radius: 0;
        }

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 0 30px;
    margin: 30px 15px;
    text-align: center;
    min-height: 350px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50%;
        border: 4px solid #fff;
        margin: 0 auto;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #111;
    }

    .testimonials .testimonial-item h4 {
        font-size: var(--font-size-default);
        color: #999;
        margin: 0;
    }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: #fedac0;
        font-size: 26px;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 0 auto 15px auto;
    }

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid #ef6603;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--color-primary);
    }


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/*.team {
    background: #fff;
}

    .team .member {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
    }

        .team .member .pic {
            border-radius: 4px;
            overflow: hidden;
        }

        .team .member img {
            transition: all ease-in-out 0.4s;
        }

        .team .member:hover img {
            transform: scale(1.1);
        }

        .team .member .member-info {
            position: absolute;
            bottom: -80px;
            left: 0px;
            right: 0px;
            background: rgba(255, 255, 255, 0.9);
            padding: 15px 0;
            border-radius: 0 0 4px 4px;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        }

        .team .member h4 {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: var(--font-size-default);
            color: #01036f;
            position: relative;
            padding-bottom: 10px;
        }

            .team .member h4::after {
                content: "";
                position: absolute;
                display: block;
                width: 50px;
                height: 1px;
                background: #0d12fc;
                bottom: 0;
                left: calc(50% - 25px);
            }

        .team .member span {
            font-style: italic;
            display: block;
            font-size: 13px;
            color: #01036f;
        }

        .team .member .social {
            margin-top: 10px;
        }

            .team .member .social a {
                transition: color 0.3s;
                color: #01036f;
            }

                .team .member .social a:hover {
                    color: var(--color-primary);
                }

            .team .member .social i {
                font-size: var(--font-size-default);
                margin: 0 2px;
            }*/


#team {
    background: #eee !important;
}
.btn-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-links-hover) !important;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-links-hover) !important;
    border-color: var(--color-primary) !important;
    box-shadow: none;
    outline: none;
}




#team .card {
    border: none;
    background: #ffffff;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
    width:100%;
    height:auto;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

    .frontside .card,
    .backside .card {
        min-height: 415px;
    }

        .backside .card a {
            font-size: 18px;
            color: #007b5e !important;
        }

        .frontside .card .card-title,
        .backside .card .card-title {
            color: #007b5e !important;
        }

/* .frontside .card .card-body img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
        }*/
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: var(--font-size-default);
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

    .pricing h4 sup {
        font-size: 20px;
        top: -15px;
        left: -3px;
    }

    .pricing h4 span {
        color: #bababa;
        font-size: var(--font-size-default);
        font-weight: 300;
    }

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: var(--font-size-default);
}

    .pricing ul li {
        padding-bottom: 16px;
    }

    .pricing ul i {
        color: var(--color-primary);
        font-size: 18px;
        padding-right: 4px;
    }

    .pricing ul .na {
        color: #ccc;
        text-decoration: line-through;
    }

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: var(--color-primary);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: var(--font-size-default);
    font-weight: 400;
    font-weight: 600;
    transition: 0.3s;
}

    .pricing .btn-buy:hover {
        background: #149f6e;
    }

.pricing .featured h3 {
    color: #fff;
    background: var(--color-primary);
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: var(--font-size-default);
    padding: 1px 0 3px 0;
    background: var(--color-primary);
    color: #fff;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/


.clients img {
    max-width: 110%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
}

    .clients img:hover {
        transform: scale(1.15);
    }

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
    padding: 40px 0 20px 0;
}

    .blog .entry {
        padding: 30px;
        margin-bottom: 60px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .entry .entry-img {
            max-height: 440px;
            margin: -30px -30px 20px -30px;
            overflow: hidden;
        }

        .blog .entry .entry-title {
            font-size: 28px;
            font-weight: bold;
            padding: 0;
            margin: 0 0 20px 0;
        }

            .blog .entry .entry-title a {
                color: var(--color-title);
                transition: 0.3s;
            }

                .blog .entry .entry-title a:hover {
                    color: var(--color-links-hover);
                }

        .blog .entry .entry-meta {
            margin-bottom: 15px;
            color: #9c847b;
        }

            .blog .entry .entry-meta ul {
                display: flex;
                flex-wrap: wrap;
                list-style: none;
                align-items: center;
                padding: 0;
                margin: 0;
            }

                .blog .entry .entry-meta ul li + li {
                    padding-left: 20px;
                }

            .blog .entry .entry-meta i {
                font-size: 16px;
                margin-right: 8px;
                line-height: 0;
            }

            .blog .entry .entry-meta a {
                color: #847872;
                font-size: 14px;
                display: inline-block;
                line-height: 1;
            }

        .blog .entry .entry-content p {
            line-height: 24px;
        }

        .blog .entry .entry-content .read-more {
            -moz-text-align-last: right;
            text-align-last: right;
        }

            .blog .entry .entry-content .read-more a {
                display: inline-block;
                background: var(--color-primary);
                color: #fff;
                padding: 6px 20px;
                transition: 0.3s;
                font-size: 14px;
                border-radius: 4px;
            }

                .blog .entry .entry-content .read-more a:hover {
                    background: var(--color-primary-dark);
                }

        .blog .entry .entry-content h3 {
            font-size: 22px;
            margin-top: 30px;
            font-weight: bold;
        }

        .blog .entry .entry-content blockquote {
            overflow: hidden;
            background-color: #fafafa;
            padding: 60px;
            position: relative;
            text-align: center;
            margin: 20px 0;
        }

            .blog .entry .entry-content blockquote p {
                color: #4d4643;
                line-height: 1.6;
                margin-bottom: 0;
                font-style: italic;
                font-weight: 500;
                font-size: 22px;
            }

            .blog .entry .entry-content blockquote::after {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 3px;
                background-color: #2b2320;
                margin-top: 20px;
                margin-bottom: 20px;
            }

        .blog .entry .entry-footer {
            padding-top: 10px;
            border-top: 1px solid #e6e6e6;
        }

            .blog .entry .entry-footer i {
                color: #836a61;
                display: inline;
            }

            .blog .entry .entry-footer a {
                color: #3a2f2b;
                transition: 0.3s;
            }

                .blog .entry .entry-footer a:hover {
                    color: var(--color-links-hover);
                }

            .blog .entry .entry-footer .cats {
                list-style: none;
                display: inline;
                padding: 0 20px 0 0;
                font-size: 14px;
            }

                .blog .entry .entry-footer .cats li {
                    display: inline-block;
                }

            .blog .entry .entry-footer .tags {
                list-style: none;
                display: inline;
                padding: 0;
                font-size: 14px;
            }

                .blog .entry .entry-footer .tags li {
                    display: inline-block;
                }

                    .blog .entry .entry-footer .tags li + li::before {
                        padding-right: 6px;
                        color: #6c757d;
                        content: ",";
                    }

            .blog .entry .entry-footer .share {
                font-size: 16px;
            }

                .blog .entry .entry-footer .share i {
                    padding-left: 5px;
                }

    .blog .entry-single {
        margin-bottom: 30px;
    }

    .blog .blog-author {
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .blog-author img {
            width: 120px;
            margin-right: 20px;
        }

        .blog .blog-author h4 {
            font-weight: 600;
            font-size: 22px;
            margin-bottom: 0px;
            padding: 0;
            color: #2b2320;
        }

        .blog .blog-author .social-links {
            margin: 0 10px 10px 0;
        }

            .blog .blog-author .social-links a {
                color: rgba(43, 35, 32, 0.5);
                margin-right: 5px;
            }

        .blog .blog-author p {
            font-style: italic;
            color: #bfb9b6;
        }

    .blog .blog-comments {
        margin-bottom: 30px;
    }

        .blog .blog-comments .comments-count {
            font-weight: bold;
        }

        .blog .blog-comments .comment {
            margin-top: 30px;
            position: relative;
        }

            .blog .blog-comments .comment .comment-img {
                margin-right: 14px;
            }

                .blog .blog-comments .comment .comment-img img {
                    width: 60px;
                }

            .blog .blog-comments .comment h5 {
                font-size: 16px;
                margin-bottom: 2px;
            }

                .blog .blog-comments .comment h5 a {
                    font-weight: bold;
                    color: #4d4643;
                    transition: 0.3s;
                }

                    .blog .blog-comments .comment h5 a:hover {
                        color: var(--color-links-hover);
                    }

                .blog .blog-comments .comment h5 .reply {
                    padding-left: 10px;
                    color: #2b2320;
                }

                    .blog .blog-comments .comment h5 .reply i {
                        font-size: 20px;
                    }

            .blog .blog-comments .comment time {
                display: block;
                font-size: 14px;
                color: #483b36;
                margin-bottom: 5px;
            }

            .blog .blog-comments .comment.comment-reply {
                padding-left: 40px;
            }

        .blog .blog-comments .reply-form {
            margin-top: 30px;
            padding: 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

            .blog .blog-comments .reply-form h4 {
                font-weight: bold;
                font-size: 22px;
            }

            .blog .blog-comments .reply-form p {
                font-size: 14px;
            }

            .blog .blog-comments .reply-form input {
                border-radius: 4px;
                padding: 10px 10px;
                font-size: 14px;
            }

                .blog .blog-comments .reply-form input:focus {
                    box-shadow: none;
                    border-color: #fe825a;
                }

            .blog .blog-comments .reply-form textarea {
                border-radius: 4px;
                padding: 10px 10px;
                font-size: 14px;
            }

                .blog .blog-comments .reply-form textarea:focus {
                    box-shadow: none;
                    border-color: #fe825a;
                }

            .blog .blog-comments .reply-form .form-group {
                margin-bottom: 25px;
            }

            .blog .blog-comments .reply-form .btn-primary {
                border-radius: 4px;
                padding: 10px 20px;
                border: 0;
                background-color: #2b2320;
            }

                .blog .blog-comments .reply-form .btn-primary:hover {
                    background-color: #3a2f2b;
                }

    .blog .blog-pagination {
        color: #65534c;
    }

        .blog .blog-pagination ul {
            display: flex;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .blog .blog-pagination li {
            margin: 0 5px;
            transition: 0.3s;
        }

            .blog .blog-pagination li a {
                color: #2b2320;
                padding: 7px 16px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .blog .blog-pagination li.active,
            .blog .blog-pagination li:hover {
                background: var(--color-primary);
            }

                .blog .blog-pagination li.active a,
                .blog .blog-pagination li:hover a {
                    color: #fff;
                }

    .blog .sidebar {
        padding: 30px;
        margin: 0 0 60px 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .sidebar .sidebar-title {
            font-size: 20px;
            font-weight: 700;
            padding: 0 0 0 0;
            margin: 0 0 15px 0;
            color: #2b2320;
            position: relative;
            text-align: center;
            background: #cfb38bb0;
            padding: 12px;
        }

        .blog .sidebar .sidebar-item {
            margin-bottom: 30px;
        }

        .blog .sidebar .search-form form {
            background: #fff;
            border: 1px solid #ddd;
            padding: 3px 10px;
            position: relative;
        }

            .blog .sidebar .search-form form input[type=text] {
                border: 0;
                padding: 4px;
                border-radius: 4px;
                width: calc(100% - 40px);
            }

            .blog .sidebar .search-form form button {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 15px;
                margin: -1px;
                background: var(--color-primary);
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
                line-height: 0;
            }

                .blog .sidebar .search-form form button i {
                    line-height: 0;
                }

                .blog .sidebar .search-form form button:hover {
                    background: #fd4509;
                }

        .blog .sidebar .categories ul {
            list-style: none;
            padding: 0;
        }

            .blog .sidebar .categories ul li + li {
                padding-top: 10px;
            }

            .blog .sidebar .categories ul a {
                color: #2b2320;
                transition: 0.3s;
            }

                .blog .sidebar .categories ul a:hover {
                    color: var(--color-links-hover);
                }

                .blog .sidebar .categories ul a span {
                    padding-left: 5px;
                    color: #b4aca8;
                    font-size: 14px;
                }

        .blog .sidebar .recent-posts .post-item + .post-item {
            margin-top: 15px;
            text-align:justify;
        }
        .blog .sidebar .recent-posts img {
            width: 80px;
            float: left;
        }

        .blog .sidebar .recent-posts h4 {
            font-size: 15px;
            margin-left: 95px;
        }

            .blog .sidebar .recent-posts h4 a {
                color: #2b2320;
                transition: 0.3s;
               
            }

                .blog .sidebar .recent-posts h4 a:hover {
                    color: var(--color-links-hover);
                }

        .blog .sidebar .recent-posts time {
            display: block;
            margin-left: 95px;
            font-style: italic;
            font-size: 14px;
            color: #b4aca8;
        }

        .blog .sidebar .tags {
            margin-bottom: -10px;
        }

            .blog .sidebar .tags ul {
                list-style: none;
                padding: 0;
            }

                .blog .sidebar .tags ul li {
                    display: inline-block;
                }

                .blog .sidebar .tags ul a {
                    color: #745f56;
                    font-size: 14px;
                    padding: 6px 14px;
                    margin: 0 6px 8px 0;
                    border: 1px solid #ded5d2;
                    display: inline-block;
                    transition: 0.3s;
                }

                    .blog .sidebar .tags ul a:hover {
                        color: var(--color-default);
                        border: 1px solid var(--color-primary);
                        background: var(--color-primary);
                    }

                    .blog .sidebar .tags ul a span {
                        padding-left: 5px;
                        color: #c8bab5;
                        font-size: 14px;
                    }


/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .recent-posts .post-box .post-img {
        overflow: hidden;
        position: relative;
    }

        .recent-posts .post-box .post-img img {
            transition: 0.5s;
        }

    .recent-posts .post-box .meta {
        margin-top: 15px;
    }

        .recent-posts .post-box .meta .post-date {
            font-size: var(--font-size-default);
            font-weight: 400;
            color: var(--color-primary);
        }

        .recent-posts .post-box .meta .post-author {
            font-size: var(--font-size-default);
            font-weight: 400;
            color: var(--color-secondary);
        }

    .recent-posts .post-box .post-title {
        font-family:'Droid Arabic Kufi', Consolas;
        font-size: var(--font-size-large);
        color: var(--color-secondary);
        font-weight: 700;
        margin: 15px 0 0 0;
        position: relative;
        transition: 0.3s;
        text-align:justify;
    }

    .recent-posts .post-box p {
        font-family: 'Droid Arabic Kufi', Consolas;
        text-align: justify;
        margin: 15px 0 0 0;
        color: rgba(27, 47, 69, 0.7);
    }

    .recent-posts .post-box .readmore {
        display: flex;
        align-items: center;
        font-weight: 600;
        line-height: 1;
        transition: 0.3s;
        margin-top: 15px;
    }

        .recent-posts .post-box .readmore i {
            line-height: 0;
            margin-left: 4px;
            font-size: 18px;
        }

    .recent-posts .post-box:hover .post-title {
        color: var(--color-title-dark);
    }

    .recent-posts .post-box:hover .post-img img {
        transform: scale(1.1);
    }
.entry-content {
    font-family: 'Droid Arabic Kufi', Consolas;
    text-align: justify;
}
/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0;
}

    .faq .faq-list ul {
        padding: 0;
        list-style: none;
    }

    .faq .faq-list li + li {
        margin-top: 15px;
    }

    .faq .faq-list li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
        position: relative;
    }

    .faq .faq-list a {
        display: block;
        position: relative;
        font-size: var(--font-size-default);
        line-height: 24px;
        font-weight: 500;
        padding: 0 30px;
        outline: none;
        cursor: pointer;
    }

    .faq .faq-list .icon-help {
        font-size: 24px;
        position: absolute;
        right: 0;
        left: 20px;
        color: #34e5a6;
    }

    .faq .faq-list .icon-show,
    .faq .faq-list .icon-close {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .faq .faq-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
    }

    .faq .faq-list .icon-show {
        display: none;
    }

    .faq .faq-list a.collapsed {
        color: #343a40;
    }

        .faq .faq-list a.collapsed:hover {
            color: var(--color-primary);
        }

        .faq .faq-list a.collapsed .icon-show {
            display: inline-block;
        }

        .faq .faq-list a.collapsed .icon-close {
            display: none;
        }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
}

    .contact .info-box i {
        font-size: 32px;
        color: #e96b56;
        border-radius: 50%;
        padding: 8px;
        border: 2px dotted #fef5f4;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #777777;
        font-weight: 700;
        margin: 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
}

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: #e96b56;
        }

    .contact .php-email-form input {
        padding: 10px 15px;
    }

    .contact .php-email-form textarea {
        padding: 12px 15px;
    }

    .contact .php-email-form button[type=submit] {
        background: #e96b56;
        border: 0;
        border-radius: 50px;
        padding: 10px 24px;
        color: #fff;
        transition: 0.4s;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: #e6573f;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--color-primary);
    padding: 0 0 8px 0;
    color: var(--color-white);
    font-size: var(--font-size-default);
}

    #footer .footer-top {
        padding: 15px 0 3px 0;
    }
.footer-info {
    /*border-bottom: 1px solid var(--color-default);*/
}
    #footer .footer-top .footer-info {
            margin-bottom: 15px;
            background: #8964435e; /*var(--color-primary-soft);*/
            color: var(--color-white);
            /*border-top: 4px solid var(--color-primary);*/
            text-align: center;
            padding: 10px 20px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 24px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

            #footer .footer-top .footer-info p {
                font-size: var(--font-size-default);
                line-height: 24px;
                margin-bottom: 0;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            color: var(--color-white);
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #8f866b;
                color: #fff;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: var(--font-size-default);
            font-weight: 600;
            color: var(--color-default);
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 10px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: var(--color-default);
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: var(--color-default);
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: var(--color-links-hover);
                    }

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px 6px 15px;
            position: relative;
            border-radius: 50px;
        }

            #footer .footer-top .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
            }

            #footer .footer-top .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: -2px;
                bottom: 0;
                border: 0;
                background: none;
                font-size: var(--font-size-default);
                padding: 0 20px;
                background: var(--color-primary);
                color: #fff;
                transition: 0.3s;
                border-radius: 50px;
            }

                #footer .footer-top .footer-newsletter form input[type=submit]:hover {
                    background: #149f6e;
                }

    #footer .copyright {
        /*border-top: 1px solid var(--color-default);*/
        text-align: center;
        padding-top: 10px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
    padding: 30px;
    transition: all ease-in-out 0.4s;
    background: var(--color-white);
    height: 100%;
}

    .featured-services .service-item .icon {
        margin-bottom: 10px;
    }

        .featured-services .service-item .icon i {
            color: var(--color-primary);
            font-size: 36px;
            transition: 0.3s;
        }

    .featured-services .service-item h4 {
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .featured-services .service-item h4 a {
            color: var(--color-secondary);
            transition: ease-in-out 0.3s;
        }

    .featured-services .service-item p {
        line-height: 24px;
        font-size: var(--font-size-default);
        margin-bottom: 0;
    }

    .featured-services .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
    }

        .featured-services .service-item:hover h4 a {
            color: var(--color-primary);
        }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
    border-radius: 8px;
    overflow: hidden;
}

    .services .img img {
        transition: 0.6s;
    }

.services .details {
    padding: 50px 30px;
    margin: -100px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    background: rgba(var(--color-white-rgb), 0.9);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

    .services .details .icon {
        margin: 0;
        width: 72px;
        height: 72px;
        background: var(--color-primary);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--color-white);
        font-size: 28px;
        transition: ease-in-out 0.3s;
        position: absolute;
        top: -36px;
        left: calc(50% - 36px);
        border: 6px solid var(--color-white);
    }

    .services .details h3 {
        color: var(--font-size-large);
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 22px;
        transition: ease-in-out 0.3s;
    }

    .services .details p {
        line-height: 24px;
        font-size: var(--font-size-default);
        margin-bottom: 0;
    }

.services .service-item:hover .details h3 {
    color: var(--color-primary);
}

.services .service-item:hover .details .icon {
    background: var(--color-white);
    border: 2px solid var(--color-primary);
}

    .services .service-item:hover .details .icon i {
        color: var(--color-primary);
    }

.services .service-item:hover .img img {
    transform: scale(1.2);
}


.contact .info-box i {
    color: var(--color-primary-dark);
}
/*.img-mil-unit-logo {
    position: relative;
    top: -156px;
    overflow:hidden;
}*/
.img-mil-unit-logo {
    position: sticky;
    bottom: 0;
    max-width: 260px;
    max-height: 260px;
}
.blog .sidebar .recent-posts img {
    width: 80px;
    height:auto;
    float: left;
}

.sidebar-news-headline{
    font-family:'Droid Arabic Kufi';
}
.mt-30 {
    margin-top: 30px;
}




@media (max-width: 768px) {
    .section-title h2 {
        font-size: 15px !important;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: var(--color-primary);
            margin: 4px 10px;
        }
}
@font-face {
    font-family: droid arabic kufi;
    src: url("/webfonts/DroidKufi-Regular.ttf");
}
@font-face {
    font-family: consolas;
    src: url("/webfonts/consola.ttf");
}
body, p, h1, h2, h3, h4, h5, h6, a, span, button, .btn, input, .form-control {
    font-size: var(--font-size-default);
}
.blog .entry .entry-title a:hover{
    color: var(--color-primary-dark);
}

.bodyMaxHT {
    height: 1200px;
    overflow-y: scroll;
    overflow-x: hidden; /* hides the horizontal scroll bar */
}

.bigtxtcustom {
    font-size: 2.3rem;
}

.bigtxtcustom2 {
    font-size: 2.2rem;
}
.bigtxtforfooter {
    font-size: 1.8rem;
}
.text-lg-start {
    font-size: 2.3rem;
}

.section-title h2 {
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-default);
    font-size: var(--font-size-h2);
    font-weight: 700;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    text-align: center;
}
.frontside, .backside{
    min-height:415px;
}

.home-show-all-btn-div {
    margin-top:-20px;
}
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: -5px !important;
}
.no-horizontel-margin {
    margin-right:0 !important;
    margin-left:0 !important;
}
.btn-home-showall {
    background-color: var(--color-white);
    color: var(--color-links);
    display: inline-flex;
    vertical-align: top;
    
}
    .btn-home-showall:hover {
        color: var(--color-links-hover);
        background-color: var(--color-white);
        border-color: var(--color-white);
    }

.showall-icon::after {
    content: "\00a0";
}

.news-card {
    padding: 10px;
}

    .news-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
    }

.sidebar-image-top-5{
    width:300px;
    height:100px;
}

.img-mil-unit {
    height: 260px;
    width: 260px;
}
.mil-unit-card {
    margin:10px;
    float: right;
   /*height: 323px;*/
    width: auto;
    text-align:center;
}
.mil-unit-card-body {
    background: var(--color-primary-light);
}
.mil-unit-card-title {
    color: var(--color-default);
}
.icon-boxes .title a {
    color: var(--color-default);
}

#topbar {
    background: var(--color-primary);
    padding: 0px 0;
    font-size: var(--font-size-default);
    color:var(--color-default);
}
    #topbar .contact-info i a, #topbar .contact-info i span {
        padding-left: 5px;
        color: var(--color-default);
    }
.btn-check:active + .btn, .btn-check:checked + .btn, .btn.active, .btn.show, .btn:active {
    color: var(--color-default);
}
a {
    color: var(--color-primary);
    text-decoration: none;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--color-primary-dark);
}
.section-title h2::after {
    background: var(--color-primary-dark);
}
.recent-posts .post-box .post-title, .title-mil-unit .title-color{
    color: var(--color-title);
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity,1);
    background: var(--swiper-pagination-color,var(--color-primary-dark));
}
#hero .carousel-indicators li.active {
    opacity: 1;
    background-color: var(--color-primary-dark);
}

.MyCart {
    position: fixed;
    top: 50%;
    height: 0px;
    z-index: 9999;
    margin-top: -15px;
}

[dir=rtl] .MyCart {
    text-align: left;
    right: 0px !important;
}

.MyCart {
    left: 0px;
    text-align: right !important;
}

.btnOnTop {
}

.btn-group-div {
    background-color: white;
}

.hide {
    display: none;
}

.btnOnTop:hover > .hide {
    display: block;
    color: var(--color-primary-dark);
}
.single-line-link> li>a {
        color:var(--color-white);
}
.single-line-link> li>a:hover {
        color:var(--color-black);
}
.single-line-link> li {
    display: inline;
}
.single-line-link > li:after {
    content: " | ";
}
.overlay-icon-img {
    height:32px;
    width: 32px;
}
.icon-box > a> .icon > img {
    height: 164px;
    width: 164px;
}

#social-nav {
    position: fixed;
    top: 35%;
    z-index: 16;
    box-shadow: 0 0 0 0 transparent;
    background-color: transparent;
    z-index:101;
    /* border-radius: 4px 0 0 4px; */
    /* padding: 4px; */
}

.social-links-fix {
    margin: 0;
}

    .social-links-fix li.useful-lnk-icon-0 {
        background-color: #a6946f;
    }

    .social-links-fix li.useful-lnk-icon-1 {
        background-color: #dadbbd;
    }

    .social-links-fix li.useful-lnk-icon-2 {
        background-color: #b5a882;
    }

    .social-links-fix li.useful-lnk-icon-3 {
        background-color: #bab0ac;
    }

    .social-links-fix li {
        display: block;
        margin: 0;
        padding: 0.2em;
        position: relative;
        color: white;
        background-color: transparent;
       /* height: 2.5em;*/
        border-radius: 0;
        /*width: 2.5em;
                     margin-bottom: 4px; */
    }

/*.switch-div{
    margin-top: .5rem;
}*/
.form-check-input {
    background-color: var(--color-primary);
}
    .form-check-input:checked {
        background-color: var(--color-primary);
        border-color: var(--color-primary-light);
    }
.topbartext{
    border:none !important;
}
.tgl-icon {
    line-height: 2;
    font-size:28px;
}
.back-to-top i {
   /* margin-right: 6px;
    margin-top: 17px;*/
}
.gallery-image {
    height: 270px;
    width: 405px;
}

.aboutarmytext {
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 10px;
}
.userGuide{
    list-style-type:none;
}

.FixcontentWidth {
    word-wrap:break-word;
}
.ul-rejoin-content {
    font-size: 15px;
    font-weight: bold;
}
.ul-rejoin-content > li {
    font-size: 15px;
    font-weight: bold;
}

.rejoin-card-header {
    
    color: white;
    background-color: var(--color-primary)
}


/*Jahangir Datatable custom*/

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
    content: "-";
    background-color: #d33333;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    top: 50%;
    left: 5px;
    height: 1em;
    width: 1em;
    margin-top: -9px;
    display: block;
    position: absolute;
    color: white;
    border: 0.15em solid white;
    border-radius: 1em;
    box-shadow: 0 0 0.2em #444;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: "Courier New",Courier,monospace;
    line-height: 1em;
    content: "+";
    background-color: #31b131;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
    white-space: nowrap;
}

.dataTables_length > label, .dataTables_filter > label {
    display: flex !important;
}
/*End Jahangir Datatable custom*/
#social-nav {
    left: 0;
}
.form-switch {
    padding-right: 0.2rem !important;
}
.blog .entry .entry-title, entry-content {
    font-family: 'Droid Arabic Kufi' !important;
}