@font-face {
    font-family: 'Adobe Arabic';
    src: url('../fonts/Adobe Arabic Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Adobe Arabic';
    src: url('../fonts/Adobe Arabic Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
:root {
    --red-color: #ed1c24;
    --dark-grey: #62696f;
    --light-blue: #f0f9fe;
    --light-grey: #ebeff1;
}

.content img {
    height: auto !important;
}
p {
    color: var(--dark-grey);
    font-size: 1.3rem;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.7rem;
}

h4 {
    font-size: 1.6rem;
}

h5{
    font-size: 1.5rem;
}

h6 {
    font-size: 1.45rem;
}
.light-blue-bg {
    background: var(--light-blue);
}

.white-bg {
    background: #fff;
}

.red-bg {
    background-color: var(--red-color)
}

.dark-grey-bg {
    background-color: var(--dark-grey);
}

.light-grey-bg {
    background-color: var(--light-grey);
}


.text-red {
    color: var(--red-color)
}

.text-dark-grey {
    color: var(--dark-grey);
}

a {
    color: unset;
    text-decoration: none;
}

.btn-danger {
    background-color: var(--red-color);
    border-color: var(--red-color);
}

body {
    background-color: #f8f9fa;
    font-family: 'Adobe Arabic', sans-serif;
}


.header-image {
    width: 100%;
    height: auto;
}

.section-header {
    padding: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--red-color)
}
.section-title {
    border-right: 8px solid var(--red-color);
    padding-right: 10px;
    font-weight: bold;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body h5 {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer {
    background-color: var(--dark-grey);
    color: white;
    padding: 20px 0;
}

.footer a {
    color: white;
}

.footer .social-icons a {
    margin: 0 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.main-content {
}

.header {
    line-height: 1;
}

.header .logo {
    width: 250px;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    height: 2.75rem;
}

.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-scroller a {
    font-size: 1.4rem;
    font-weight: bold;
}

.hero-content {
    background: var(--dark-grey);
    padding: 25px;
    height: 100%;
}

.owl-prev, .owl-next {
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
}

.owl-next span, .owl-prev span {
    color: var(--dark-grey);
    font-size: 4rem;
}

.owl-prev {
    right: 0
}

.owl-next{
    left: 15px
}

footer {
    background: url('../imgs/footer-bg.jpg') center top repeat;
}

footer h5 {
    text-decoration: underline;
}
footer ul {
    padding-right: 0px;
    list-style: none;
}
footer ul li {
    float: right;
    width: 50%;
    font-size: 13px;
    margin-bottom: 5px;
}

.login-contact small {
    font-size: 12px;
}
.login-contact > div {
    border-radius: 5px;
}
.login-contact > div:hover {
    background-color: #fff;
    color: var(--dark-grey);
}
.pagination {
    padding-right: 0;
}
.pagination > li > a,
.pagination > li > span {
    float: right;
    margin-right: -1px;
    margin-left: 0px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    margin-right: -1px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: var(--red-color);
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: var(--red-color);
    background-color: #eee;
    border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: var(--red-color);
    border-color: var(--red-color);
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.user-icon {
    width: 30px;
    color: #fff;
    display: flex;
    height: 30px;
    border-radius: 50%;
    background: var(--red-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.search-icon {
    width: 30px;
    color: #fff;
    display: flex;
    height: 30px;
    border-radius: 50%;
    background: #212529;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.dropdown-main {
    position: relative;
    display: inline-block;
}

.dropdown-main:hover {
    background: var(--dark-grey);
}

.dropdown-main:hover a {
    color: #fff !important;

}

.dropdown-main a:hover .dropdown-content {
    display: block;
}

.dropdown-main:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #62696f;
    min-width: 160px;
    z-index: 99999;
}

.dropdown-content a {
    color: #fff;
    padding: 5px 15px;
    text-decoration: none;
    border: 0 !important;
    display: block;
    font-size: 18px;
}

.dropdown-main > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content a:hover {background-color: var(--red-color);}

.accordion-header button {
    font-size: 20px !important;
}
#moreDataAccordion .accordion-body * {
    font-size: 22px !important;
}