@charset "UTF-8";

:root {
    --bs-blue: #5a8dee;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #e83e8c;
    --bs-red: #ff5b5c;
    --bs-orange: #fd7e14;
    --bs-yellow: #fdac41;
    --bs-green: #39da8a;
    --bs-teal: #20c997;
    --bs-cyan: #00cfdd;
    --bs-white: #fff;
    --bs-gray: rgba(38, 60, 85, 0.6);
    --bs-gray-dark: rgba(38, 60, 85, 0.8);
    --bs-gray-25: rgba(38, 60, 85, 0.025);
    --bs-gray-50: rgba(38, 60, 85, 0.06);
    --bs-primary: #154790;
    --bs-secondary: #ff5e00;
    --bs-success: #39da8a;
    --bs-info: #00cfdd;
    --bs-warning: #fdac41;
    --bs-danger: #ff5b5c;
    --bs-light: #e5e9ed;
    --bs-dark: #495563;
    --bs-gray: rgba(38, 60, 85, 0.5);
    --bs-primary-rgb: 90, 141, 238;
    --bs-secondary-rgb: 105, 128, 154;
    --bs-success-rgb: 57, 218, 138;
    --bs-info-rgb: 0, 207, 221;
    --bs-warning-rgb: 253, 172, 65;
    --bs-danger-rgb: 255, 91, 92;
    --bs-light-rgb: 229, 233, 237;
    --bs-dark-rgb: 73, 85, 99;
    --bs-gray-rgb: 38, 60, 85;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 38, 60, 85;
    --bs-body-color-rgb: 103, 119, 136;
    --bs-body-bg-rgb: 242, 242, 246;
    --bs-font-sans-serif: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    --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-root-font-size: 16px;
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 0.9375rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.47;
    --bs-body-color: #677788;
    --bs-body-bg: #e4e9ec;
    --bs-body-text-align: rtl;
    --stop: 100px;
    --border-radius: 5px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    font-size: var(--bs-root-font-size);
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

@font-face {
    font-family: 'hacenFont';
    src: url('../../fonts/hacen_maghreb_bd.ttf');
    font-display: swap;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'hacenFont', Georgia, serif !important;
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: #000;
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(38, 60, 85, 0);
    direction: var(--bs-body-text-align);

}

#breadcrumb,
.header ul li a,
.header-mob ul,
ul {
    list-style: none !important;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    color: #000;
    padding: 0px !important;
}


/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 20;
}

.navbar .navbar-brand img {
    width: 50px;
}

.navbar .slogan {
    text-decoration: none;
}

.navbar .slogan .english-slogan {
    font-weight: bold;
    color: #000;
    font-size: 18px;
}

.navbar .slogan .english-slogan .and {
    color: var(--bs-secondary);
}

.navbar .slogan .arabic-slogan {
    color: var(--bs-primary) !important;
}

.navbar .profile_button {
    background-color: #d2d6de;
    text-decoration: none;
    padding: 5px 20px;
    color: #5e6987;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-weight: 700;
}

.navbar .profile_button i {
    font-size: 20px;
    margin-left: 5px;
}

.navbar .navbar-collapse {
    justify-content: end;
}

.navbar .nav-item .nav-link {
    color: var(--bs-primary) !important;
    font-size: 18px;
}

.navbar .nav-item .active {
    color: #000 !important;
}

.navbar .nav-item .search {
    color: var(--bs-secondary) !important;
    font-size: 25px;
    margin-right: 10px;
}

/*  Home */
/* #home_header {
    height: 700px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}


.search_area {
    padding: 0px 50px;
} */





#home_header {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* --------------------------------------
   1️⃣ When a cover image exists
--------------------------------------- */
#home_header.has-cover .cover-img {
    width: 100%;
    height: auto; /* Keeps natural image height */
    display: block;
}

#home_header.has-cover {
    height: auto; /* Section height equals image height */
}

/* Center search bar in the middle of the image */
#home_header.has-cover .search_area {
    position: absolute;
    top: 50%;               /* Vertically centered */
    left: 50%;              /* Horizontally centered */
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    z-index: 5;
}

/* Optional dark overlay for better readability */
#home_header.has-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.30); */
    z-index: 2;
}

/* --------------------------------------
   2️⃣ When no cover image exists
--------------------------------------- */
#home_header.no-cover {
    background: #f5f7fa;
    padding: 6rem 1rem;
    display: flex;
    align-items: center;
}

#home_header.no-cover .search_area {
    position: relative;
    z-index: 1;
}












#searchForm legend {
    font-size: 72px;
    line-height: 1;
    color: #fff;
    margin-bottom: 60px;
}

#searchForm .inner-form {

    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

#searchForm .inner-form .input-field {
    height: 50px;
    width: 150px;
}

#searchForm .inner-form .input-field input {
    height: 100%;
    background: #fff;
    border-radius: .5px;
    border: 0;
    display: block;
    width: 100%;
    padding: 10px 32px;
    font-size: 20px;
    /* box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

#searchForm .inner-form .input-field input:focus {
    outline: none;
}

#searchForm .inner-form .input-field input.placeholder {
    color: #9a9a9a;
    font-size: 20px;
}

#searchForm .inner-form .input-field input:-moz-placeholder {
    color: #9a9a9a;
    font-size: 20px;
}

#searchForm .inner-form .input-field input::-webkit-input-placeholder {
    color: #9a9a9a;
    font-size: 20px;
}



#searchForm .inner-form .input-field.search_input {
    -ms-flex-positive: 1;
    flex-grow: 1;
}



#searchForm .inner-form .input-field.search_button {
    margin-right: 10px;
}

#searchForm .inner-form .input-field.search_button .btn-search {
    height: 100%;
    width: 100%;
    background: var(--bs-primary);
    white-space: nowrap;
    border-radius: .5px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    border: 0;
    transition: all .2s ease-out, color .2s ease-out;
    cursor: pointer;
    /* box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

@media screen and (max-width: 992px) {

    #searchForm .inner-form {
        padding: 30px 0px;
    }

    #searchForm .inner-form .input-field {
        height: 50px;
    }
}


@media screen and (max-width: 767px) {

    #searchForm .inner-form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #searchForm .inner-form .input-field,
    #searchForm .inner-form .input-field.search_button {
        margin-right: 0px;
    }

    #searchForm .inner-form .input-field.search_button .btn-search {
        font-size: 14px;
    }

    #searchForm .inner-form .input-field input {
        font-size: 14px;
    }

    .gate .feature {
        padding: 10px !important;
    }

    .gate .feature span.h2 {
        display: flex;
        font-size: 16px !important;
        /* margin-top: 10px !important; */
        /* padding: 10px 5px !important; */
        /* margin-bottom: 10px !important; */
    }

    .a_feature .feature .image {
        width: 50px !important;
    }
    #home_header {
        height: 400px !important;
    }

}

.statistic_item {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.statistic_item .image {
    width: 90px;
    margin-left: 10px;
}

.statistic_item .image img {
    width: 100%;
}

.statistic_item .statistic {
    color: var(--bs-secondary);
    font-size: 30px;
    font-weight: bold;
}

.statistic_item .title {
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 500px) {
    .statistic_item .image {
        width: 60px;
        margin-left: 5px;
    }

    .statistic_item .statistic {
        font-size: 20px;
    }

    .statistic_item .title {
        font-size: 16px;
    }
}

/* Jobs */
.job_card {
    display: block;
    background-color: #fff;
    border: 1px solid rgb(217, 221, 228);
    border-radius: 2px;
    padding: 16px;
    text-decoration: none;
    height: 220px;
}

.job_card .card_title {
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: -0.4px;
    line-height: 24px;
    color: var(--bs-primary) !important;
}

.job_card p {
    margin-bottom: 0px;
}

.job_card .country,
.job_card .source {
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: -0.27px;
    line-height: 19px;
    color: rgb(0, 20, 51);
}

.job_card .date {
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.27px;
    line-height: 19px;
    color: rgb(44, 146, 102);
}

.job_card .content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000 !important;
    height: auto;
    max-height: 48px;
    /* Adjust this based on font-size and line-height */
    line-height: 24px;
    /* Ensure this matches your actual line-height */
}

/* courses  */
.is_certified_tab {
    display: flex;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    text-decoration: none !important;
    padding: 20px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

.is_certified_tab.active {
    color: var(--bs-secondary) !important;
}

.course_card,
.profile_course_card {
    display: block;
    background: #fff;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 1rem;
    border: 1px solid #efefef;
    transition: all .2s ease-in-out;
    position: relative;
    padding: 0;
    text-decoration: none;
}

.course_card a,
.profile_course_card a {
    text-decoration: none;
}

.course_card .fcrse_img,
.profile_course_card .profile_fcrse_img {
    border-radius: 1rem 1rem 0 0;
    height: 173px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.course_card .fcrse_img>img,
.profile_course_card .profile_fcrse_img>img {
    width: 100%;
    border-radius: 5px;
    margin: auto;
    display: block;
    height: 100%;
}

.course_card .certified_icon {
    position: absolute;
    width: 35px;
    display: inline-block;
    bottom: -18px;
    left: 30px;
    transform: translateX(-50%);
    top: 0;
}

.course_card .certified_icon img {
    width: 100%;
}

.course_card .play_btn1,
.profile_course_card .profile_play_btn1 {
    border: 2px solid #fff;
    width: 70px;
    height: 70px;
    float: right;
    text-align: center;
    border-radius: 100%;
    padding: 15px 13px;
    font-size: 20px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 46%;
    transform: scale(.8) translateX(-50%) translateY(-50%);
    opacity: 1;
    background: rgba(0, 109, 177, .6);
}

.course_card .crse_timer,
.profile_course_card .profile_crse_timer {
    bottom: 0;
    position: absolute;
    margin-bottom: 10px;
    right: 0;
    margin-right: 10px;
    color: rgb(255 255 255);
    background: rgb(190 67 17);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.course_card .category {
    bottom: 0;
    position: absolute;
    margin-bottom: 10px;
    left: 0;
    margin-left: 10px;
    background: var(--bs-secondary);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

.course_card .category span {
    color: #ffffff !important;
}

.course_card .fcrse_content {
    height: 85px;
    overflow: hidden;
    padding: 5px;
    text-align: center;
}

.profile_course_card .profile_fcrse_content {
    overflow: hidden;
    padding: 5px;
    text-align: right;
}

/* .course_card .crse14s, */
.profile_course_card .profile_crse14s {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: right;
    line-height: 25px;
    color: var(--bs-primary) !important;
}
.course_card .crse14s {
    font-size:  1.1rem;
    font-weight: 600;
    text-align: right;
    margin: 0;
    line-height: 1.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* show max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    color: var(--bs-primary) !important;
}


.profile_course_card .profile_start_date {
    color: #000;
    font-size: 1.1rem;
}

.profile_course_card .profile_buttons {
    padding: 5px;
}

.profile_course_card .profile_buttons .lessons_details {
    display: block;
    color: #fff;
    background-color: #6b757d;
    border-radius: 10px;
    text-align: center;
    padding: 3px 0px;
    margin-bottom: 10px;

}

.profile_course_card .profile_buttons .generate_certificate {
    display: block;
    color: #6d747d;
    background-color: #c7c8c7;
    border-radius: 10px;
    text-align: center;
    padding: 8px 0px;
}

.course_card .date,
.profile_course_card .date,
.common_card .date {
    color: #000 !important;
}



.course-meta {
    display: flex;
    justify-content: space-between; /* LEFT + RIGHT */
    align-items: center;
    margin-top: 5px;
}


.course-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #eef3f8;
    color: #0a66c2;
    opacity: 0.95;
    transition: all .25s ease-in-out;
}

.course-counter::before {
    content: "\1F465";
    font-size: 15px;
    opacity: 0.9;
    transform: scale(1);
    transition: all .25s ease-in-out;
}

.course_card:hover .course-counter {
    background: #dbe7f3;
    color: #084c96;
}

.course_card:hover .course-counter::before {
    transform: scale(1.2);
}






.rect-auto,
.c100.p51 .slice,
.c100.p52 .slice,
.c100.p53 .slice,
.c100.p54 .slice,
.c100.p55 .slice,
.c100.p56 .slice,
.c100.p57 .slice,
.c100.p58 .slice,
.c100.p59 .slice,
.c100.p60 .slice,
.c100.p61 .slice,
.c100.p62 .slice,
.c100.p63 .slice,
.c100.p64 .slice,
.c100.p65 .slice,
.c100.p66 .slice,
.c100.p67 .slice,
.c100.p68 .slice,
.c100.p69 .slice,
.c100.p70 .slice,
.c100.p71 .slice,
.c100.p72 .slice,
.c100.p73 .slice,
.c100.p74 .slice,
.c100.p75 .slice,
.c100.p76 .slice,
.c100.p77 .slice,
.c100.p78 .slice,
.c100.p79 .slice,
.c100.p80 .slice,
.c100.p81 .slice,
.c100.p82 .slice,
.c100.p83 .slice,
.c100.p84 .slice,
.c100.p85 .slice,
.c100.p86 .slice,
.c100.p87 .slice,
.c100.p88 .slice,
.c100.p89 .slice,
.c100.p90 .slice,
.c100.p91 .slice,
.c100.p92 .slice,
.c100.p93 .slice,
.c100.p94 .slice,
.c100.p95 .slice,
.c100.p96 .slice,
.c100.p97 .slice,
.c100.p98 .slice,
.c100.p99 .slice,
.c100.p100 .slice {
    clip: rect(auto, auto, auto, auto)
}

.pie,
.c100 .bar,
.c100.p51 .fill,
.c100.p52 .fill,
.c100.p53 .fill,
.c100.p54 .fill,
.c100.p55 .fill,
.c100.p56 .fill,
.c100.p57 .fill,
.c100.p58 .fill,
.c100.p59 .fill,
.c100.p60 .fill,
.c100.p61 .fill,
.c100.p62 .fill,
.c100.p63 .fill,
.c100.p64 .fill,
.c100.p65 .fill,
.c100.p66 .fill,
.c100.p67 .fill,
.c100.p68 .fill,
.c100.p69 .fill,
.c100.p70 .fill,
.c100.p71 .fill,
.c100.p72 .fill,
.c100.p73 .fill,
.c100.p74 .fill,
.c100.p75 .fill,
.c100.p76 .fill,
.c100.p77 .fill,
.c100.p78 .fill,
.c100.p79 .fill,
.c100.p80 .fill,
.c100.p81 .fill,
.c100.p82 .fill,
.c100.p83 .fill,
.c100.p84 .fill,
.c100.p85 .fill,
.c100.p86 .fill,
.c100.p87 .fill,
.c100.p88 .fill,
.c100.p89 .fill,
.c100.p90 .fill,
.c100.p91 .fill,
.c100.p92 .fill,
.c100.p93 .fill,
.c100.p94 .fill,
.c100.p95 .fill,
.c100.p96 .fill,
.c100.p97 .fill,
.c100.p98 .fill,
.c100.p99 .fill,
.c100.p100 .fill {
    position: absolute;
    border: 0.08em solid #21a53f;
    width: 0.84em;
    height: 0.84em;
    clip: rect(0em, 0.5em, 1em, 0em);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg)
}

.pie-fill,
.c100.p51 .bar:after,
.c100.p51 .fill,
.c100.p52 .bar:after,
.c100.p52 .fill,
.c100.p53 .bar:after,
.c100.p53 .fill,
.c100.p54 .bar:after,
.c100.p54 .fill,
.c100.p55 .bar:after,
.c100.p55 .fill,
.c100.p56 .bar:after,
.c100.p56 .fill,
.c100.p57 .bar:after,
.c100.p57 .fill,
.c100.p58 .bar:after,
.c100.p58 .fill,
.c100.p59 .bar:after,
.c100.p59 .fill,
.c100.p60 .bar:after,
.c100.p60 .fill,
.c100.p61 .bar:after,
.c100.p61 .fill,
.c100.p62 .bar:after,
.c100.p62 .fill,
.c100.p63 .bar:after,
.c100.p63 .fill,
.c100.p64 .bar:after,
.c100.p64 .fill,
.c100.p65 .bar:after,
.c100.p65 .fill,
.c100.p66 .bar:after,
.c100.p66 .fill,
.c100.p67 .bar:after,
.c100.p67 .fill,
.c100.p68 .bar:after,
.c100.p68 .fill,
.c100.p69 .bar:after,
.c100.p69 .fill,
.c100.p70 .bar:after,
.c100.p70 .fill,
.c100.p71 .bar:after,
.c100.p71 .fill,
.c100.p72 .bar:after,
.c100.p72 .fill,
.c100.p73 .bar:after,
.c100.p73 .fill,
.c100.p74 .bar:after,
.c100.p74 .fill,
.c100.p75 .bar:after,
.c100.p75 .fill,
.c100.p76 .bar:after,
.c100.p76 .fill,
.c100.p77 .bar:after,
.c100.p77 .fill,
.c100.p78 .bar:after,
.c100.p78 .fill,
.c100.p79 .bar:after,
.c100.p79 .fill,
.c100.p80 .bar:after,
.c100.p80 .fill,
.c100.p81 .bar:after,
.c100.p81 .fill,
.c100.p82 .bar:after,
.c100.p82 .fill,
.c100.p83 .bar:after,
.c100.p83 .fill,
.c100.p84 .bar:after,
.c100.p84 .fill,
.c100.p85 .bar:after,
.c100.p85 .fill,
.c100.p86 .bar:after,
.c100.p86 .fill,
.c100.p87 .bar:after,
.c100.p87 .fill,
.c100.p88 .bar:after,
.c100.p88 .fill,
.c100.p89 .bar:after,
.c100.p89 .fill,
.c100.p90 .bar:after,
.c100.p90 .fill,
.c100.p91 .bar:after,
.c100.p91 .fill,
.c100.p92 .bar:after,
.c100.p92 .fill,
.c100.p93 .bar:after,
.c100.p93 .fill,
.c100.p94 .bar:after,
.c100.p94 .fill,
.c100.p95 .bar:after,
.c100.p95 .fill,
.c100.p96 .bar:after,
.c100.p96 .fill,
.c100.p97 .bar:after,
.c100.p97 .fill,
.c100.p98 .bar:after,
.c100.p98 .fill,
.c100.p99 .bar:after,
.c100.p99 .fill,
.c100.p100 .bar:after,
.c100.p100 .fill {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.c100 {
    position: relative;
    font-size: 120px;
    width: 1em;
    height: 1em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    float: left;
    margin: 0 0.1em 0.1em 0;
    background-color: #cccccc
}

.c100 *,
.c100 *:before,
.c100 *:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.c100.center {
    float: none;
    margin: 0 auto;
    margin-top: 25px
}

.c100.big {
    font-size: 240px
}

.c100.small {
    font-size: 80px
}

.c100>span {
    position: absolute;
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    width: 5em;
    line-height: 5em;
    font-size: 0.2em;
    font-weight: bold;
    color: #848484;
    display: block;
    text-align: center;
    white-space: nowrap;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.c100:after {
    position: absolute;
    top: 0.08em;
    left: 0.08em;
    display: block;
    content: " ";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: whitesmoke;
    width: 0.84em;
    height: 0.84em;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in;
    -moz-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in
}

.c100 .slice {
    position: absolute;
    width: 1em;
    height: 1em;
    clip: rect(0em, 1em, 1em, 0.5em)
}

.c100.p1 .bar {
    -webkit-transform: rotate(3.6deg);
    -moz-transform: rotate(3.6deg);
    -ms-transform: rotate(3.6deg);
    -o-transform: rotate(3.6deg);
    transform: rotate(3.6deg)
}

.c100.p2 .bar {
    -webkit-transform: rotate(7.2deg);
    -moz-transform: rotate(7.2deg);
    -ms-transform: rotate(7.2deg);
    -o-transform: rotate(7.2deg);
    transform: rotate(7.2deg)
}

.c100.p3 .bar {
    -webkit-transform: rotate(10.8deg);
    -moz-transform: rotate(10.8deg);
    -ms-transform: rotate(10.8deg);
    -o-transform: rotate(10.8deg);
    transform: rotate(10.8deg)
}

.c100.p4 .bar {
    -webkit-transform: rotate(14.4deg);
    -moz-transform: rotate(14.4deg);
    -ms-transform: rotate(14.4deg);
    -o-transform: rotate(14.4deg);
    transform: rotate(14.4deg)
}

.c100.p5 .bar {
    -webkit-transform: rotate(18deg);
    -moz-transform: rotate(18deg);
    -ms-transform: rotate(18deg);
    -o-transform: rotate(18deg);
    transform: rotate(18deg)
}

.c100.p6 .bar {
    -webkit-transform: rotate(21.6deg);
    -moz-transform: rotate(21.6deg);
    -ms-transform: rotate(21.6deg);
    -o-transform: rotate(21.6deg);
    transform: rotate(21.6deg)
}

.c100.p7 .bar {
    -webkit-transform: rotate(25.2deg);
    -moz-transform: rotate(25.2deg);
    -ms-transform: rotate(25.2deg);
    -o-transform: rotate(25.2deg);
    transform: rotate(25.2deg)
}

.c100.p8 .bar {
    -webkit-transform: rotate(28.8deg);
    -moz-transform: rotate(28.8deg);
    -ms-transform: rotate(28.8deg);
    -o-transform: rotate(28.8deg);
    transform: rotate(28.8deg)
}

.c100.p9 .bar {
    -webkit-transform: rotate(32.4deg);
    -moz-transform: rotate(32.4deg);
    -ms-transform: rotate(32.4deg);
    -o-transform: rotate(32.4deg);
    transform: rotate(32.4deg)
}

.c100.p10 .bar {
    -webkit-transform: rotate(36deg);
    -moz-transform: rotate(36deg);
    -ms-transform: rotate(36deg);
    -o-transform: rotate(36deg);
    transform: rotate(36deg)
}

.c100.p11 .bar {
    -webkit-transform: rotate(39.6deg);
    -moz-transform: rotate(39.6deg);
    -ms-transform: rotate(39.6deg);
    -o-transform: rotate(39.6deg);
    transform: rotate(39.6deg)
}

.c100.p12 .bar {
    -webkit-transform: rotate(43.2deg);
    -moz-transform: rotate(43.2deg);
    -ms-transform: rotate(43.2deg);
    -o-transform: rotate(43.2deg);
    transform: rotate(43.2deg)
}

.c100.p13 .bar {
    -webkit-transform: rotate(46.8deg);
    -moz-transform: rotate(46.8deg);
    -ms-transform: rotate(46.8deg);
    -o-transform: rotate(46.8deg);
    transform: rotate(46.8deg)
}

.c100.p14 .bar {
    -webkit-transform: rotate(50.4deg);
    -moz-transform: rotate(50.4deg);
    -ms-transform: rotate(50.4deg);
    -o-transform: rotate(50.4deg);
    transform: rotate(50.4deg)
}

.c100.p15 .bar {
    -webkit-transform: rotate(54deg);
    -moz-transform: rotate(54deg);
    -ms-transform: rotate(54deg);
    -o-transform: rotate(54deg);
    transform: rotate(54deg)
}

.c100.p16 .bar {
    -webkit-transform: rotate(57.6deg);
    -moz-transform: rotate(57.6deg);
    -ms-transform: rotate(57.6deg);
    -o-transform: rotate(57.6deg);
    transform: rotate(57.6deg)
}

.c100.p17 .bar {
    -webkit-transform: rotate(61.2deg);
    -moz-transform: rotate(61.2deg);
    -ms-transform: rotate(61.2deg);
    -o-transform: rotate(61.2deg);
    transform: rotate(61.2deg)
}

.c100.p18 .bar {
    -webkit-transform: rotate(64.8deg);
    -moz-transform: rotate(64.8deg);
    -ms-transform: rotate(64.8deg);
    -o-transform: rotate(64.8deg);
    transform: rotate(64.8deg)
}

.c100.p19 .bar {
    -webkit-transform: rotate(68.4deg);
    -moz-transform: rotate(68.4deg);
    -ms-transform: rotate(68.4deg);
    -o-transform: rotate(68.4deg);
    transform: rotate(68.4deg)
}

.c100.p20 .bar {
    -webkit-transform: rotate(72deg);
    -moz-transform: rotate(72deg);
    -ms-transform: rotate(72deg);
    -o-transform: rotate(72deg);
    transform: rotate(72deg)
}

.c100.p21 .bar {
    -webkit-transform: rotate(75.6deg);
    -moz-transform: rotate(75.6deg);
    -ms-transform: rotate(75.6deg);
    -o-transform: rotate(75.6deg);
    transform: rotate(75.6deg)
}

.c100.p22 .bar {
    -webkit-transform: rotate(79.2deg);
    -moz-transform: rotate(79.2deg);
    -ms-transform: rotate(79.2deg);
    -o-transform: rotate(79.2deg);
    transform: rotate(79.2deg)
}

.c100.p23 .bar {
    -webkit-transform: rotate(82.8deg);
    -moz-transform: rotate(82.8deg);
    -ms-transform: rotate(82.8deg);
    -o-transform: rotate(82.8deg);
    transform: rotate(82.8deg)
}

.c100.p24 .bar {
    -webkit-transform: rotate(86.4deg);
    -moz-transform: rotate(86.4deg);
    -ms-transform: rotate(86.4deg);
    -o-transform: rotate(86.4deg);
    transform: rotate(86.4deg)
}

.c100.p25 .bar {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg)
}

.c100.p26 .bar {
    -webkit-transform: rotate(93.6deg);
    -moz-transform: rotate(93.6deg);
    -ms-transform: rotate(93.6deg);
    -o-transform: rotate(93.6deg);
    transform: rotate(93.6deg)
}

.c100.p27 .bar {
    -webkit-transform: rotate(97.2deg);
    -moz-transform: rotate(97.2deg);
    -ms-transform: rotate(97.2deg);
    -o-transform: rotate(97.2deg);
    transform: rotate(97.2deg)
}

.c100.p28 .bar {
    -webkit-transform: rotate(100.8deg);
    -moz-transform: rotate(100.8deg);
    -ms-transform: rotate(100.8deg);
    -o-transform: rotate(100.8deg);
    transform: rotate(100.8deg)
}

.c100.p29 .bar {
    -webkit-transform: rotate(104.4deg);
    -moz-transform: rotate(104.4deg);
    -ms-transform: rotate(104.4deg);
    -o-transform: rotate(104.4deg);
    transform: rotate(104.4deg)
}

.c100.p30 .bar {
    -webkit-transform: rotate(108deg);
    -moz-transform: rotate(108deg);
    -ms-transform: rotate(108deg);
    -o-transform: rotate(108deg);
    transform: rotate(108deg)
}

.c100.p31 .bar {
    -webkit-transform: rotate(111.6deg);
    -moz-transform: rotate(111.6deg);
    -ms-transform: rotate(111.6deg);
    -o-transform: rotate(111.6deg);
    transform: rotate(111.6deg)
}

.c100.p32 .bar {
    -webkit-transform: rotate(115.2deg);
    -moz-transform: rotate(115.2deg);
    -ms-transform: rotate(115.2deg);
    -o-transform: rotate(115.2deg);
    transform: rotate(115.2deg)
}

.c100.p33 .bar {
    -webkit-transform: rotate(118.8deg);
    -moz-transform: rotate(118.8deg);
    -ms-transform: rotate(118.8deg);
    -o-transform: rotate(118.8deg);
    transform: rotate(118.8deg)
}

.c100.p34 .bar {
    -webkit-transform: rotate(122.4deg);
    -moz-transform: rotate(122.4deg);
    -ms-transform: rotate(122.4deg);
    -o-transform: rotate(122.4deg);
    transform: rotate(122.4deg)
}

.c100.p35 .bar {
    -webkit-transform: rotate(126deg);
    -moz-transform: rotate(126deg);
    -ms-transform: rotate(126deg);
    -o-transform: rotate(126deg);
    transform: rotate(126deg)
}

.c100.p36 .bar {
    -webkit-transform: rotate(129.6deg);
    -moz-transform: rotate(129.6deg);
    -ms-transform: rotate(129.6deg);
    -o-transform: rotate(129.6deg);
    transform: rotate(129.6deg)
}

.c100.p37 .bar {
    -webkit-transform: rotate(133.2deg);
    -moz-transform: rotate(133.2deg);
    -ms-transform: rotate(133.2deg);
    -o-transform: rotate(133.2deg);
    transform: rotate(133.2deg)
}

.c100.p38 .bar {
    -webkit-transform: rotate(136.8deg);
    -moz-transform: rotate(136.8deg);
    -ms-transform: rotate(136.8deg);
    -o-transform: rotate(136.8deg);
    transform: rotate(136.8deg)
}

.c100.p39 .bar {
    -webkit-transform: rotate(140.4deg);
    -moz-transform: rotate(140.4deg);
    -ms-transform: rotate(140.4deg);
    -o-transform: rotate(140.4deg);
    transform: rotate(140.4deg)
}

.c100.p40 .bar {
    -webkit-transform: rotate(144deg);
    -moz-transform: rotate(144deg);
    -ms-transform: rotate(144deg);
    -o-transform: rotate(144deg);
    transform: rotate(144deg)
}

.c100.p41 .bar {
    -webkit-transform: rotate(147.6deg);
    -moz-transform: rotate(147.6deg);
    -ms-transform: rotate(147.6deg);
    -o-transform: rotate(147.6deg);
    transform: rotate(147.6deg)
}

.c100.p42 .bar {
    -webkit-transform: rotate(151.2deg);
    -moz-transform: rotate(151.2deg);
    -ms-transform: rotate(151.2deg);
    -o-transform: rotate(151.2deg);
    transform: rotate(151.2deg)
}

.c100.p43 .bar {
    -webkit-transform: rotate(154.8deg);
    -moz-transform: rotate(154.8deg);
    -ms-transform: rotate(154.8deg);
    -o-transform: rotate(154.8deg);
    transform: rotate(154.8deg)
}

.c100.p44 .bar {
    -webkit-transform: rotate(158.4deg);
    -moz-transform: rotate(158.4deg);
    -ms-transform: rotate(158.4deg);
    -o-transform: rotate(158.4deg);
    transform: rotate(158.4deg)
}

.c100.p45 .bar {
    -webkit-transform: rotate(162deg);
    -moz-transform: rotate(162deg);
    -ms-transform: rotate(162deg);
    -o-transform: rotate(162deg);
    transform: rotate(162deg)
}

.c100.p46 .bar {
    -webkit-transform: rotate(165.6deg);
    -moz-transform: rotate(165.6deg);
    -ms-transform: rotate(165.6deg);
    -o-transform: rotate(165.6deg);
    transform: rotate(165.6deg)
}

.c100.p47 .bar {
    -webkit-transform: rotate(169.2deg);
    -moz-transform: rotate(169.2deg);
    -ms-transform: rotate(169.2deg);
    -o-transform: rotate(169.2deg);
    transform: rotate(169.2deg)
}

.c100.p48 .bar {
    -webkit-transform: rotate(172.8deg);
    -moz-transform: rotate(172.8deg);
    -ms-transform: rotate(172.8deg);
    -o-transform: rotate(172.8deg);
    transform: rotate(172.8deg)
}

.c100.p49 .bar {
    -webkit-transform: rotate(176.4deg);
    -moz-transform: rotate(176.4deg);
    -ms-transform: rotate(176.4deg);
    -o-transform: rotate(176.4deg);
    transform: rotate(176.4deg)
}

.c100.p50 .bar {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.c100.p51 .bar {
    -webkit-transform: rotate(183.6deg);
    -moz-transform: rotate(183.6deg);
    -ms-transform: rotate(183.6deg);
    -o-transform: rotate(183.6deg);
    transform: rotate(183.6deg)
}

.c100.p52 .bar {
    -webkit-transform: rotate(187.2deg);
    -moz-transform: rotate(187.2deg);
    -ms-transform: rotate(187.2deg);
    -o-transform: rotate(187.2deg);
    transform: rotate(187.2deg)
}

.c100.p53 .bar {
    -webkit-transform: rotate(190.8deg);
    -moz-transform: rotate(190.8deg);
    -ms-transform: rotate(190.8deg);
    -o-transform: rotate(190.8deg);
    transform: rotate(190.8deg)
}

.c100.p54 .bar {
    -webkit-transform: rotate(194.4deg);
    -moz-transform: rotate(194.4deg);
    -ms-transform: rotate(194.4deg);
    -o-transform: rotate(194.4deg);
    transform: rotate(194.4deg)
}

.c100.p55 .bar {
    -webkit-transform: rotate(198deg);
    -moz-transform: rotate(198deg);
    -ms-transform: rotate(198deg);
    -o-transform: rotate(198deg);
    transform: rotate(198deg)
}

.c100.p56 .bar {
    -webkit-transform: rotate(201.6deg);
    -moz-transform: rotate(201.6deg);
    -ms-transform: rotate(201.6deg);
    -o-transform: rotate(201.6deg);
    transform: rotate(201.6deg)
}

.c100.p57 .bar {
    -webkit-transform: rotate(205.2deg);
    -moz-transform: rotate(205.2deg);
    -ms-transform: rotate(205.2deg);
    -o-transform: rotate(205.2deg);
    transform: rotate(205.2deg)
}

.c100.p58 .bar {
    -webkit-transform: rotate(208.8deg);
    -moz-transform: rotate(208.8deg);
    -ms-transform: rotate(208.8deg);
    -o-transform: rotate(208.8deg);
    transform: rotate(208.8deg)
}

.c100.p59 .bar {
    -webkit-transform: rotate(212.4deg);
    -moz-transform: rotate(212.4deg);
    -ms-transform: rotate(212.4deg);
    -o-transform: rotate(212.4deg);
    transform: rotate(212.4deg)
}

.c100.p60 .bar {
    -webkit-transform: rotate(216deg);
    -moz-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg)
}

.c100.p61 .bar {
    -webkit-transform: rotate(219.6deg);
    -moz-transform: rotate(219.6deg);
    -ms-transform: rotate(219.6deg);
    -o-transform: rotate(219.6deg);
    transform: rotate(219.6deg)
}

.c100.p62 .bar {
    -webkit-transform: rotate(223.2deg);
    -moz-transform: rotate(223.2deg);
    -ms-transform: rotate(223.2deg);
    -o-transform: rotate(223.2deg);
    transform: rotate(223.2deg)
}

.c100.p63 .bar {
    -webkit-transform: rotate(226.8deg);
    -moz-transform: rotate(226.8deg);
    -ms-transform: rotate(226.8deg);
    -o-transform: rotate(226.8deg);
    transform: rotate(226.8deg)
}

.c100.p64 .bar {
    -webkit-transform: rotate(230.4deg);
    -moz-transform: rotate(230.4deg);
    -ms-transform: rotate(230.4deg);
    -o-transform: rotate(230.4deg);
    transform: rotate(230.4deg)
}

.c100.p65 .bar {
    -webkit-transform: rotate(234deg);
    -moz-transform: rotate(234deg);
    -ms-transform: rotate(234deg);
    -o-transform: rotate(234deg);
    transform: rotate(234deg)
}

.c100.p66 .bar {
    -webkit-transform: rotate(237.6deg);
    -moz-transform: rotate(237.6deg);
    -ms-transform: rotate(237.6deg);
    -o-transform: rotate(237.6deg);
    transform: rotate(237.6deg)
}

.c100.p67 .bar {
    -webkit-transform: rotate(241.2deg);
    -moz-transform: rotate(241.2deg);
    -ms-transform: rotate(241.2deg);
    -o-transform: rotate(241.2deg);
    transform: rotate(241.2deg)
}

.c100.p68 .bar {
    -webkit-transform: rotate(244.8deg);
    -moz-transform: rotate(244.8deg);
    -ms-transform: rotate(244.8deg);
    -o-transform: rotate(244.8deg);
    transform: rotate(244.8deg)
}

.c100.p69 .bar {
    -webkit-transform: rotate(248.4deg);
    -moz-transform: rotate(248.4deg);
    -ms-transform: rotate(248.4deg);
    -o-transform: rotate(248.4deg);
    transform: rotate(248.4deg)
}

.c100.p70 .bar {
    -webkit-transform: rotate(252deg);
    -moz-transform: rotate(252deg);
    -ms-transform: rotate(252deg);
    -o-transform: rotate(252deg);
    transform: rotate(252deg)
}

.c100.p71 .bar {
    -webkit-transform: rotate(255.6deg);
    -moz-transform: rotate(255.6deg);
    -ms-transform: rotate(255.6deg);
    -o-transform: rotate(255.6deg);
    transform: rotate(255.6deg)
}

.c100.p72 .bar {
    -webkit-transform: rotate(259.2deg);
    -moz-transform: rotate(259.2deg);
    -ms-transform: rotate(259.2deg);
    -o-transform: rotate(259.2deg);
    transform: rotate(259.2deg)
}

.c100.p73 .bar {
    -webkit-transform: rotate(262.8deg);
    -moz-transform: rotate(262.8deg);
    -ms-transform: rotate(262.8deg);
    -o-transform: rotate(262.8deg);
    transform: rotate(262.8deg)
}

.c100.p74 .bar {
    -webkit-transform: rotate(266.4deg);
    -moz-transform: rotate(266.4deg);
    -ms-transform: rotate(266.4deg);
    -o-transform: rotate(266.4deg);
    transform: rotate(266.4deg)
}

.c100.p75 .bar {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg)
}

.c100.p76 .bar {
    -webkit-transform: rotate(273.6deg);
    -moz-transform: rotate(273.6deg);
    -ms-transform: rotate(273.6deg);
    -o-transform: rotate(273.6deg);
    transform: rotate(273.6deg)
}

.c100.p77 .bar {
    -webkit-transform: rotate(277.2deg);
    -moz-transform: rotate(277.2deg);
    -ms-transform: rotate(277.2deg);
    -o-transform: rotate(277.2deg);
    transform: rotate(277.2deg)
}

.c100.p78 .bar {
    -webkit-transform: rotate(280.8deg);
    -moz-transform: rotate(280.8deg);
    -ms-transform: rotate(280.8deg);
    -o-transform: rotate(280.8deg);
    transform: rotate(280.8deg)
}

.c100.p79 .bar {
    -webkit-transform: rotate(284.4deg);
    -moz-transform: rotate(284.4deg);
    -ms-transform: rotate(284.4deg);
    -o-transform: rotate(284.4deg);
    transform: rotate(284.4deg)
}

.c100.p80 .bar {
    -webkit-transform: rotate(288deg);
    -moz-transform: rotate(288deg);
    -ms-transform: rotate(288deg);
    -o-transform: rotate(288deg);
    transform: rotate(288deg)
}

.c100.p81 .bar {
    -webkit-transform: rotate(291.6deg);
    -moz-transform: rotate(291.6deg);
    -ms-transform: rotate(291.6deg);
    -o-transform: rotate(291.6deg);
    transform: rotate(291.6deg)
}

.c100.p82 .bar {
    -webkit-transform: rotate(295.2deg);
    -moz-transform: rotate(295.2deg);
    -ms-transform: rotate(295.2deg);
    -o-transform: rotate(295.2deg);
    transform: rotate(295.2deg)
}

.c100.p83 .bar {
    -webkit-transform: rotate(298.8deg);
    -moz-transform: rotate(298.8deg);
    -ms-transform: rotate(298.8deg);
    -o-transform: rotate(298.8deg);
    transform: rotate(298.8deg)
}

.c100.p84 .bar {
    -webkit-transform: rotate(302.4deg);
    -moz-transform: rotate(302.4deg);
    -ms-transform: rotate(302.4deg);
    -o-transform: rotate(302.4deg);
    transform: rotate(302.4deg)
}

.c100.p85 .bar {
    -webkit-transform: rotate(306deg);
    -moz-transform: rotate(306deg);
    -ms-transform: rotate(306deg);
    -o-transform: rotate(306deg);
    transform: rotate(306deg)
}

.c100.p86 .bar {
    -webkit-transform: rotate(309.6deg);
    -moz-transform: rotate(309.6deg);
    -ms-transform: rotate(309.6deg);
    -o-transform: rotate(309.6deg);
    transform: rotate(309.6deg)
}

.c100.p87 .bar {
    -webkit-transform: rotate(313.2deg);
    -moz-transform: rotate(313.2deg);
    -ms-transform: rotate(313.2deg);
    -o-transform: rotate(313.2deg);
    transform: rotate(313.2deg)
}

.c100.p88 .bar {
    -webkit-transform: rotate(316.8deg);
    -moz-transform: rotate(316.8deg);
    -ms-transform: rotate(316.8deg);
    -o-transform: rotate(316.8deg);
    transform: rotate(316.8deg)
}

.c100.p89 .bar {
    -webkit-transform: rotate(320.4deg);
    -moz-transform: rotate(320.4deg);
    -ms-transform: rotate(320.4deg);
    -o-transform: rotate(320.4deg);
    transform: rotate(320.4deg)
}

.c100.p90 .bar {
    -webkit-transform: rotate(324deg);
    -moz-transform: rotate(324deg);
    -ms-transform: rotate(324deg);
    -o-transform: rotate(324deg);
    transform: rotate(324deg)
}

.c100.p91 .bar {
    -webkit-transform: rotate(327.6deg);
    -moz-transform: rotate(327.6deg);
    -ms-transform: rotate(327.6deg);
    -o-transform: rotate(327.6deg);
    transform: rotate(327.6deg)
}

.c100.p92 .bar {
    -webkit-transform: rotate(331.2deg);
    -moz-transform: rotate(331.2deg);
    -ms-transform: rotate(331.2deg);
    -o-transform: rotate(331.2deg);
    transform: rotate(331.2deg)
}

.c100.p93 .bar {
    -webkit-transform: rotate(334.8deg);
    -moz-transform: rotate(334.8deg);
    -ms-transform: rotate(334.8deg);
    -o-transform: rotate(334.8deg);
    transform: rotate(334.8deg)
}

.c100.p94 .bar {
    -webkit-transform: rotate(338.4deg);
    -moz-transform: rotate(338.4deg);
    -ms-transform: rotate(338.4deg);
    -o-transform: rotate(338.4deg);
    transform: rotate(338.4deg)
}

.c100.p95 .bar {
    -webkit-transform: rotate(342deg);
    -moz-transform: rotate(342deg);
    -ms-transform: rotate(342deg);
    -o-transform: rotate(342deg);
    transform: rotate(342deg)
}

.c100.p96 .bar {
    -webkit-transform: rotate(345.6deg);
    -moz-transform: rotate(345.6deg);
    -ms-transform: rotate(345.6deg);
    -o-transform: rotate(345.6deg);
    transform: rotate(345.6deg)
}

.c100.p97 .bar {
    -webkit-transform: rotate(349.2deg);
    -moz-transform: rotate(349.2deg);
    -ms-transform: rotate(349.2deg);
    -o-transform: rotate(349.2deg);
    transform: rotate(349.2deg)
}

.c100.p98 .bar {
    -webkit-transform: rotate(352.8deg);
    -moz-transform: rotate(352.8deg);
    -ms-transform: rotate(352.8deg);
    -o-transform: rotate(352.8deg);
    transform: rotate(352.8deg)
}

.c100.p99 .bar {
    -webkit-transform: rotate(356.4deg);
    -moz-transform: rotate(356.4deg);
    -ms-transform: rotate(356.4deg);
    -o-transform: rotate(356.4deg);
    transform: rotate(356.4deg)
}

.c100.p100 .bar {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg)
}

.c100:hover {
    cursor: default
}

.c100:hover>span {
    width: 3.33em;
    line-height: 3.33em;
    font-size: 0.3em;
    color: #21a53f
}

.c100:hover:after {
    top: 0.04em;
    left: 0.04em;
    width: 0.92em;
    height: 0.92em
}

.c100.dark {
    background-color: #777777
}

.c100.dark .bar,
.c100.dark .fill {
    border-color: #c6ff00 !important
}

.c100.dark>span {
    color: #777777
}

.c100.dark:after {
    background-color: #666666
}

.c100.dark:hover>span {
    color: #c6ff00
}

.c100.green .bar,
.c100.green .fill {
    border-color: #4db53c !important
}

.c100.green:hover>span {
    color: #4db53c
}

.c100.green.dark .bar,
.c100.green.dark .fill {
    border-color: #5fd400 !important
}

.c100.green.dark:hover>span {
    color: #5fd400
}

.c100.orange .bar,
.c100.orange .fill {
    border-color: #dd9d22 !important
}

.c100.orange:hover>span {
    color: #dd9d22
}

.c100.orange.dark .bar,
.c100.orange.dark .fill {
    border-color: #e08833 !important
}

.c100.orange.dark:hover>span {
    color: #e08833
}

/* course page */
.course_details .lesson_number {
    display: block;
    color: var(--bs-primary);
    font-size: 20px;
}

.course_register_button {
    display: inline-block;
    background-color: var(--bs-secondary);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

.course_details .media {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.course_details .overblue {
    background: linear-gradient(rgba(41, 48, 59, 0), rgba(63, 76, 107, 0.34), #222a3e);
    opacity: 1 !important;
    transition: .3s;

}

.course_details .media i {
    transition: .2s;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    font-size: 60px;
    background: rgba(0, 0, 0, .5);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    text-align: center;
    line-height: 80px;
    cursor: pointer;
}

.course_sidbar .media:hover i {
    width: 150px;
    height: 150px;
    line-height: 110px;
}

.course_details .course_sidbar {
    padding: 5px;
    border-radius: 3px;
    background-color: #fff;
    margin-top: 5px;

}

.lessons_card {
    display: inline-flex;
    background-color: #fff;
    color: var(--bs-primary) !important;
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
}

.course_short_description {
    background-color: #fff;
    color: var(--bs-primary);
    padding: 20px;
    font-family: inherit !important;
}

.course_short_description * {
    font-family: inherit !important;
}

.course_sidbar .buttons {
    display: flex;
    justify-content: space-between;
}

.course_sidbar .buttons a {
    color: #000 !important;
    display: inline-block;
    padding: 10px 20px;
    background-color: #d3daeb;
    text-decoration: none;
    font-weight: bold;
}

.lesson_progress {
    display: flex;
    height: 25px;
    overflow: hidden;
    font-size: .75rem;
    background-color: #fff;
    border-radius: 0.25rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.lesson_progress-bar {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #007bff;
    transition: width .6s ease;
}

.lesson_progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.lesson_progress h6 {
    line-height: normal;
}

/* Sidebar */
.panel-header {
    background-color: #bbbdc1;
}

.panel-header h2,
.panel-header div {
    padding: 15px;
    margin: 0;
    line-height: 26px;
    font-size: 18px;
    color: #273044;
}

.tab-content #home div,
.tab-content a {
    font-size: 18px;
    display: inline-block;
    line-height: 25px;
    padding: 10px;
    background-color: #fff;
    width: 100%;
    margin-bottom: 5px;
    color: #000;
    text-decoration: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .3)
}

.tab-content a:hover {
    text-decoration: none
}

/* page details */
.page-details {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 5px;
    overflow: hidden;
}

.page-details .header,
#breadcrumb .header {
    background-color: #f1f1f1;
    padding: 20px 15px 15px;
    overflow: hidden;
}

.page-details .breadcrumb_views,
#breadcrumb .breadcrumb_views {
    line-height: 30px;
    overflow: hidden;
}

.page-details .breadcrumb_views .details-breadcrumb,
#breadcrumb .breadcrumb_views .details-breadcrumb {
    background-color: #FFF;
    padding: 5px 10px 5px 10px;
    border-radius: 50px;
}

.page-details .header h1 {
    line-height: 35px;
    font-size: 25px;
    margin: 0px;
    padding: 15px 0px 0px 0px !important;
}

.page-details .breadcrumb_views .views,
.page-details .breadcrumb_views .date {
    background-color: #FFF;
    padding: 5px 10px 5px 10px;
    border-radius: 50px;
    margin-right: 10px;
}

.page-details .content .image {
    text-align: center;
    padding: 15px;
    overflow: hidden;
}

.page-details .content .image img, .page-details .content .item_content img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    height: auto;
}

.page-details .content .item_content {
    padding: 15px;
    font-family: inherit !important;
    font-size: 20px;
    line-height: 35px;
    width: 100%;
    overflow: hidden;
}

.page-details .content .item_content * {
    font-family: inherit !important;
    max-width: 100% !important;
}

/* global */
.primaryColor {
    color: var(--bs-primary) !important;
}

.secondaryColor {
    color: var(--bs-secondary) !important;
}

.backgroundSecondaryColor {
    background-color: var(--bs-secondary) !important;
}

.category-card {
    display: inline-flex;
    background-color: #c8c8c8;
    color: var(--bs-primary) !important;
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    width: 270px;
    height: 100px;
    text-align: center;
    align-items: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.load_more_button,
.jobs_load_more_button,
.see_more_button {
    text-decoration: none !important;
    color: #fff !important;
    background-color: var(--bs-secondary);
    display: inline-flex;
    padding: 5px 20px;
    border-radius: 5px;
    margin-right: 10px;
    align-items: center
}

.see_more_button i {
    margin-right: 5px;
}

.loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgb(106 27 27 / 30%);
    border-radius: 50%;
    border-top-color: #000;
    animation: loader 1s ease-in-out infinite;
    -webkit-animation: loader 1s ease-in-out infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.common_card {
    display: block;
    background: #fff;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 1rem;
    border: 1px solid #efefef;
    transition: all .2s ease-in-out;
    position: relative;
    padding: 0;
    text-decoration: none;
}

.common_card a {
    text-decoration: none;
}

.common_card .fcrse_img {
    border-radius: 1rem 1rem 0 0;
    height: 173px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.common_card .fcrse_img>img {
    width: 100%;
    border-radius: 5px;
    margin: auto;
    display: block;
    height: 100%;
}

.common_card .category {
    bottom: 0;
    position: absolute;
    margin-bottom: 10px;
    left: 0;
    margin-left: 10px;
    background: var(--bs-secondary);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

.common_card .category span {
    color: #ffffff !important;
}

.common_card .fcrse_content {
    height: 85px;
    overflow: hidden;
    padding: 5px;
    text-align: center;
}

.common_card .crse14s {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: right;
    line-height: 25px;
    color: var(--bs-primary) !important;
}

.common_card .wishlist_icon,
.course_card .wishlist_icon {
    position: absolute;
    bottom: -20px;
    left: 47%;
    font-size: 25px;
    color: red;
}

.tag {
    text-decoration: none;
}

.tag h3 {
    background-color: #f1f8fb;
    padding: 5px 10px !important;
    border: 1px solid #bbcadc;
    color: #2b6dad;
    border-radius: 5px;
    margin-left: 10px;
    transition: border .6s;
    line-height: 45px;
    display: inline;
    font-size: 15px;
}

.tags {
    padding: 15px;
    font-size: 17px;
    text-align: center;
    overflow: hidden;
}


.share-box {
    padding: 15px;
    overflow: hidden;
}

.share-box h3 {
    margin: 0px;
    padding-bottom: 15px !important;
    text-align: center;
}

.share-box .platforms {
    padding: 0px !important;
    margin: 0px !important;
    text-align: center;
    overflow: hidden;
}

.facebook_banner img {
    display: block;
    height: auto;
    max-width: 600px;
    margin: auto;
    width: 100%;
}

.related_box {
    color: rgb(255, 255, 255);
    padding-top: 20px;
    overflow: hidden;
}

.related_box .title {
    color: #000;
    width: 100%;
    text-align: center;
    border-bottom: 3px solid var(--bs-primary);
    line-height: 2px;
    margin: 10px 0;
}

.related_box .title span {
    background: #d1d2d5;
    padding: 0 10px;
}

.job_details {
    padding: 15px;
    font-size: 20px;
    line-height: 35px;
    overflow: hidden;
}

.content .category_section {
    text-decoration: none;
}

.content .category_section h1 {
    background-color: #261f1f;
    text-align: center;
    color: white;
    padding: 10px;
}

.telegram_box {
    border: 6px dotted blue;
    animation: 4s infinite glow;
    margin-bottom: 10px;
    background-color: white;
    padding: 20px;
    overflow: hidden;
}

.telegram_box .top_element {
    display: flex;
    overflow: hidden;
}

.telegram_box .top_element .text {
    margin-bottom: 15px;
    margin-right: 15px;
    margin-top: 11px;
    font-weight: bold;
    font-size: 20px;
    overflow: hidden;
}

.telegram_box .top_element .icon {
    overflow: hidden;
    width: 40px;
}

.telegram_box .top_element .icon img {
    width: 100%;
}

.telegram_box .bottom_element {
    color: #797979;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.telegram_box .bottom_element .button a {
    text-decoration: none;
    background: #039be5;
    color: white;
    padding: 7px;
    font-weight: bold;
    line-height: 45px;
    border-radius: 2px;
    margin: 10px;
    font-size: 18px;
}

.cinema_video {
    position: relative;
    margin: 5px;
    text-align: center;
    overflow: hidden;
    max-width: 100%;
    height: 500px;
}
.cinema_video iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@keyframes glow {
    0% {
        border-color: red;
    }

    25% {
        border-color: blue;
    }

    75% {
        border-color: yellow;
    }

    100% {
        border-color: purple;
    }
}

.breadcrumb {
    display: flex;
    list-style: none;
    background: #cdd4dc;
    color: #da5a25 !important;
    font-size: 15px;
    padding: 10px;
}

.breadcrumb .main-border {
    border: 1px solid #eaeaea;
}

.breadcrumb-item a {
    color: var(--bs-primary) !important;
    text-decoration: none !important;
}

.share_btn {
    padding: 10px;
    font-size: 16px !important;
    color: white;
    border-radius: 3px;
    margin: 5px 5px !important;
    display: inline-block;
}

.share_btn:hover {
    color: white;
    box-shadow: 0px 3px 3px #72787e;
}

.fb_share_btn {
    background-color: #007bff;
}

.linkedin_btn {
    background-color: #0f76a8;
}

.twitter_btn {
    background-color: #00acee;
}

.cert {
    box-shadow: 0px 5px 5px lightgray;
    width: 100%;
}

/* Auth */
.register_button,
.login_button {
    display: block;
    color: var(--bs-primary) !important;
    background-color: #d2d6de;
    font-size: 30px;
    font-weight: 700;
    padding: 5px 10px;
    text-decoration: none;
    text-align: center;
}

.google_button {
    display: block;
    background-color: #ed2201;
    color: #fff !important;
    font-size: 25px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 10px 5px;
    border-radius: 2px;

}

.login_container .card .card-body {
    padding: 50px;
}

.login_container .divider {
    display: flex;
    align-items: center;
    text-align: center;
}

.login_container .divider-line {
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.login_container .divider-text {
    margin: 0 5px;
    color: #666;
    /* Or any color you want for the text */
    background: #fff;
    /* Background color of your container */
    padding: 0 5px;
    font-weight: bold;
}


.styled-input {
    width: 100%;
    /* Full width minus padding */
    padding: 10px;

    border: none;
    border-radius: 15px;
    /* Rounded corners for input fields */
    background-color: #edf5f4;
    outline: none;
}

.styled-input::placeholder {
    color: #aaa;
    /* Placeholder text color */
}

.login_container .submit {
    border-radius: 50px;
    background-color: #28b499;
    border: none;
    color: #fff;
    padding: 10px 20px;
    width: 50%;
    font-size: 20px;
    font-weight: 500;
}

.styled-input .input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.login_container .password-icon,
.login_container .password-confirm-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
    /* Icon color */
}

.custom-dropdown {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #d3d7e0;
    color: #575e71;
}


.custom-dropdown .selected-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-dropdown .selected-item .arrow {
    margin-left: 10px;
    color: #575e71;
}

.options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    border-top: none;
    z-index: 1000;
}

.option {
    padding: 10px;
    cursor: pointer;
}

.option:hover {
    background-color: #eee;
}

.icon {
    width: 16px;
    height: 16px;
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-search {
    width: 100%;
    padding: 8px 10px;
    border: none;
    box-sizing: border-box;
    margin-bottom: 8px;
}

/* profile */
.profile_header {
    display: flex;
    justify-content: center;
    background-color: #42689c;
    width: 100%;
}

.profile-header-item {
    display: inline-block;
    color: #fff !important;
    padding: 10px;
    font-size: 25px;
    text-decoration: none;
}

.profile-header-active {
    background-color: #0A5885;
}

.save_button {
    border-radius: 50px;
    background-color: #28b499;
    border: none;
    color: #fff;
    padding: 10px 20px;
    width: 50%;
    font-size: 20px;
    font-weight: 500;
}

/* certificate  */
.congrat {
    /* color: rgb(10, 95, 29); */
    font-size: 26px;
    box-shadow: rgb(152, 181, 169) 0px 2px 5px;
    text-align: center;
    margin-bottom: 20px;
    /* background: rgb(159, 224, 174); */
    padding: 34px 0px;
}

/* footer */
.content-footer {
    background-color: #c2c5cd;
    padding: 10px 0px;
}

.content-footer a {
    text-decoration: none !important;
}

.new_footer_top {
    overflow-x: hidden;
    padding: 70px 0;
    position: relative;
}

.new_footer_area .footer_bottom {
    padding-bottom: 50px;
    padding-top: 5px;
}

.footer_bottom {
    color: #7f88a6;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    padding: 27px 0;
}

.new_footer_top .company_widget p {
    color: #6a7695;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 20px;
}

.btn:focus,
.btn:hover,
a:focus,
a:hover,
button:focus,
button:hover {
    outline: none;
    text-decoration: none;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: #006db1;
}

.new_footer_top .f_widget.about-widget .f_list li {
    margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
    color: initial;
    margin-bottom: 10px;
}

.f_widget.about-widget .f_list li {
    margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
    margin-bottom: 0;
}

.new_footer_top .f_social_icon a {
    background: transparent;
    border: 1px solid #e2e2eb;
    font-size: 24px;
    height: 44px;
    line-height: 43px;
    width: 44px;
}

.f_social_icon a {
    background: #ebeef5;
    border-radius: 50%;
    color: #858da8;
    display: inline-block;
    font-size: 14px;
    height: 46px;
    line-height: 45px;
    text-align: center;
    transition: all .2s linear;
    width: 46px;
}

.new_footer_top .f_social_icon a:hover {
    background: #006db1;
    border-color: #006db1;
    color: #fff;
}

.new_footer_top .f_social_icon a+a {
    margin-bottom: 4px;
    margin-left: 4px;
}

.new_footer_top .f-title {
    color: #263b5e;
    margin-bottom: 10px;
}

.f_600 {
    font-weight: 600;
}

.f_size_18 {
    font-size: 18px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
    color: #6a7695;
}

.social-widget {
    margin-bottom: 20px;
}

.chat_bot {
    background-color: #0f1517;
    padding: 50px 0;
}

/* paginate */
.pagBox {
    text-align: center;
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.pagBox .pagination {
    display: inline-flex !important;
    -webkit-padding-start: 0px !important;
}

.pagBox .pagination {
    padding-right: 0px;
}

.pagination .page-item {
    padding: 0
}

.pagination .main-box {
    padding: 10px;
    border: 1px solid #dddddd;
    background-color: #fff;
    margin: 5px;
}

.wishlist_title {
    color: var(--bs-primary);
    position: relative;
    display: inline-block;
}

.wishlist_title::after {
    content: '';
    display: block;
    width: 90%;
    height: 2px;
    background-color: var(--bs-primary);
    position: absolute;
    bottom: 0;
}

.lessons_progress {
    padding-right: 0px !important;
}

.lessons_progress li {
    min-height: 70px;
    background: white;
    border-top: 1px solid lightgray;
    padding: 5px 10px;
    font-weight: bold;
    position: relative;
    padding-right: 70px;
    padding-top: 20px;
}

.lessons_progress span {
    width: 50px;
    height: 50px;
    display: inline-block;
    border-radius: 50%;
    background: lightgray;
    text-align: center;
    margin-left: 15px;
    line-height: 50px;
    position: absolute;
    right: 10px;
    top: 8px;
    overflow: hidden;
}

.lessons_progress span div {
    background: #21a53f;
    width: 50px;
    display: inline-block;
    position: absolute;
    right: 0px;
    z-index: 0;
}

.lessons_progress span small {
    z-index: 13;
    position: relative;
    font-weight: bold;
    color: #145d24;
}

.lessons_progress a {
    float: left;
    margin-top: 6px;
    position: absolute;
    left: 10px;
    top: 6px;
}

/* Search modal */
#modal_search_view .close {
    font-size: 60px;
    color: var(--bs-primary) !important;
    text-decoration: none;
}


.sm_searchform .mb_seacrhed::-webkit-input-placeholder,
.searchform_cl .searched_words::-webkit-input-placeholder {
    color: #bbbbbb;
    font-size: 20px;
}

.sm_searchform .mb_seacrhed:focus {
    outline: none;
}

.sm_searchform {
    background: #ffffff;
    padding: 3px;
    border-radius: 3px;
    width: 100%;
    position: relative;
    margin: 20px 0px;
}

.sm_searchform .mb_seacrhed {
    padding: 15px;
    color: #4f5360;
    font-weight: bold;
    height: 60px;
    width: 100%;
    padding-left: 100px;
    border: 0px;
    border: 1px solid var(--bs-primary);
    font-size: 25px;
    border-radius: 3px;
}

.sm_searchform #searchSubmit {
    position: absolute;
    height: 60px !important;
    left: 3px;
    width: 100px;
    top: 3px;
    background: var(--bs-primary);
    border: none;
    border: 0px;
    color: white;
    font-size: 25px;
    cursor: pointer;
}

.search_action {
    vertical-align: top;
    text-decoration: none !important;
}

.search_action .list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
}

.search_action .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.search_action .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}


@media screen and (max-width:1000px) {

    .sm_searchform .mb_seacrhed::-webkit-input-placeholder,
    .searchform_cl .searched_words::-webkit-input-placeholder {
        font-size: 16px !important;
    }

    #modal_seach_view .modal-body {
        padding: 0px;
    }

    .sm_searchform .mb_seacrhed {
        font-size: 20px !important;
        padding-left: 78px !important;
    }

    .sm_searchform #searchSubmit {
        font-size: 22px !important;
        width: 72px !important;
        position: absolute;
        height: 60px !important;
        left: 4px !important;
        width: 100px;
        top: 3px !important;
        background: var(--bs-primary);
        border: none;
        border: 0px;
        color: white;
        font-size: 25px;
        cursor: pointer;
    }
}
@media screen and (max-width:600px) {

    .cinema_video {
        height: 250px !important;
    }
}
/* End Search modal */

.sidebar-active {
    background-color: #cdd4dc !important;
}

/* Services */
.a_feature {
    display: block;
    margin: 20px 0px !important;
}

.gate a {
    text-decoration: none !important;
}

.gate .feature {
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 0 2px 8px #bbb;
    padding: 20px;
    text-align: center;
}

.gate .feature span.h2 {
    display: flex;
    height: 70px;
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    /* padding: 10px 5px; */
    text-align: center;
    text-decoration: none !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.a_feature .feature .image {
    width: 100px;
}

.a_feature .feature .image img {
    width: 100%;
}

.gate h1 {
    color: #b33e0e;
}

.gate #searchform {
    margin: 0;
}

.gate .info img {
    width: 200px;
}

.gate .info {
    font-size: 30px;
}

.gate .info p {
    display: inline-block;
}

.gate .media {
    margin-bottom: 40px;
}

.home_service_text {
    font-size: 18px;
}

.page-details .content .item_content iframe {
    width: 100% !important;
}

.cinemas-footer {
    /*background-color: #f8f9fa;*/
    background-color: #fff;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
    direction: rtl;
    margin-bottom: 50px;
}

.cinema-category {
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.cinema-category h3 {
    font-size: 20px;
    color: #1a1b1c;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: right;
}

.cinema-subcats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 25px;
}

.cinema-subcats li {
    text-align: right;
}

.cinema-subcats a {
    display: block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    transition: color 0.2s ease;
    font-weight: 600;
}

.cinema-subcats a:hover {
    color: #0a66c2;
    text-decoration: underline;
}
/*test*/
/* Responsive grid for smaller screens */
@media (max-width: 992px) {
    .cinema-subcats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cinema-subcats {
        grid-template-columns: repeat(1, 1fr);
    }
}
.courses-footer {
    background-color: #fff; /* light gray background */
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
    direction: ltr;
    text-align: left;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Each category column */
.course-category {
    position: relative;
    padding-inline: 10px;
}

/* Add vertical line separator between columns */
.course-category:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0; /* For RTL, line appears on left */
    width: 1px;
    background-color: #ddd;
}

/* Category title */
.course-category h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    font-family: 'Source Sans Pro',Arial,sans-serif;
}

/* Subcategories list */
.course-subcats {
    list-style: none;
    margin: 0;
    padding: 0;
}

.course-subcats li {
    margin-bottom: 10px;
}

/* LinkedIn-style link */
.course-subcats a {
    color: #444;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: 'Source Sans Pro',Arial,sans-serif;
}

.course-subcats a:hover,
.course-subcats a:focus {
    color: #0077b5; /* LinkedIn blue */
    text-decoration: underline;
}

/* Responsive behavior */
@media (max-width: 1024px) {
    .courses-footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-category:not(:last-child)::after {
        display: none; /* remove vertical lines on tablet */
    }
}

@media (max-width: 600px) {
    .courses-footer {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }

    .course-category:not(:last-child)::after {
        display: none; /* remove on mobile */
    }

    .course-category h3 {
        font-size: 1rem;
    }
}

.language-courses {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background-color: #e6ebef;
    padding: 3rem 1rem;
    flex-wrap: wrap;
  }

  .course-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem 3rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 330px;
    text-decoration: none;
    /*margin: 0rem 1rem;*/
  }

  .course-card:hover {
    background-color: #f7f9fc;
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  }

  .course-card:hover .card-icon {
    transform: scale(1.2);
  }

  .course-card h3 {
    font-size: 1.2rem;
    color: #222;
    margin-top: 1rem;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
  }

  /* Selected (active) card */
  .course-card.active {
    background-color: #858da4;
    color: #fff;
    box-shadow: 0 6px 18px rgba(26, 115, 232, 0.4);
  }

  .course-card.active h3 {
    color: #fff;
  }

  .course-card.active .card-icon {
    transform: scale(1.1);
  }

  .eng-label {
    direction: ltr !important;
    text-align: left !important;
  }


.course-sub-footer {
    /*background-color: #f8f9fa;*/
    background-color: #fff;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
    direction: ltr;
    margin-bottom: 50px;
}

.course-sub-category {
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.course-sub-category h3 {
    font-size: 16px;
    color: #1a1b1c;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    font-family: 'Source Sans Pro',Arial,sans-serif;
}

.course-sub-subcats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 25px;
}

.course-sub-subcats li {
    text-align: left;
}

.course-sub-subcats a {
    display: block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    transition: color 0.2s ease;
    font-weight: 600;
    font-family: 'Source Sans Pro',Arial,sans-serif;
}

.course-sub-subcats a:hover {
    color: #0a66c2;
    text-decoration: underline;
}
/*test*/
/* Responsive grid for smaller screens */
@media (max-width: 992px) {
    .course-sub-subcats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .course-sub-subcats {
        grid-template-columns: repeat(1, 1fr);
    }
}

.islamic-course-subcats {
    list-style: none;
    margin: 0;
    padding: 0;
}

.islamic-course-subcats li {
    margin-bottom: 10px;
}

/* LinkedIn-style link */
.islamic-course-subcats a {
    color: #444;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: 'Source Sans Pro',Arial,sans-serif;
}

.islamic-course-subcats a:hover,
.islamic-course-subcats a:focus {
    color: #0077b5; /* LinkedIn blue */
    text-decoration: underline;
}

.islamic-course-sub-category h3 {
    font-size: 16px;
    color: #1a1b1c;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: right;
    font-family: 'Source Sans Pro',Arial,sans-serif;
}
.islamic-course-category {
    position: relative;
    padding-inline: 10px;
    text-align: right;
}

/* Add vertical line separator between columns */
.islamic-course-category:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0; /* For RTL, line appears on left */
    width: 1px;
    background-color: #ddd;
}

/* Category title */
.islamic-course-category h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    font-family: 'Source Sans Pro',Arial,sans-serif;
}
.islamic-course-sub-subcats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 25px;
    direction: rtl;
}

.islamic-course-sub-subcats li {
    text-align: right;
}

.islamic-course-sub-subcats a {
    display: block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    transition: color 0.2s ease;
    font-weight: 600;
    font-family: 'Source Sans Pro',Arial,sans-serif;
}

.islamic-course-sub-subcats a:hover {
    color: #0a66c2;
    text-decoration: underline;
}
/*test*/
/* Responsive grid for smaller screens */
@media (max-width: 992px) {
    .islamic-course-sub-subcats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .islamic-course-sub-subcats {
        grid-template-columns: repeat(1, 1fr);
    }
}
