/* ========================================================
* File:style.css-Version:1.0.CAE,GeneralStyle///
* ======================================================== */
 @import url(all.min.css);
 @import url(animate.css);
 @font-face {
    font-family:"DINNextLTArabic";
    src: url("../fonts/DINNextLTArabic-Regular-2.eot");
    src: url("../fonts/DINNextLTArabic-Regular-2.eot?#iefix") format("embedded-opentype"), url("../fonts/DINNextLTArabic-Regular-2.woff2") format("woff2"), url("../fonts/DINNextLTArabic-Regular-2.woff") format("woff"), url("../fonts/DINNextLTArabic-Regular-2.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --white: #ffffff;
    --gray: #F7F7F7;
    --Dgray: #5E5E5E;
    --Lgray: #868686;
    --black: #363636;
    --blue: #5C79BA;
    --lightBlue: #52B5C3;
    --purple: #393971;
    --lpurple: #999EFC;
    --cyan: #ABDBE2;
    --dcyan: #74C3CF;
    --orange: #F5A053;
    --pink: #FB7186;
    --yellow: #fcd933;
    --green: #4DB27B;
    --red: #c0392b;
    --fontsize14: 14px;
    --mh-100: 100vh;
    --font-familyEN:"Ubuntu", "Montserrat", sans-serif;
    --font-familyAR:"DINNextLTArabic", sans-serif;
    --border-radius6: 6px;
    --border-radius16: 16px;
    --minHeight: 67vh;
    --box-shadow: 0px 3px 20px rgb(76 61 143 / 12%);
    --transition: background 0.2s ease-in-out;
    --transition2: 0.3s ease all;
}
/*-----General Styles-----*/
 html, body {
    height: 100%;
    margin: 0;
    font-family: var(--font-familyEN);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: normal;
    line-height: normal;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    outline: none;
}
[dir='ltr'] {
    font-family: var(--font-familyEN) !important;
    letter-spacing: -0.5px;
}
[dir='rtl'] {
    direction: rtl;
    text-align: right;
    font-size: 16px;
    font-family: var(--font-familyAR) !important;
}
a {
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}
a:hover {
    text-decoration: none;
}
.form-control::-webkit-input-placeholder {
    color: #D5D3DC;
}
.form-control:-ms-input-placeholder {
    color: #D5D3DC;
}
.form-control::placeholder {
    color: #D5D3DC;
}
button:focus:not(:focus-visible), a.btn:focus {
    outline: none;
    box-shadow: none;
}
.rounded-5 {
    border-radius: 0.9rem !important;
}
.z-index-9 {
    z-index: 9;
}
.z-index-99 {
    z-index: 99;
}
.z-index-999 {
    z-index: 999;
}
.z-index-9999 {
    z-index: 9999;
}
.warpper {
    width: 100%;
    height: 100%;
}
.bg-primary, .btn-primary {
    background-color: var(--purple) !important;
}
.btn-outline-primary {
    --bs-btn-color: var(--purple);
    --bs-btn-border-color: var(--purple);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--purple);
    --bs-btn-hover-border-color: var(--purple);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--purple);
    --bs-btn-active-border-color: var(--purple);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--purple);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--purple);
    --bs-gradient: none;
}
.border-primary, .btn-outline-primary {
    border-color: var(--purple) !important;
}
.text-primary {
    color: var(--purple) !important;
}
.border-secondary, .btn-outline-secondary {
    border-color: var(--lpurple) !important;
}
.text-secondary {
    color: var(--lpurple) !important;
}
.bg-secondary, .btn-secondary, a.nav-link:hover, .btn-outline-secondary:hover {
    background-color: var(--lpurple) !important;
    color: var(--white) !important;
}
.bg-warning, .btn-warning {
    background-color: var(--orange) !important;
}
.border-warning, .btn-outline-warning {
    border-color: var(--orange) !important;
}
.text-warning {
    color: var(--orange) !important;
}
.bg-success, .btn-success, .btn-outline-success:hover {
    background-color: var(--green) !important;
}
.border-success, .btn-outline-success {
    border-color: var(--green) !important;
}
.text-success, .btn-outline-success {
    color: var(--green) !important;
}
.bg-info, .btn-info {
    background-color: var(--blue) !important;
}
.border-info {
    border-color: var(--blue) !important;
}
.text-info {
    color: var(--blue) !important;
}
.bg-info.bg-cyan, .btn-info.btn-cyan {
    background-color: var(--cyan) !important;
}
.bg-danger, .btn-danger {
    background-color: var(--pink) !important;
}
.border-danger, .btn-outline-danger {
    border-color: var(--pink) !important;
}
.text-danger {
    color: var(--pink) !important;
}
.bg-light, .btn-light {
    background-color: var(--white) !important;
}
.border-white, .btn-outline-white {
    border-color: var(--white) !important;
}
.bg-dark, .btn-dark {
    background-color: var(--Dgray) !important;
}
.text-dark {
    color: var(--black) !important;
}
.text-muted {
    color: var(--Dgray) !important;
}
.text-light {
    color: var(--gray) !important;
}
.btn-outline-success:hover {
    color: var(--white) !important;
}
.btn:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%);
    transition: var(--transition2);
    -webkit-ransition: var(--transition2);
    -moz-transition: var(--transition2);
    -o-transition: var(--transition2);
}
/*-----Preloader page-----*/
 #loading {
    background-color: var(--purple);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    margin-top: 0px;
    top: 0px;
}
#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 60px;
    width: 60px;
    margin-top: -30px;
    margin-left: -30px;
    -webkit-animation: loading-center-absolute 1s infinite;
    animation: loading-center-absolute 1s infinite;
}
.object {
    width: 20px;
    height: 20px;
    background-color: var(--orange);
    float: left;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    margin-right: 20px;
    margin-bottom: 20px;
}
.object:nth-child(2n+0) {
    margin-right: 0px;
}
#object_one {
    -webkit-animation: object_one 1s infinite;
    animation: object_one 1s infinite;
}
#object_two {
    -webkit-animation: object_two 1s infinite;
    animation: object_two 1s infinite;
}
#object_three {
    -webkit-animation: object_three 1s infinite;
    animation: object_three 1s infinite;
}
#object_four {
    -webkit-animation: object_four 1s infinite;
    animation: object_four 1s infinite;
}
@-webkit-keyframes loading-center-absolute {
    100% {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes loading-center-absolute {
    100% {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes object_one {
    50% {
        -ms-transform: translate(20px, 20px);
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
}
@keyframes object_one {
    50% {
        -ms-transform: translate(20px, 20px);
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
}
@-webkit-keyframes object_two {
    50% {
        -ms-transform: translate(-20px, 20px);
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
}
@keyframes object_two {
    50% {
        -ms-transform: translate(-20px, 20px);
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
}
@-webkit-keyframes object_three {
    50% {
        -ms-transform: translate(20px, -20px);
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
}
@keyframes object_three {
    50% {
        -ms-transform: translate(20px, -20px);
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
}
@-webkit-keyframes object_four {
    50% {
        -ms-transform: translate(-20px, -20px);
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
}
@keyframes object_four {
    50% {
        -ms-transform: translate(-20px, -20px);
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
}
/*-----Custome login Style-----*/
 .page-wrapper {
    flex: 1 0 auto !important;
}
/* .carousel-item img {
  object-fit: cover;
} */

/*-----internal Style-----*/
 .btn-primary:hover {
    box-shadow: 0px 2px 10px #A8ACFA;
}
.btn-warning:hover {
    box-shadow: 0px 2px 10px #f55353;
}
.header-big-image {
    position: absolute;
    width: 50%;
    top: 50vh;
    right: -7.5rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.header-big-image img {
    /* max-height: 35rem; */
    max-width: 100%;
    margin-top: 1.5rem;
    border-radius: 10px;
    opacity: 1;
}
.header-big-image .ui {
    position: absolute;
    max-width: 40%;
    bottom: 4.5rem;
    left: -1.5rem;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-color: #0d0d0d;
    /* اداء نحو التميز */
    padding: 15px;
    -webkit-box-shadow: 0px 0px 25px rgba(191, 151, 151, 0.3);
    -moz-box-shadow: 0px 0px 25px rgba(151, 160, 191, 0.3);
    box-shadow: 0px 0px 25px rgba(151, 160, 191, 0.3);
}
[dir='rtl'] .header-big-image {
    left: -7.5rem;
    right: auto;
}
[dir='rtl'] .header-big-image .ui {
    right: -1.5rem;
    left: auto;
}
@media (max-width: 991px) {
    .header-big-image, [dir='rtl'] .header-big-image {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        text-align: center;
        margin-top: 1.5rem;
        top: 0;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
    .header-big-image .ui {
        top: 1.5rem;
        left: 1.5rem;
    }
    [dir='rtl'] .header-big-image .ui {
        right: 1.5rem;
        left: auto;
    }
}
@media (max-width: 767px) {
    .header-big-image img, [dir='rtl'] .header-big-image img {
        margin: 1.5rem 0;
    }
}
.accordion-button:not(.collapsed) {
    background-color: var(--purple);
    color: var(--white) !important;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
.accordion-button::after {
    display: none;
}