/*=================== start globle ===================*/
/* CSS Reset - Resetting default styles applied by browsers */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}

/* Remove list styles for ul, ol */
ul,
ol {
    list-style: none;
}

/* Remove default link styles */
a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

a:hover {
    color: inherit;
}

main {
    flex: 1;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=================== For this project only ===================*/
:root {
    --Primary-color: #2aabe4;
    --Secondary-color: #f9a020;
    --Footer-color: #09597c;
    --Section-color: #f2f6ff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--Primary-color);
    border-radius: 15px;
}

body {
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-wrap: break-word !important;
}

.btnLogin {
    padding: 8px 12px;
    margin: 0px 5px;
    background-color: white;
    border: 1px solid rgb(0 0 0 / 14%);
    color: rgba(0, 0, 0, 0.55);
    /* width: 90px; */
    height: 42px;
    border-radius: 7px;
    outline: none;
    box-shadow: none;
    font-size: 18px;
    transition: 0.3s;
}
body :where([dir="rtl"], [dir="rtl"] *) {
    .btnLogin {
        font-size: 16px;
    }
}

.btnLogin:hover,
.btnLogin.active {
    color: white;
    border: 1px solid var(--Secondary-color);
    background-color: var(--Secondary-color);
}

.btnMore {
    padding: 14px 16px;
    margin: 20px 0px 40px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 7px;
    outline: none;
    box-shadow: none;
    font-size: 18px;
    transition: 0.6s;
}
body :where([dir="rtl"], [dir="rtl"] *) {
    .btnMore {
        font-size: 16px;
    }
}

.btnMore.active {
    border: 1px solid var(--Primary-color);
    background-color: var(--Primary-color);
}

.titleSection {
    text-align: center;
    padding: 40px 0px;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
}
body :where([dir="rtl"], [dir="rtl"] *) {
    .titleSection {
        font-size: 38px;
    }
}

@media (max-width: 500px) {
    .titleSection {
        padding: 30px 0px;
        font-size: 30px;
        line-height: 50px;
    }
    body :where([dir="rtl"], [dir="rtl"] *) {
        .titleSection {
            font-size: 28px;
        }
    }

    .btnLogin,
    .btnMore {
        font-size: 16px;
        padding: 10px 12px;
        font-size: 16px;
    }
    body :where([dir="rtl"], [dir="rtl"] *) {
        .btnLogin,
        .btnMore {
            font-size: 14px;
        }
    }
}

.titleSection span {
    color: var(--Primary-color);
}

.animationImage {
    overflow: hidden;
}

.animationImage img {
    transition: all 0.3s;
}

.animationImage img:hover {
    scale: 1.1;
}

/*=================== end globle ===================*/
/*=================== start informationBar ===================*/
.informationBar {
    background-color: var(--Primary-color);
    color: white;
    padding: 10px 0px;
}

.informationBar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.informationBar .content .information {
    display: flex;
    flex-direction: column;
}

@media (min-width: 998px) {
    .informationBar .content .information {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 998px) {
    .informationBar {
        display: none;
    }
}

.informationBar .content .information p {
    height: 20px;
    font-weight: 300;
}

.informationBar .content .information li {
    margin: 10px 0px;
}

.informationBar .media li {
    background-color: var(--Primary-color);
    border: 2px solid #ffffff96;
    padding: 14px;
    margin: 0px 5px;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*=================== end informationBar ===================*/

/*=================== start navbar ===================*/
.navbar .logo {
    width: 118px;
    height: 50px;
}

.navbar .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
}
body :where([dir="rtl"], [dir="rtl"] *) {
    .navbar .navbar-nav .nav-link {
        font-size: 16px;
    }
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover {
    color: var(--Primary-color);
}

.navbar .navbar-toggler {
    color: rgba(0, 0, 0, 0.55);
    padding: 8px 12px;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 500px) {
    .navbar .btnLogin {
        margin: 0px 2px;
        height: 38px;
        font-size: 16px;
    }
    body :where([dir="rtl"], [dir="rtl"] *) {
        .navbar .btnLogin {
            font-size: 14px;
        }
    }

    .navbar .logo {
        width: 100px;
        height: 42px;
    }
}

.nav-link {
    color: black;
}

@media (max-width: 998px) {
    .navbar .container .navbar-collapse .navbar-nav {
        margin: 20px 0px 0px 0px;
    }

    .langMob {
        display: block !important;
    }

    /*.navbar-brand-mob{*/
    /*    display: none;*/
    /*}*/
}

/*=================== end navbar ===================*/

/*=================== start footer ===================*/
.footer {
    background-color: var(--Footer-color);
    padding: 60px 0px 0px;
}

.footer .logo {
    width: 180px;
    height: 76px;
    margin-bottom: 30px;
}

.footer .des {
    font-size: 20px;
    color: white;
    margin: 30px 0px;
    font-weight: 300;
    line-height: 35px;
    width: 350px;
}
body :where([dir="rtl"], [dir="rtl"] *) {
    .footer .des {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .footer .des {
        width: 100%;
        text-align: center !important;
        margin-top: 0;
    }
}

.footer .media {
    margin: 30px 0px 5px;
}

.footer .media ul li i {
    background-color: #f9a020;
    padding: 10px 15px;
    color: white;
    border-radius: 8px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .Links {
    color: white;
}

.footer .Links .title {
    font-size: 24px;
    margin-bottom: 30px;
}
body :where([dir="rtl"], [dir="rtl"] *) {
    .footer .Links .title {
        font-size: 22px;
    }
}

.footer .Links li {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 300;
}
body :where([dir="rtl"], [dir="rtl"] *) {
    .footer .Links li {
        font-size: 16px;
    }
}

.footer .copyright {
    margin: 60px 0px 20px;
    font-size: 18px;
    font-weight: 300;
    border-top: 3px solid #135f81;
    padding-top: 20px;
    line-height: 35px;
}
body :where([dir="rtl"], [dir="rtl"] *) {
    .footer .copyright {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .footer {
        padding-top: 50px;
    }

    .footer .copyright {
        margin: 10px 0px 20px;
    }

    .dropdown-menu {
        min-width: 0 !important;
    }
    body[dir="ltr"] .dropdown-menu {
        left: -23px !important; /* Position to the right for LTR */
    }
    body[dir="rtl"] .dropdown-menu {
        left: -3px !important; /* Position to the right for LTR */
    }

    /* For RTL (Arabic) */
    /*.direction-rtl .dropdown-menu {*/
    /*    left: -3px !important; !* Position for RTL *!*/
    /*}*/

    /*!* For LTR (English) *!*/
    /*.direction-ltr .dropdown-menu {*/
    /*    left: -23px !important; !* Position for LTR *!*/
    /*}*/
}

/*=================== end footer ===================*/
/*=================== Loading Screen ===================*/
/* HTML: <div class="loader"></div> */
.loader {
    width: 100px; /* Adjust the size as needed */
    height: 100px; /* Adjust the size as needed */
    aspect-ratio: 1;
    display: grid;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1 / 1;
    --c: no-repeat radial-gradient(farthest-side, #25b09b 92%, #0000);
    background: var(--c) 50% 0, var(--c) 50% 100%, var(--c) 100% 50%, var(--c) 0 50%;
    background-size: 20px 20px; /* Adjust the size as needed */
    animation: l12 1s infinite;
}

.loader::before {
    margin: 8px; /* Adjust the margin as needed */
    filter: hue-rotate(45deg);
    background-size: 12px 12px; /* Adjust the size as needed */
    animation-timing-function: linear;
}

@keyframes l12 {
    100% {
        transform: rotate(.5turn);
    }
}

#content {
    display: none; /* Hide content until the page loads */
}

#navContent {
    display: none; /* Hide content until the page loads */
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Change this to your desired background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* pagination*/
/*.pagination_rounded, .pagination_square {*/
/*    display: inline-block;*/
/*    margin-left:400px;*/
/*    margin-top:300px;*/
/*}*/

/*.pagination_rounded ul {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    list-style: none;*/
/*}*/

/*.pagination_rounded li:first-child {*/
/*    margin-left: 0px;*/
/*}*/

/*.pagination_rounded ul li {*/
/*    float: left;*/
/*    margin-left: 20px;*/
/*}*/

/*.pagination_rounded ul li a:hover {*/
/*    background: #4285f4;*/
/*    color: #fff;*/
/*    border: 1px solid #4285f4;*/
/*}*/

/*a:link {*/
/*    text-decoration: none;*/
/*}*/

/*.pagination_rounded .prev {*/
/*    margin-left: 0px;*/
/*    border-radius: 35px;*/
/*    width: 90px;*/
/*    height: 34px;*/
/*    line-height: 34px;*/
/*}*/

/*.pagination_rounded ul li a {*/
/*    float: left;*/
/*    color: #4285f4;*/
/*    border-radius: 50%;*/
/*    line-height: 30px;*/
/*    height: 30px;*/
/*    width: 30px;*/
/*    text-align: center;*/
/*    margin-bottom: 40px;*/
/*    border: 1px solid #e0e0e0;*/
/*}*/

/*.pagination_rounded .prev i {*/
/*    margin-right: 10px;*/
/*}*/

/*.pagination_rounded .next {*/
/*    border-radius: 35px;*/
/*    width: 90px;*/
/*    height: 34px;*/
/*    line-height: 34px;*/
/*}*/

/*.visible-xs {*/
/*    display: none!important;*/
/*}*/
.pagination a {
    color: #09597c;
}

.pagination .right a {
    border-radius: 0px 10px 10px 0px !important;
}

.pagination .left a {
    border-radius: 10px 0px 0px 10px !important;
}

body[dir="ltr"] .pagination .right a {
    border-radius: 10px 0px 0px 10px !important;
}

body[dir="ltr"] .pagination .left a {
    border-radius: 0px 10px 10px 0px !important;
}

.paginationSection {
    text-align: center;
    padding: 40px 0px;
    font-size: 40px;
    font-weight: 700;
    line-height: 30px;
}
body :where([dir="rtl"], [dir="rtl"] *) {
    .paginationSection {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .mobile-overflow {
        overflow-x: hidden;
    }
}
@media (max-width: 992px) {
    .mobile-overflow {
        overflow-x: hidden;
    }
}

/*Additional add-bnt style */
/*.add-btn {*/
/*    height: 3rem;*/
/*    background-color: #213555 !important;*/
/*    width: 300px !important;*/
/*    font-size: 1.1rem !important;*/
/*}*/
