
@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}


:root {
    --dark-bg: #fff;
    --secondary-dark: #1c2326;
    --secondary-color: #f5f5f5;
    --gray-color: #333333;
    --accent-color: #00999A;
    --font-1: "Readex Pro", serif;
    --font-2: "Readex Pro", serif;
}

body {
    font-family: var(--font-2);
    color: white;
    background-color: #ffffff;
    direction: rtl;
    text-align: right;
}

h1 {
    font-size: 76px;
}

h2 {
    font-size: 68px;
}

h3 {
    font-size: 48px
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

ul {
    list-style: none;
}

img {
    object-fit: cover;
}

section {
    background-size: cover;
    background-position: center;
}

button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

.button {
    padding-inline: 17px;
    padding-block: 15px;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--accent-color);
    border: solid 2px var(--accent-color);
    font-weight: 600;
}

.button-outline,
.button-outline:hover {
    border-width: 1px;
    border-color: currentColor;
    border-style: solid;
}

.button:hover {
    color: #333333 !important;
    background-color: transparent;
    border: solid 2px var(--accent-color);
}

.hover-transform:hover {
    transform: translateY(-10px);
}

button:hover {
    color: black;
}

a {
    text-decoration: none;
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.fw-black {
    font-weight: 900 !important;
}

.btn-outline {
    background-color: transparent;
    border: solid 1px currentColor !important;
}

.form input,
.form textarea,
.form select {
    background-color: transparent;
    border-radius: 0;
    border: solid 2px var(--accent-color) ;
    color: white;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    box-shadow: none;
    border: solid 2px var(--accent-color) ;

}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--gray-color);
    font-family: var(--font-2);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-lg" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--accent-color);
    color: white;
    border-radius: 5px;
    border: solid 2px var(--accent-color);
}

.submit_form:hover {
    background-color: transparent;
}

.submit_form-subscribe {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: var(--accent-color-1);
    border-radius: 5px;
}

.submit_form-subscribe:hover {
    background-color: var(--dark-bg);
    color: white;
    filter: none;
}

.maps {
    width: 100%;
    height: 480px;
    transition: filter 0.5s;
}

#header {
    transition: all 0.5s ease;
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-2);
    padding-block: 1.2rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    border: none;
    color: var(--accent-color);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
    color: var(--accent-color);
}

.dropdown-menu {
    background-color: #21282b;
    border-radius: 0;
    border: none;
    padding: 0.75rem;
    width: 200px;
}

.dropdown-item {
    padding-block: 0.75rem;
    color: white;
    font-family: var(--font-2);
    font-size: 0.95rem;
    font-weight: 400;
    padding-inline: 0.75rem;
    text-align: right;
}

.dropdown-item.active {
    color: white;
    background-color: var(--accent-color);
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: white;
}

.dropdown-item:focus {
    color: var(--accent-color);
}

.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
}

.r-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.bg-dark-color {
    background-color: var(--dark-bg);
}

.bg-secondary-color {
    background-color: var(--secondary-color);
}

.bg-secondary-dark {
    background-color: var(--secondary-dark);
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.accent-color {
    color: var(--accent-color);
}


.border-accent-color {
    border-color: var(--accent-color) !important;
}

.text-gray {
    color: var(--gray-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color);
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.btn-dark {
    background-color: var(--dark-bg);
    color: white;
    border: none;
}

.btn-dark:hover {
    background-color: var(--accent-color-1);
    color: white;
    border: none;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background-color: black;
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-2 {
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background-color: black;
    opacity: 0.3;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.overlay {
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(-180deg, transparent 0%, #000000 100%);
    opacity: 1;
}

.texture-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background-image: url("../image/texture.png");
    background-position: center center;
    background-size: cover;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    opacity: .03;
}

.logo-container {
    max-width: 170px;
}

.logo-filter {
    filter: brightness(200%) contrast(0%) saturate(200%) blur(0px) hue-rotate(0deg);
}

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

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid #8692af;
    max-width: 30px;
    min-width: 30px;
}


.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-right: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: var(--secondary-color);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 8px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 3px;
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    /* border-radius: 3px; */
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    right: calc((var(--progress) * 1%) - 2rem);
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: var(--accent-color);
    font-size: 14px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
    top: -1.2rem;
}

.bg-attach-fixed {
    background-attachment: fixed;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.lh-1 {
    line-height: 1.4 !important;
}

.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 14px;
    width: 1.7rem;
    height: 1.7rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    color: white;

}

.social-item:hover {
    color: var(--accent-color) !important;
    background-color: white;
}

.share-button {
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.share-button:hover {
    background-color: var(--accent-color);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
    padding: 16px 12px;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: #333333;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.breadcrumb .breadcrumb-item>a {
    color: var(--accent-color);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--accent-color-1);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--accent-color-1);
    float: right;
    margin-left: 10px;
}

.swiper-pagination {
    margin-block: 1rem;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
}

.video-container {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-iframe {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 5rem;
    background-color: transparent;
    border: solid 2px var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
}

.video-btn:hover {
    color: var(--accent-color);
}

.border-custom {
    border-width: 0px 0px 0px 1px;
    border-color: var(--accent-color);
    border-style: solid;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5rem;
    aspect-ratio: 1/1;
    width: 4rem;
    height: 4rem;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    border: solid 2px var(--accent-color);
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 25px;
}

.request-loader:hover {
    border: solid 2px var(--accent-color);
    color: white;
    background-color: transparent;
}


.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.card.with-border-bottom {
    border-bottom: 5px solid var(--accent-color) !important;
}

.list-group .list-group-item {
    border: none;
    border-radius: 5px;
}

.list-group .list-group-item.active {
    background-color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color);
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.accordion-button:not(.collapsed):hover {
    color: white;
}


.accordion-button {
    background-color: transparent;
    border-radius: 0px;
    color: white;
    border: 2px solid var(--accent-color);
    font-family: var(--font-2);
    border-radius: 5px;
}

.accordion-button:hover {
    color: var(--accent-color);
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
    border: 2px solid var(--accent-color);

}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 1rem;
}

.accordion-button::after {
    filter: invert(1);
}

[data-bs-theme=light] .accordion-button::after {
    --bs-accordion-btn-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
    --bs-accordion-btn-active-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
}

.outer-margin {
    margin-left: -7rem;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.list li {
    padding: 0;
}

.card .link {
    color: #333333;
    transition: color 0.5s;
}

.card .link:hover {
    color: var(--accent-color);
}

.link.accent-color {
    color: var(--accent-color);
    transition: color 0.5s;
}

.link.accent-color:hover {
    color: var(--dark-bg);
}


.link-white {
    color: #333333;
}

.link-white:hover {
    color: var(--accent-color);
}

.glass-effect {
    background: #202020b3;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

.fs-very-large {
    font-size: 4.125rem;
}

.border-bottom-hover:hover {
    border-bottom: 2px solid var(--accent-color);
}

.testimonial-container {
    background-color: #1c2326b3;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.rating {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.rating li {
    color: var(--accent-color);
}

.logo-partner {
    filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.5s;
}

.logo-partner:hover {
    filter: none;
}

@media only screen and (max-width:993px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 14px;
    }

    h6 {
        font-size: 12px;
    }

    .section {
        padding: 6em 2em 6em 2em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .image-absolute-1 {
        right: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }

    #header {
        background: #202020b3;
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .outer-margin {
        margin-left: 0;
    }

    .nav-link {
        padding-block: 0.2rem;
    }

    .banner-image {
        margin: 0;
        transform: none;
    }

    .heading {
        margin-top: -40px;
    }

    .testimonial-img {
        margin: 0;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        width: 100%;
    }
}

.me-3 img {
    height: 20px;
    width: 20px;
    margin: 0 12px;
}

.me-3 {
    margin: 4px 1px;
}

.timeline {
    display: flex;
    flex-direction: column;
    width: 50vw;
    margin: 5% auto;
  }
  .timeline__event {
    background: #fff;
    border: 1px solid #e9e9e9;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  }
  .timeline__event__title {
    font-size: 1.2rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    color: #00999A;
  }
  .timeline__event__content {
    padding: 20px;
  }
  .timeline__event__date {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
  }
  .timeline__event__icon {
    border-radius: 0 8px 8px 0;
    background: #00999A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 40%;
    font-size: 2rem;
    color: #00999A;
    padding: 20px;
  }
  .timeline__event__icon i {
    position: absolute;
    top: 50%;
    right: -65px;
    font-size: 2.5rem;
    transform: translateY(-50%);
  }
  .timeline__event__description {
    flex-basis: 60%;
  }

  .timeline__event__description p {
    color: #303030;
  }
  

  .nav-tabs .nav-link.active {
    color: #000; 
    background-color: #dbdbdb; 
    border-color: #dee2e6 #dee2e6 #fff; 
}

.nav-tabs .nav-link {
    transition: background-color 0.3s, color 0.3s;
}



@media (max-width: 768px) {
    .nav-tabs {
        flex-direction: row; 
    }
}


.timeline__event {
    padding: 6px;
}

.overflow-auto {
    overflow-y: scroll; 
    height: 430px;
    
}

.cuc-img  img{
    height: 64px;
    width: 64px;
    object-fit: cover;
}

.description {
    font-size: 1rem;
    color: #333333;
    margin-top: 12px;
    margin-bottom: 20px;
}

.archive-list {
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.archive-list li {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.archive-list li:hover {
    background-color: #00999a; 
    border: red !important;
}

.archive-list i {
    margin-left: 10px;
    color: #00999a; 
}

.archive-list:hover i {
    color: #222121; 
}

.overflow-auto {
    overflow-y: auto; 
}

.b-border li {
    border: 1px solid #575757;
    border-radius: 4px;
}

.archive-list li:hover .b-border li{
    border: 1px solid #ffffff57;
    background: #049191;

}

.stat-card {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px); 
}

.stat-card i {
    font-size: 50px;
    color: #00999A; 
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
}

.stat-description {
    font-size: 1rem;
    color: #555;
}

.intro-text {
    font-size: 1rem;
    max-width: 800px;
    color: #c0c0c0;
}

@media (max-width: 768px) {
    .stat-card {
        margin-bottom: 20px; 
    }
}


.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; 
}

.download-btn {
    display: inline-block;
    text-decoration: none; 
}
.btn-search{
    background-color: var(--accent-color);
    color: #fff;
}
.btn-search:hover{
    background-color: var(--accent-color);
}
.store-icon {
    width: 160px; 
    transition: transform 0.3s; 
}

.store-icon:hover {
    transform: scale(1.05);
}

.bg-app {
    background-image: url(../image/texture.png);
    background-position: center center;
    background-size: cover;
}

.section-1 {
    padding: 6em 2em 2em 2em;
}

.colored li a {
    color: #fff !important;
}

.mx-h {
    max-height: 500px;
}

.icon-large {
    font-size: 2rem; 
    display: block; 
    margin-bottom: 0.5rem; 
}
.cycle {
    text-align: center;
    display: block;
}

.green-colored {
    color: #00999a;
}

.alert-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.icon-container {
    border: 2px solid #00999a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}
.volume-control {
    margin-right: auto;
    width: 100px;
}
.program-name {
    margin-right: 10px;
}


.custm-page {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #3d3d3d;
    border-radius: 0;
}

.card-body {
    text-align: right;
}

.social-container .social-item {
    cursor: pointer;
}

.border-left {
    border-left: 1px solid #666666;
}

@media (min-width: 320px) and (max-width: 1023px) {
  
    .cc-mobile {
        width: 100% !important;
    }

    .border-t {
        border-top: 1px solid #525252;
    }
    
  }

/* pagination */
.pagination{
    flex-wrap: wrap;
}
.page-link{
    color: var(--accent-color);
}
.active>.page-link, .page-link.active{
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.video-js .vjs-big-play-button{
    display: none !important;
}

.active-program {
    border-left: 5px solid var(--accent-color);
    padding: 10px;
    border-radius: 5px;
}


.navbar-nav > .nav-item > .nav-link {
    color: white;
}

.h-280 {
    height: 280px;
}

.poad-card {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.fw-400 {
    font-weight: 400;
}
.carousel__track{
    direction: rtl;
    display: flex;
    justify-content: end;
}