html,
body {
    /* overflow-x: hidden; */
    scroll-behavior: smooth !important;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}


/* -------------- Navigation ----------------*/

nav.r-nav {
    background: #ffffff !important;
    padding: 7px 10px;
    transition: .5s all;
}


/* notice it's NOT conntect 'nav .navbar-brand' 
,that because navbar-brand is NOT the class of nav.
It's a class of an element inside the 'nav' */

nav .navbar-brand {
    font-size: 30px;
    height: 70px;
    transition: .5s all;
}


/* !important is used to override the bootstrap default color */

nav .navbar-nav li a {
    color: #595958 !important;
    font-size: 16px;
    letter-spacing: 0.0em;
    font-weight: 600;
    transition: 0.3s all;
}

nav .navbar-nav li a:hover {
    color: #0AA696 !important;
}


/* nav .navbar-nav .dropdown-menu{
    background: rgba(0, 0, 0, 0)!important;
} */

nav .navbar-nav .dropdown-item {
    color: black !important;
}

nav .navbar-nav li {
    margin-left: 15px;
}

.logo {
    position: relative;
    height: 100%;
    width: auto;
}

*/ .navbar .hamburger {
    color: white !important;
}

nav.stickyadd .hamburger {
    color: black;
}

.subscribe_background {
    min-height: 100vh;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 250px;
    background-image: url(/general_bg.svg), linear-gradient(#aac0be29, #aac0be29);
    background-color: rgb(244, 244, 244);
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
}


/* ------------------------------- footer --------------------------- */

footer .footer-icon {
    color: #ea262c;
    background-color: transparent;
    display: inline-block;
    height: 42px;
    width: 42px;
    font-size: 20px;
    border: 2px solid #ea262c;
    border-radius: 50%;
    line-height: 40px;
    transition: 0.2s all;
    text-align: center;
}

footer .footer-icon:hover {
    color: #343A40;
    background-color: #ea262c;
}

#spinner {
    /* pointer-events: none; */
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.2) url("/spinner.svg") no-repeat center center;
    background-size: 150px;
    z-index: 99999;
}