body {
    margin                     : 0;
    padding                    : 0;
    background-color           : aliceblue;
    -webkit-tap-highlight-color: transparent;
    font-family                : -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color                      : rgb(0, 0, 0);
}
body:before {
    content: "";
    width: 250px;
    height: 250px;
    background: #0048ff17;
    border-bottom-right-radius: 500px;
    position: fixed;
    z-index: -1;
}
body:after {
    content: "";
    width: 250px;
    height: 250px;
    background: #ff000014;
    border-top-left-radius: 500px;
    position: fixed;
    z-index: -99999;
    bottom: 0;
    right: 0px;
}

a {
    color          : #0072ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.logo-container {
    margin         : 0 5px 0 5px;
    display        : flex;
    justify-content: flex-end;
    align-items    : center;
    border-bottom  : 2px solid black;
}

.top-logo {
    margin : 0 5px 0 5px;
    display: flex;
}

.top-logo .logo {
    margin: 15px;
}

.top-logo .nepali {
    color: #1952e7;
}

.seperator h2 {
    background-color       : limegreen;
    display                : inline-block;
    padding                : 4px;
    border-top-right-radius: 40px;
    margin                 : 0;
}

.seperator i {
    height       : 5px;
    background   : limegreen;
    display      : block;
    margin-bottom: 30px;
}

.top-logo .demand {
    color: #f5062f;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight:800;
}

.date {
    color      : black;
    font-weight: 600;
    font-size  : 18px;
}

.navigation {
    display        : flex;
    justify-content: space-between;
    flex-direction : row;
    align-items    : flex-end;
    margin-top     : 5px;
}

.search-box {
    margin-left  : 20px;
    height       : 25px;
    padding      : 4px;
    border       : 1px solid #1952e7;
    border-radius: 5px;
    background   : transparent;
    color        : rgb(0, 0, 0);
}
.search-search-box{
    margin-bottom:10px;
}
.search-search-box>.fa-search {
    font-size: 20px;
    color    : #1952e7;
    cursor   : pointer;
    margin   : 5px;
}

.search-search-box>.fa-search:hover {
    color: #0048ff;
}

.nav-desktop a {
    font-weight    : 600;
    list-style     : none;
    float          : left;
    text-decoration: none;
    padding        : 4px;
    margin         : 0 4px 0 4px;
    font-size      : 18px;
}

.nav-desktop a:hover {
    box-shadow: 0px 0px 7px 1px #3ac0ea;
}

.nav-mobile {
    font-weight     : 600;
    display         : none;
    position        : fixed;
    left            : 0;
    top             : 0;
    background-color: aliceblue;
    width           : 200px;
    height          : 100%;
    overflow        : hidden;
    transition      : 300ms;
    z-index         : 9999;
}

.nav-mobile a,
.nav-mobile li,
.nav-mobile>span {
    list-style: none;
    margin-top: 10px;

}

.nav-mobile-passive {
    left: -600px;
}

.navigator {
    position : fixed;
    left     : 10px;
    top      : 15px;
    display  : none;
    z-index  : 99;
    font-size: 25px;
}

.nav-mobile>.fa-times {
    position : relative;
    top      : 10px;
    right    : -165px;
    font-size: 20px;
    color    : black;
}

.nav-mobile ul {
    display        : flex;
    flex-direction : column;
    justify-content: flex-end;
    position       : relative;
    text-align     : left;
}

.nav-mobile a:hover {
    box-shadow: 0px 0px 7px 1px #1952e7;
}


.link-button {
    border       : 1px solid rgb(0, 0, 0);
    border-radius: 20px;
    padding      : 10px;
    background   : transparent;
    color        : rgb(0, 0, 0);
}

.link-button:hover {
    background: rgb(16, 16, 16);
    color     : white;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: aliceblue;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background   : rgb(28, 28, 28);
    border-radius: 100px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 0, 0);
}

::selection {
    background: rgb(21, 21, 21);
    color     : white;
}

@media screen and (max-width:820px) {
    .nav-mobile {
        display: block;
    }

    .navigation {
        flex-direction: column;
        align-items   : center;
    }

    .navigator {
        display: block;
    }

    #home-imag {
        height: 300px;
        width : 300px;
    }

}