:root {
    --main-font-family: "Tajawal", sans-serif;
    --main-blue-color: #0095d6;
    --main-orange-color: #e28802;
    --submain-color: #dbdddc;
    --section-title: 24px;
    --section-subtitle: 40px;
    --section-desc: 24px;
    --button-size: 20px;
    --pt-175: 175px;
    --py-175: 175px;
}

html {
    width: 100%;
    height: 100%;
}

@font-face {
    font-family: "Tajawal";
    src: url("../fonts/Tajawal/Tajawal-Regular.ttf");
    font-display: swap;
  }
  @font-face {
    font-family: "Tajawal-Bold";
    src: url("../fonts/Tajawal/Tajawal-Bold.ttf");
    font-display: swap;
  }
body {
    position: relative;
    direction: ltr;
    font-family: "Tajawal",sans-serif!important;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

.pos-unset {
    position: unset !important;
}

a,
a:hover {
    text-decoration: none !important;
}

.btn:focus {
    box-shadow: none;
}

.mt-100 {
    margin-top: 100px;
}
#toTop {
    position: fixed;
    right: 60px;
    bottom: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
#toTop button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: var(--main-blue-color);
    border: none;
}
#toTop button img {
    filter: brightness(0) invert(1);
}
.navbar-style {
    position: fixed !important;
    top: 0;
    z-index: 9;
    padding: 0 !important;
    width: 100%;
    height: auto;
    background-color: #fff;
    flex-direction: column;
}
.mt-130 {
    margin-top: 130px !important;
}
#main-nav {
    border-bottom: 1px solid #ece8e8;
    width: 100%;
}

#register-btn {
    font-family: Tajawal, sans-serif;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    color: white;
    background-color: var(--main-blue-color);
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    border: 2px solid;
    transition: all 0.3s;
}
#register-btn:hover {
    background-color: var(--main-orange-color);
    border-color: var(--main-orange-color);
}
#menuHeader {
    z-index: 2;
    width: 100%;
    position: relative;
    height: auto;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
#menuHeader .container,
#menuHeader .row {
    width: 100%;
    height: 100%;
}

.menu-items-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    text-align: center;
    margin: 0;
    list-style: none;
    padding: 0;
}
.menu-items-wrapper li a {
    font-family: Tajawal, sans-serif;
    font-size: 20px;
    color: #1c1b1b;
    line-height: normal;
    text-transform: capitalize;
}
.menu-items-wrapper li a:hover,
.menu-items-wrapper li a.active {
    color: var(--main-blue-color);
}

#language-dropdown {
    width: fit-content;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8px;
    background-color: white;
    border: none;
}
#lang-shortcut {
    font-size: 20px;
    color: #1c1b1b;
}
.arrow {
    border: solid #1c1b1b;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: all 0.3s;
}
#lang-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
    position: relative;
    background: white;
    width: fit-content;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
#lang-wrapper li.selected a {
    color: var(--main-blue-color) !important;
}
.logo-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.logo-div a {
    display: inline-flex;
    width: 160px !important; 
    height: auto;
}
.logo-div a img {
    width: 100%;
    height: 80px;
}
#user-header-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.navbar .nav-wrapper li {
    list-style: none;
}

.navbar .nav-wrapper a {
    text-decoration: none;
    color: #0e2431;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
}

.navbar .nav-wrapper a:hover {
    color: var(--main-blue-color);
}

.nav-wrapper {
    display: block;
    position: unset;
    height: 60px;
}

footer {
    position: relative;
    background-color:  var(--main-blue-color);
    width: 100%;
    height: auto;
    padding: 75px 0;
    z-index: 1;
}
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li a {
    font-family: "Tajawal", sans-serif;
    font-size: 20px;
    color: white;
    text-transform: capitalize;
}
.footer-links li a:hover {
    color: var(--main-orange-color);
}
.copyright-wrapper {
    font-family: "Tajawal", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    color: white;
    margin-top: 24px;
}

#burger-menu-btn,
#user-header-wrapper-mob {
    display: none;
}
#numOfItems {
    font-size: 12px;
    position: absolute;
    top: -12px;
    right: -12px;
    color: white;
    background: var(--main-orange-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.footer-payment-methods-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}
.footer-payment-method {
    width: 50px;
    height: 50px;
}
.footer-payment-method img {
    width: 100%;
    height: 100%;
}
#shareWithWrapperFooter{
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
    justify-content: center;
}
#shareWithWrapperFooter a{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #001234;
    display: flex;
    justify-content: center;
    align-items: center;
}
#shareWithWrapperFooter a img{filter: invert(1) brightness(1);}
#shareWithWrapperFooter a:hover{ background-color: var(--main-orange-color);}


@media only screen and (min-width: 240px) and (max-width: 1024px) {
    .row {
        margin: 0;
    }
        .nav-wrapper-mob {
    display: block;
    position: relative;
    height: 60px;
}
#language-dropdown-mob {
    width: fit-content;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8px;
    background-color: transparent;
    border: none;
}
#lang-shortcut-mob {
    font-size: 20px;
    color: white;
}
#lang-wrapper-mob {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
    position: relative;
    background: white;
    width: fit-content;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    position: absolute;
    top:-100px;
    list-style: none;
 
}
#lang-wrapper-mob li.selected a {
    color: var(--main-blue-color) !important;
}
    .navbar-style {
        position: fixed !important;
        top: 0;
        z-index: 2;
    }
    #menu-logo-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: space-between;
        width: 100%;
    }
    #burger-menu-btn {
        position: relative;
        display: flex;
        flex-direction: column;
        background: none;
        border: none;
        width: 38px;
        height: 38px;
        padding: 0;
    }
    #burger-menu-btn img {
        width: 100%;
        height: 100%;
    }
    #menuHeader {
        position: fixed;
        top: 100px;
        flex-direction: column;
        background: #001234;
        width: 100%;
        left: -135%;
        transition: all 0.7s;
        padding: 0 !important;
        height: fit-content;
        justify-content:flex-start;
    }
    .logo-div {
        max-width: 60%;
        justify-content: flex-end;
    }
    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
    .menu-items-wrapper {
        flex-direction: column;
        background: #001234;
        width: 100%;
        transition: all 0.7s;
        padding: 0 !important;
        height: auto;
        justify-content: flex-start;
        margin-top: 32px;
    }
    .menu-items-wrapper li a {
        color: white;
    }
    #closeNavIcon {
        display: none;
    }
    .row-reverse-mob {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    #user-header-wrapper-mob {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }
    #user-header-wrapper-mob img {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
         width: 25px;
         height: 25px;
    }
    #register-btn-mob {
        font-family: Tajawal, sans-serif;
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: fit-content;
        height: fit-content;
        color: white;
        background-color: var(--main-blue-color);
        border: none !important;
        border-radius: 24px;
        padding: 9px 18px;
        border: 2px solid;
        transition: all 0.3s;
    }
    #main-nav {
        padding: 15px 0;
    }
    .logo-div a {
        width: 135px;
    }
    .mt-130 {
        margin-top: 65px;
    }
}
