nav {
    /* position: fixed; */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 11;
    /* z-index: 2; */
    display: flex;
    padding: 16px;
    justify-content: space-between;
    /* background: #007dc5; */
    background: #007dc5;
    /* border-bottom: solid 2px #ffffff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(10px);
    /* opacity: 0; */
}


#main_body nav {
    background-color: rgb(0 0 0 / 40%);
    opacity: 0;
}

body.mbintro_anim nav {
    opacity: 1 !important;
}


a.logo img {
    width: 200px;
}

.nav_link_div {
    display: flex;
    align-items: center;
    /* gap: 32px; */
    gap: 24px;
}

.donate_btn {
    width: fit-content;
    font-size: 18px;
    color: #007dc5;
    font-weight: bold;
    text-transform: capitalize;
    padding: 4px 10px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.donate_btn img {
    width: 32px;
}

.nav_link {
    /* font-size: 18px; */
    /* color: #ffffff; */
    font-weight: 500;
}

/* smile and soft ui nav start----------- */
nav.nav_soft .logo img {
    width: 220px;
}

nav.nav_soft {
    /* background: #F2F2F0; */
    /* position: static; */
    position: relative;
    background: transparent;
    box-shadow: none;
    backdrop-filter: blur(0px);
    /* padding: 24px 32px 24px; */
    padding: 24px 38px;
}

nav.nav_soft .nav_link_div {
    gap: 32px;
}

nav.nav_soft .nav_link {
    position: relative;
    font-size: 16px;
    color: #323336;
    cursor: pointer;
    font-weight: 500;
}

nav.nav_soft .nav_link:before {
    background-color: #28241c;
    bottom: 0px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .5s ease-in-out;
    transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .5s ease-in-out;
    -o-transition: transform .5s ease-in-out, box-shadow .5s ease-in-out;
    transition: transform .5s ease-in-out, box-shadow .5s ease-in-out;
    transition: transform .5s ease-in-out, box-shadow .5s ease-in-out, -webkit-transform .5s ease-in-out, -webkit-box-shadow .5s ease-in-out;
    width: 100%;
    z-index: -1;
}

nav.nav_soft .nav_link:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

/* 1110 */

.hamburger input {
    display: none;
}

.hamburger svg {
    display: none;
}

@media (max-width: 1110px) {

    .nav_link_div {
        display: none;
        position: absolute;
        right: 38px;
        flex-direction: column;
        align-items: flex-end;
        background-color: #fff;
        padding: 24px;
        border-radius: 24px;
        margin-right: 24px;
        border: solid 2px #000;
    }

    .wrapper:hover .nav_list {
        z-index: 2;
    }

    .hamburger {
        cursor: pointer;
    }

    .hamburger input {
        display: none;
    }

    .hamburger svg {
        display: block;
        /* The size of the SVG defines the overall size */
        height: 40px;
        border: solid 2px #000;
        padding: 4px;
        /* border-radius: 8px; */
        border-radius: 100%;
        /* Define the transition for transforming the SVG */
        transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .line {
        fill: none;
        stroke: hsl(228, 4%, 14%);
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 3;
        /* Define the transition for transforming the Stroke */
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
            stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .line-top-bottom {
        stroke-dasharray: 12 63;
    }

    .hamburger input:checked+svg {
        transform: rotate(-45deg);
    }

    .hamburger input:checked+svg .line-top-bottom {
        stroke-dasharray: 20 300;
        stroke-dashoffset: -32.42;
    }

    .hamburger input:checked+.nav_link_div {
        display: flex;
    }
}

@media (max-width: 400px) {

    nav.nav_soft {
        padding: 24px 8px;
    }

    .nav_link_div {
        right: 8px;
    }
}

/* smile and soft ui nav end----------- */