/* Font: IBM Plex Sans Arabic */
/* Extra Light */
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('/assets/fonts/IBMPlexSansArabic-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Light */
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('/assets/fonts/IBMPlexSansArabic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('/assets/fonts/IBMPlexSansArabic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Regular */
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('/assets/fonts/IBMPlexSansArabic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* SemiBold */
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('/assets/fonts/IBMPlexSansArabic-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Thin */
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('/assets/fonts/IBMPlexSansArabic-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}


/* End Font */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
    --fontFamily: 'IBM Plex Sans Arabic', sans-serif ;
    --c: rgba(51, 51, 51, 1);;
    --paragraphColor: rgba(79, 79, 79, 1);
    --mainColor: rgba(52, 170, 73, 1);
    --secondaryColor: rgba(52, 170, 74, 0.7);
    --sectionPadding: 60px;
}

.accordion-button::after {
    background-image: url('/assets/images/media/arrow-top.png');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('/assets/images/media/arrow-top.png');
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
    direction: rtl;
    position: relative;
    overflow-x: hidden !important;
    cursor: default;
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img.lozad.loaded {
    animation-name: loaded;
    animation-duration: 1s;
}
  
@keyframes loaded {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: white;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    border: 3px solid var(--mainColor);
    transition: 0.3s;
    color: var(--mainColor);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.scroll-to-top:hover {
    background-color: var(--mainColor);
    color: white;
}

body::-webkit-scrollbar {
	width: 8px;
}
body::-webkit-scrollbar-thumb {
	border-radius: 0;
	background: grey;
}

.swiper {
    cursor: pointer;
}
/* Start Component */
.head {
    margin: 10px auto;
    text-align: center;
}

.head .title {
    color: var(--mainColor);
    font-weight: 600;
    margin-bottom: 20px;
}

.head .intro {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: rgba(79, 79, 79, 1);
}

@media (max-width: 576px) {
    .head .intro {
        font-size: 16px !important;
    }
}

.main-btn {
    transition: 0.3s;
    border-radius: 25px 0px 25px 0px !important;
}

.main-btn:hover {
    background-color: var(--mainColor) !important;
}

.c-linkedIn:hover {
    background-color: #0a66c2 !important;
}

.c-insta:hover {
    background-color: #e1306c !important;
}

.c-x:hover {
    background-color: #14171a !important;
}

.c-facebook:hover {
    background-color: #1877f2 !important;
}

.c-whatsapp:hover {
    background-color: #25d366 !important;
}

.c-telegram:hover {
    background-color: #0088cc !important;
}

.c-youtube:hover {
    background-color: #FF0000 !important;
}


#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--mainColor);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.custom-landing {
    height: 400px;
    background: rgba(246, 246, 246, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.custom-landing h1 {
    text-align: center;
    margin-bottom: 35px;
    font-weight: 700;
    color: var(--paragraphColor);
}

.custom-landing p {
    color: rgba(79, 79, 79, 1);
    padding: 0 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .custom-landing h1 {
        font-size: 50px;
        padding-top: 20px;
    }

    .custom-landing p {
        font-size: 24px;
        width: 800px;
    }
}

.error {
    color: red;
    margin-top: 5px;
    display: inline-block;
    font-size: 12px;
}

#submit-btn {
    display: flex !important;
    align-items: center  !important;
    justify-content: center  !important;
    gap: 20px  !important;
}

.loader-for-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
    display: none;
}

.loader-for-btn::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 3px solid white;
    animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
    100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}
/* End Component */

/* Start Header */
.header {
    min-height: 100px;
    font-weight: 400;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    position: fixed;
    transition: 0.3s;
    border-bottom: 1px solid rgba(180, 177, 177, 0.2);
    background-color: rgba(244, 244, 244, 1);
}

.header .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

@media (max-width: 991px) {
    .header .container {
        flex-wrap: wrap;
    }
}

.header .logo {
    color: var(--main-color);
    font-size: 26px;
    font-weight: bold;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    .header .logo {
        height: 50px;
    }
}

.header .logo img {
    width: 105px;
    max-width: 100%;
}

.header .hide-nav {
    display: flex;
    flex: 1;
    align-items: center;
}

@media (max-width: 991px) {
    .header .hide-nav {
        position: absolute;
        width: 90%;
        top: 95px;
        flex-direction: column;
        align-items: start;
        background-color: white;
        padding: 10px 20px 62px;
        display: none;
        right: 22px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}

.header .main-nav {
    display: flex;
    margin: 0;
    padding: 0;
    flex: 1;
}

@media (max-width: 991px) {
    .header .main-nav {
        margin: 15px 0;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        background-color: white;
        border-radius: 10px;
    }
}

@media (max-width: 991px) {
    .header .main-nav li {
        width: 100%;
    }
}

.header .main-nav > li > a {
    display: flex;
    align-items: center;
    position: relative;
    color: var(--headingColor);
    overflow: hidden;
    font-size: 17px;
    font-weight: 400;
    transition: 0.3s;
    font-weight: 500;
    height: 60px;
    margin: 0 10px;
}

@media (max-width: 1200px) {
    html[lang=en] .header .main-nav > li > a,
    html[lang=fr] .header .main-nav > li > a {
        padding: 0;
    }
}

.header .main-nav > li > a.active {
    color: var(--secondaryColor );
}

@media (max-width: 991px) {
    .header .main-nav > li > a.active {
        border-left-color: var(--secondaryColor );
        background: rgba(238, 238, 238, 1);
    }

    .header .main-nav > li > a {
        border-left: 6px solid transparent;
        padding-right: 23px;
    }
}

.header .main-nav > li > a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 10px;
    right: 0;
    transition: 0.3s;
    background-color: var(--secondaryColor );
}

@media (min-width: 992px) {
    .header .main-nav > li > a:hover::before {
        width: 100%;
    }
    .header .main-nav > li > a.active::before {
        width: 100%;
    }
}

.header .main-nav > li > a:hover {
    color: var(--secondaryColor );
}

.header .main-nav li a i {
    color: #1F1F1F;
    font-size: 15px;
    margin-right: 5px;
    margin-top: 5px;
}

.header .hide-nav .lang {
    display: flex;
    gap: 10px;
    padding-right: 25px;
}

.header .hide-nav .lang p {
    margin: 0;
}

.header .hide-nav .lang p a {
    color: #1F1F1F;
    font-weight: 500;
}

.header .hide-nav .lang p a:hover {
    color: var(--secondaryColor );
}

.header .btn-show-nav {
    display: none;
    position: absolute;
    top: 16px;
    left: 25px;
    font-size: 23px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 900;
}

.header .btn-show-nav:hover {
    opacity: 0.5;
}

@media (max-width: 991px) {
    .header .btn-show-nav {
        display: block;
    }
}
/* End Header */
/* Start Sidebar */
.sidebar {
    position: fixed;
    top: 70%;
    z-index: 100;
    background: white;
    left: -167px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: 0.3s;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

html[lang="fr"] .sidebar, 
html[lang="en"] .sidebar {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
    left: auto;
}

html[lang="fr"] .sidebar {
    right: -200px !important;
} 

html[lang="fr"] .sidebar:hover {
    right: 0 !important;
    left: auto;
}

html[lang="en"] .sidebar {
    right: -144px;
    left: auto;
}

html[lang="en"] .sidebar:hover {
    right: 0 !important;
    left: auto;
}

.sidebar:hover {
    left: 0px;
}

.sidebar div a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mainColor);
    padding: 10px 15px;
    border-left: 6px solid transparent;
    transition: 0.3s;
}

.sidebar div a:hover {
    border-left-color: var(--mainColor);
    background: rgba(238, 238, 238, 1);
}

.sidebar div a p {
    padding: 0;
    margin: 0;
    font-weight: 500;
}

.sidebar div a i {
    font-size: 18px;
}
/* End Sidebar */
/* Start Footer */
.custom-footer {
    background-color: rgba(215, 249, 225, 1);
    color: rgba(51, 51, 51, 1);
    margin-top: 0;
    padding: 0;
    font-size: 16px;
}
.custom-footer .footer-main {
    padding: 40px 0 0 0;
}
.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.footer-about {
    flex: 1.5;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 20px;
}
.footer-logo-img {
    width: 60px;
    margin-bottom: 10px;
}

html[lang=en] .footer-logo-img {
    margin-right: auto;
}
html[lang=fr] .footer-logo-img {
    margin-right: auto;
}
html[lang=ar] .footer-logo-img {
    margin-left: auto;
}

html[lang=en] .footer-desc {
    text-align: left;
}
html[lang=fr] .footer-desc {
    text-align: left;
}

.footer-desc {
    color: rgba(51, 51, 51, 1);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
    text-align: right;
}

.footer-links-group, .footer-info-group, .footer-social-group {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    gap: 10px;
}

html[lang=en] .footer-links-group,
html[lang=fr] .footer-links-group,
html[lang=en] .footer-info-group,
html[lang=fr] .footer-info-group,
html[lang=en] .footer-social-group,
html[lang=fr] .footer-social-group
 {
    align-items: flex-start;
    text-align: left;
}


.footer-title {
    color: rgba(51, 51, 51, 1);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-links-group ul,
.footer-info-group ul,
.footer-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links-group ul li a,
.footer-info-group ul li a {
    color: rgba(51, 51, 51, 1);
    font-size: 15px;
    font-weight: 400;
    transition: 0.3s;
}
.footer-links-group ul li a:hover,
.footer-info-group ul li a:hover {
    font-weight: 600;
}
.footer-social-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-social-list li a {
    color: rgba(51, 51, 51, 1);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.footer-social-list li a i {
    font-size: 18px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social-list li a:hover {
    text-decoration: underline !important;
}
.footer-bottom-bar {
    background: rgba(215, 249, 225, 1);
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 30px;
    padding: 12px 0 10px 0;
}
.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(51, 51, 51, 1);
    font-size: 14px;
}
.footer-bottom-content span {
    color: rgba(51, 51, 51, 1);
    font-size: 14px;
}
.footer-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(51, 51, 51, 1);
    cursor: pointer;
    font-size: 14px;
}
.footer-lang i {
    font-size: 12px;
}
@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
        padding: 0 20px;
    }
    .footer-about, .footer-links-group, .footer-info-group, .footer-social-group {
        align-items: flex-start;
        text-align: right;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
        align-items: flex-start;
    }
}
.btn-download {
    color: rgba(51, 51, 51, 1);
    text-decoration: underline !important;
    padding: 10px 5px;
}
/* End Footer */