.cd-horizontal-timeline {
    opacity: 0;
    margin: 2em auto;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

    .cd-horizontal-timeline::before {
        content: 'mobile';
        display: none;
    }

    .cd-horizontal-timeline.loaded {
        opacity: 1;
    }

    .cd-horizontal-timeline .timeline {
        position: relative;
        height: 100px;
        width: 100%;
        margin: 0 auto;
    }

    .cd-horizontal-timeline .events-wrapper {
        position: relative;
        height: 100%;
        margin: 0 10px;
        overflow: hidden;
    }

    .cd-horizontal-timeline .events {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 49px;
        height: 2px;
        background: #dfdfdf;
        -webkit-transition: -webkit-transform 0.4s;
        -moz-transition: -moz-transform 0.4s;
        transition: transform 0.4s;
    }

    .cd-horizontal-timeline .filling-line {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: #000000;
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -ms-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: -webkit-transform 0.3s;
        -moz-transition: -moz-transform 0.3s;
        transition: transform 0.3s;
    }

    .cd-horizontal-timeline .events a {
        position: absolute;
        bottom: 0;
        z-index: 2;
        text-align: center;
        font-size: 20px;
        padding-bottom: 15px;
        color: #BEBEBE;
        font-weight: bold;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }

        .cd-horizontal-timeline .events a::after {
            content: '';
            position: absolute;
            left: 50%;
            right: auto;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            bottom: -3px;
            height: 9px;
            width: 9px;
            border-radius: 50%;
            border: 2px solid #fff;
            background-color: #C8C8C8;
            -webkit-transition: all 0.3s ease-in;
            -moz-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in;
        }

.no-touch .cd-horizontal-timeline .events a:hover::after {
    background-color: #7b9d6f;
    border-color: #7b9d6f;
}

.cd-horizontal-timeline .events a.selected {
    pointer-events: none;
    color: #D3CB69;
    font-size: 25px;
}

    .cd-horizontal-timeline .events a.selected::after {
        background-color: #D3CB69;
        height: 14px;
        width: 14px;
        bottom: -5px;
        border-color: #F2F2F2;
    }

.cd-horizontal-timeline .events a.older-event::after {
    background-color: #000;
}

@media only screen and (min-width: 1100px) {
    .cd-horizontal-timeline {
        margin: 6em auto;
    }

        .cd-horizontal-timeline::before {
            content: 'desktop';
        }
}

.cd-timeline-navigation a {
    position: absolute;
    z-index: 1;
    top: 38px;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 34px;
    width: 34px;
    border-radius: 50%;
    overflow: hidden;
    color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

    .cd-timeline-navigation a::after {
        content: '';
        position: absolute;
        height: 11px;
        width: 11px;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
        border: 2px solid #0A0A0A;
        border-right: 0;
        border-top: 0;
    }

    .cd-timeline-navigation a.prev {
        left: -5px;
        -webkit-transform: rotate(180);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .cd-timeline-navigation a.next {
        right: -5px;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }

        .cd-timeline-navigation a.next:after {
            top: 20%;
        }

.no-touch .cd-timeline-navigation a:hover {
    border-color: #7b9d6f;
}

.cd-timeline-navigation a.inactive {
    cursor: not-allowed;
}

    .cd-timeline-navigation a.inactive::after {
        background-position: 0 -16px;
    }

.no-touch .cd-timeline-navigation a.inactive:hover {
    border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
    position: relative;
    width: 100%;
    margin: 2em 0;
    overflow: hidden;
    -webkit-transition: height 0.4s;
    -moz-transition: height 0.4s;
    transition: height 0.4s;
    direction: rtl;
}

    .cd-horizontal-timeline .events-content li {
        position: absolute;
        z-index: 1;
        width: 100%;
        left: 0;
        top: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        padding: 0 .5%;
        opacity: 0;
        -webkit-animation-duration: 0.4s;
        -moz-animation-duration: 0.4s;
        animation-duration: 0.4s;
        -webkit-animation-timing-function: ease-in-out;
        -moz-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

        .cd-horizontal-timeline .events-content li.selected {
            position: relative;
            z-index: 2;
            opacity: 1;
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
        }

        .cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
            -webkit-animation-name: cd-enter-right;
            -moz-animation-name: cd-enter-right;
            animation-name: cd-enter-right;
        }

        .cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
            -webkit-animation-name: cd-enter-left;
            -moz-animation-name: cd-enter-left;
            animation-name: cd-enter-left;
        }

        .cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
            -webkit-animation-direction: reverse;
            -moz-animation-direction: reverse;
            animation-direction: reverse;
        }

        .cd-horizontal-timeline .events-content li > * {
            margin: 0 auto;
        }

    .cd-horizontal-timeline .events-content h3 {
        color: #000000;
        font-size: 20px;
        line-height: 38px;
    }

    .cd-horizontal-timeline .events-content em {
        display: block;
        font-style: italic;
        margin: 10px auto;
    }

        .cd-horizontal-timeline .events-content em::before {
            content: '- ';
        }

    .cd-horizontal-timeline .events-content p {
        font-size: 14px;
        color: #000;
        line-height: 27px;
    }

@-webkit-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}

@-moz-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -moz-transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0%);
    }
}

@keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}

@-moz-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0%);
    }
}

@keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}

body {
    font-family: 'DroidArabicKufi', 'DroidSans', sans-serif;
    font-size: 16px;
}

.lang-tog {
    font-family: 'DroidSans', sans-serif;
    font-size: 13px;
}

header .navbar .nav-item .nav-link {
    font-size: 14px;
}

.user-summary .dropdown-menu {
    left: 8px;
    right: auto;
}

.box-w .desc {
    font-size: 12px;
}

.btn-grd {
    background: linear-gradient(-232.56deg, var(--c2, --c2), var(--c1, --c1) 51%, var(--c2, --c2)) var(--x, 0)/200%;
}

    .btn-grd:hover {
        --x: -100%;
    }

.form-check-input[type="checkbox"] + label:before, .form-check-input[type="checkbox"]:not(.filled-in) + label:after, label.btn input[type="checkbox"] + label:before, label.btn input[type="checkbox"]:not(.filled-in) + label:after {
    left: 5px;
    right: auto;
}

.form-check-input[type="checkbox"]:checked + label:before, label.btn input[type="checkbox"]:checked + label:before {
    top: -4px;
    left: 5px;
    right: auto;
    width: 12px;
    height: 1.375rem;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #0E8A8A;
    border-bottom: 2px solid #0E8A8A;
    transform: rotate(40deg);
    backface-visibility: hidden;
    transform-origin: 100% 100%;
}

.select-wrapper .form-check-input[type="checkbox"]:checked + label:before, .select-wrapper label.btn input[type="checkbox"]:checked + label:before {
    top: -4px;
    left: 5px;
    right: auto;
}

.form-check-input-2[type="checkbox"] + label:before, .form-check-input-2[type="checkbox"]:not(.filled-in) + label:after {
    left: auto;
    right: -20px;
}

.form-check-input-2[type="checkbox"] + label {
    padding-right: 4px;
    font-size: 13px;
}

.form-check-input[type="checkbox"]:checked + label {
    font-weight: bold;
}

    .form-check-input[type="checkbox"]:checked + label:before {
        left: auto;
        right: -10px;
    }

.eg-carousel.flickity-rtl .flickity-prev-next-button.previous {
    right: 31% !important;
}

.eg-carousel.flickity-rtl .flickity-prev-next-button.next {
    left: 31% !important;
}

.eg1-carousel.flickity-rtl .flickity-prev-next-button.previous {
    right: 2rem !important;
}

.eg1-carousel.flickity-rtl .flickity-prev-next-button.next {
    left: auto !important;
    right: calc(2rem + 62px) !important;
}

.eg1-carousel .flickity-button:disabled {
    opacity: 0.8;
}

#directoryList .dl-box .file-download {
    background-position: 10px 9px;
}

#search-container-v2 a[class*=-view] > span:before {
    right: auto;
    left: 4px;
}

#search-container-v2 a[class*=-view].grid-view > span .fa {
    right: auto;
    left: -1px;
}

.dd-social-share .social-links a.btn-close:before {
    left: auto;
    right: 1px;
}

@media only screen and (max-width: 992px) {
    .eg-carousel.flickity-rtl .flickity-prev-next-button.previous {
        right: 21% !important;
    }

    .eg-carousel.flickity-rtl .flickity-prev-next-button.next {
        left: 21% !important;
    }
}

@media only screen and (max-width: 768px) {
    .eg-carousel.flickity-rtl .flickity-prev-next-button.previous {
        right: 5% !important;
    }

    .eg-carousel.flickity-rtl .flickity-prev-next-button.next {
        left: 5% !important;
    }
}

@media only screen and (max-width: 768px) {
    #search-container-v2 a[class*=-view].grid-view > span .fa {
        right: auto;
        left: 0px;
    }
}

.category-service-list .accordion .card-body ul li:before, .general-accordion-menu .accordion .card-body ul li:before {
    content: "\f104";
}

.general-accordion-menu .md-accordion .card .card-header a:not(.collapsed) .rotate-icon {
    transform: rotate(-90deg);
}

.general-accordion-menu .accordion .card-header h5 .rotate-icon {
    transform: rotate(0deg);
}

    .general-accordion-menu .accordion .card-header h5 .rotate-icon:before {
        position: relative;
        right: 1px;
    }

@media only screen and (max-width: 375px) {
    .btn-xxl {
        padding: 1rem !important;
        text-align: center;
    }
}
#sticky-footer {
  flex-shrink: none;
}