* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    background: #004930;
}

h1 , h2 , h3 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
}

header.nav {
    background: hsla(163, 87%, 15%, 1);
    width: 100%;
    height: 84px;
    padding: 20px 0;
    border-bottom: 1px solid hsla(163, 84%, 10%, 1);
    box-shadow: 0px 4px 4px 0px hsla(163, 84%, 10%, 0.25);
}

.nav-cnt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a.nav-left {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #003C2A 0%, rgba(0, 60, 42, 0) 100%);
    border-image-source: linear-gradient(180deg, rgba(69, 203, 135, 0.08) 0%, rgba(69, 203, 135, 0.16) 100%);
    box-shadow: 0px 0px 14px 0px hsla(0, 0%, 0%, 0.1) inset;
    padding: 4px 8px;
    border-radius: 9px;
}

.nav-left i {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 14px;
    position: relative;
}

.nav-left i::before, .nav-left i::after {
    content: '';
    width: 20px;
    height: 2px;
    background: white;
    display: block;
    position: absolute;
    top: -7px;
    border-radius: 14px;
    transition: 0.3s;
}

.nav-left i::after {
    width: 15px;
    top: 7px;
}

a.nav-left:hover i::before {
    top: -10px;
}

a.nav-left:hover i::after {
    top: 10px;
}

.nav-mid {
    width: 45%;
    display: flex;
    justify-content: right;
}

.nav-right {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 45%;
    gap: 10px;
}

.option-btn::after {
    content: '';
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    width: 10px;
    height: 5px;
    background: white;
    display: inline-block;
    background: rgba(255, 189, 0, 1);
}

a.option-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.border-box {
    background: linear-gradient(180deg, #003C2A 0%, rgba(0, 60, 42, 0) 100%);
    border: 1px solid;
    border: 1px solid rgba(69, 203, 135, 0.40);
    box-shadow: 0px 0px 14px 0px hsla(0, 0%, 0%, 0.1) inset;
    padding: 4px 10px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    transition: 0.3s;
}

i::before {
    color: rgba(255, 189, 0, 1);
    font-size: 16px;
}

span.wallet-img {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(131.04deg, #FFEC4A 8.69%, #FFC400 76.92%);
    box-shadow: 0px 2px 16px 0px rgba(255, 196, 0, 0.4);
    border-radius: 8px;
}

.wallet {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-right span {
    color: white;
}

.border-box:hover {
    color: #fff;
    background-color: #171717;
    border-color: #545b62;
}

i.fa-trophy, i.fa-bell {
    display: flex;
}

.dropdown-menu {
    background: white;
    padding: 1px 20px 15px;
    color: black;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
    position: absolute;
    top: 40px;
    left: 0px;
    display: none;
    z-index: 9999;
}

a.dropdown-item {
    font-size: 16px;
    font-weight: 500;
    color: black;
    white-space: nowrap;
    display: flex;
    margin-top: 10px;
}

.wallet-drop {
    position: relative;
}

.option-right {
    position: relative;
}

.name-pro {
    position: relative;
}

.wallet-dd {
    top: 31px;
}

.name-opt-opn.show {
    display: block;
}

.wallet-opt-opn.show {
    display: block;
}

.opt-opt-opn.show {
    display: block;
}

.nav-left-opn {
    background: black;
    color: white;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    transform: scale(0);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    z-index: 999999999;
}

.cross i::before, .cross i::after {
    content: '';
    width: 20px;
    height: 2px;
    display: block;
    background: white;
    border-radius: 20px;
    position: absolute;
    right: 9px;
    transition: 0.3s;
}

a.cross {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #003C2A 0%, rgba(0, 60, 42, 0) 100%);
    border-image-source: linear-gradient(180deg, rgba(69, 203, 135, 0.08) 0%, rgba(69, 203, 135, 0.16) 100%);
    box-shadow: 0px 0px 14px 0px hsla(0, 0%, 0%, 0.1) inset;
    padding: 4px 8px;
    border-radius: 9px;
    position: relative;
}

.cross i::before {
    transform: rotate(45deg);
}

.cross i::after {
    transform: rotate(-45deg);
}

.nav-opn-top-cnt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    width: 1360px;
}

.nav-left-opn .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.nav-left-opn img {
    margin-top: 280px;
    margin-bottom: 30px;
}

.nav-left-opn ul {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.nav-left-opn ul li:first-child {
    color: rgba(255, 189, 0, 1);
}

a.cross:hover i::after, a.cross:hover i::before {
    width: 25px;
}

.nav-left-opn.nav-opn {
    visibility: visible;
    transform: scale(1);
    opacity: 1;
}

section.hero-page {
    background: url(../img/hero-bg.png);
    background-repeat: no-repeat;
    color: white;
    background-color: #054634;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: end;
    height: 473px;
}

img.hero-dice {
    position: absolute;
    bottom: 0;
}

.h-page-cnt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-left {
    width: 50%;
}

.hero-right {
    width: 50%;
}

.hero-left h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-left p {
    line-height: 28px;
    font-size: 18px;
}

.hero-right img {
    width: 100%;
}

.hero-right img:last-child {
    width: 15%;
    position: absolute;
    top: 0px;
    right: 210px;
}

section.hero-page::after {
    content: '';
    width: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(5, 70, 52, 0) 0%, #054634 100%);
    height: 50%;
    bottom: 0;
    left: 0;
}

section.contest {
    margin-top: 120px;
    color: white;
    text-align: center;
}

.c-heading {
    max-width: 55%;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
}

span.scroll-bar {
    height: 4px;
    width: 50%;
    background: rgba(0, 34, 16, 1);
    margin: 25px auto;
    border-radius: 5px;
    position: relative;
}

.c-heading h1 {
    font-size: 48px;
}

span.scroll-bar::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: rgba(15, 134, 93, 1);
    transform: translate(220%, -43%);
    border-radius: 50%;
    border: 3px solid rgba(45, 164, 123, 1);
}

.leader-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-heading p {
    line-height: 22px;
}

.leader-head h1 {
    font-size: 48px;
    color: rgba(255, 189, 0, 1);
}

span.l-rank {
    background: linear-gradient(0deg, #002413, #002413),
linear-gradient(180deg, rgba(255, 196, 0, 0) 0%, rgba(255, 196, 0, 0.1) 100%);
    border: 2px solid #ffbd00;
    padding: 16px 42px 16px 107px;
    border-radius: 8px;
    position: relative;
}

span.rank-logo {
    position: absolute;
    background: url(../img/badge.png);
}

span.rank-logo {
    position: absolute;
    background: url(../img/badge.png);
    height: 165%;
    width: 22%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    left: 15px;
    top: -16px;
}

.l-rank p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.l-cnt-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cnt-rank {
    position: relative;
    height: 54px;
    width: 6%;
}

.cnt-rank .rank-logo {
    width: 44px;
    height: 54px;
    top: 0;
    left: 18px;
} 

.l-cnt-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(0deg, #002413, #002413),
linear-gradient(180deg, rgba(255, 196, 0, 0) 0%, rgba(255, 196, 0, 0.1) 100%);
    border: 1px solid;
    border: 1px solid #FFC400;
    padding: 16px 42px;
    border-radius: 8px;
}

.leader-cnt {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
}

.leader-names {
    display: flex;
    justify-content: space-between;
    width: 70%;
    align-items: center;
}

span.leader-name {
    text-align: left;
    border-right: 1px solid rgba(109, 109, 109, 0.59);
    width: 24%;
    padding-left: 25px;
}

.leader-name h6 {
    color: #7c8e86;
}

a.main-btn {
    color: rgba(2, 54, 36, 1);
    font-size: 18px;
    font-weight: 700;
    background: rgba(69, 203, 135, 1);
    padding: 14px 28px 14px 28px;
    border-radius: 8px;
    box-shadow: 0px 4px 16px 0px rgba(69, 203, 135, 0.25);
    transition: 0.5s;
}

.leader-foot {
    margin-top: 46px;
}

a.main-btn:hover {
    color: blue;
}

section.level-system {
    position: relative;
    margin-top: 134px;
}

.khajana {
    position: absolute;
    bottom: 0;
    width: 32%;
}

.lvl-head .scroll-bar {
    display: block;
}   

.lvl-head h1 {
    width: 55%;
    margin: 0 auto;
    font-size: 48px;
}

.lvl-head .scroll-bar {
    display: block;
}

.lvl-head {
    text-align: center;
    margin: 0 auto;
    width: 50%;
    color: white;
}

.lvl-cnt-box {
    /* display: flex; */
    margin-bottom: 20px;
    justify-content: end;
    /* position: relative; */
}   

.lvl-bux {
    background: rgba(0, 36, 19, 1);
    border: 1px solid;
    border: 1px solid #a09797;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px 25px;
    height: 60px;
    margin-left: 476px;
}

.lvl-bux img {
    width: 5%;
    transition: 0.5s;
    z-index: 999999;
}

.lvl-bux h6 {
    margin-left: 30px;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

h6.lvl-cback {
    margin-left: 290px;
    color: #f7bd00;
}

.lvl-bux i {
    margin-left: 100px;
}

.lvl-cnt {
    margin: 50px 0 0 0;
}

.lvl-bux-opn {
    position: relative;
    background: rgba(0, 44, 26, 1);
    /* padding: 24px; */
    color: white;
    width: 65%;
    /* top: 60px; */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 476px;
    height: 0px;
    overflow: hidden;
    transition: 0.5s;
}

.lvl-tsk-head {
    display: flex;
    align-items: center;
}

.lvl-tsk-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


span.white-bar {
    width: 100%;
    display: block;
    height: 4px;
    background: white;
    border-radius: 8px;
}

.tsk-box-3 {
    width: 20%;
    /* align-items: center; */
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 3px; */
}

span.yellow-bar {
    display: block;
    width: 30%;
    height: 4px;
    background: linear-gradient(131.04deg, #FFEC4A 8.69%, #FFC400 76.92%);
    box-shadow: 0px 2px 16px 0px rgba(255, 196, 0, 0.7);
    border-radius: 8px;
    position: relative;
    top: -4px;
}

p.bar-cnt {
    margin: 0 auto;
    width: 73%;
}

p.tsk-box-2 {
    font-size: 22px;
    font-weight: 500;
}

p.tsk-bar-4 {
    font-size: 22px;
    font-weight: 500;
}

span.tsk-bar-5 {
    background: #04d104;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tsk-bar-5 i::before {
    color: white;
    font-size: 20px;
}

p.tsk-head-left {
    margin-left: 75px;
}

p.tsk-head-mid {
    margin-left: 357px;
}

p.tsk-head-right {
    margin-left: 164px;
}

.bux-1-opn.lvl-popup-1 {
   height: 218px;
   padding: 24px;
   overflow: visible;
}

.bux-2-opn.lvl-popup-2 {
    height: 218px;
    padding: 24px;
    overflow: visible;
 }

 .bux-3-opn.lvl-popup-3 {
    height: 218px;
    padding: 24px;
    overflow: visible;
 }

 .bux-img-1.img-scale-1 {
    transform: scale(1.8);
 }

 .bux-img-2.img-scale-1 {
    transform: scale(1.8);
 }

 .bux-img-3.img-scale-1 {
    transform: scale(1.8);
 }

 section.users {
    margin-top: 120px;
    text-align: center;
}

section.users {
    margin-top: 120px;
    text-align: center;
    padding-bottom: 120px;
}

.user-head {
    color: white;
    width: 50%;
    margin: 0 auto;
}

.user-head h1 {
    font-size: 48px;
}

.user-cnt {
    margin-top: 50px;
}

.user-cnt {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.u-cnt-left {
    background: white;
    padding: 70px 30px 0px;
    width: 45%;
    border-radius: 12px;
}

.u-cnt-left h3 {
    margin: 0 auto 40px;
    width: 71%;
    font-size: 24px;
    line-height: 40px;
}

.u-cnt-right {
    background: rgba(255, 255, 255, 0.2);
    padding: 70px 30px 0;
    width: 45%;
    border-radius: 12px;
}

.u-cnt-right h3 {
    margin: 0 auto 40px;
    width: 71%;
    font-size: 24px;
    line-height: 40px;
    color: #fff;
}

.u-flx {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 500px;
    overflow-y: scroll;
}

.u-box {
    display: flex;
    align-items: center;
    padding: 10px;
}

p.p-1 {
    font-weight: 700;
    margin: 0 96px 0 24px;
}

p.p-2 {
    font-weight: 700;
    color: rgba(39, 140, 116, 1);
}

p.p-3 {
    padding: 0 40px;
}

.u-box i::before {
    color: white;
}

.u-box i {
    background: rgba(105, 207, 24, 1);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 9px;
}

.u-box i::before {
    color: white;
    font-size: 14px;
}

.u-green p {
    color: white;
}

.u-green .p-2 {
    color: rgba(255, 189, 0, 1);
}

footer.foot {
    background: rgba(5, 65, 48, 1);
    padding: 40px 0 20px;
}

.foot-up {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: white;
    margin-bottom: 24px;
}

.foot-up a {
    color: white;
    font-size: 12px;
}

.f-u1 {
    height: 100%;
    margin: auto 0;
}

.ibar-1 {
    width: 100%;
    display: block;
    background: white;
    height: 2px;
}

.ibar-2 {
    background: rgba(255, 189, 0, 1);
    width: 30%;
    display: block;
    height: 2px;
    position: relative;
    top: -2px;
}

.foot-up ul {
    margin-top: 15px;
}

.f-u4 a {
    display: block;
    text-align: right;
    margin-top: 15px;
}

hr {
    opacity: 0.2;
}

.foot-down {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin: 20px 0;
}

.user-head .scroll-bar {
    display: block;
}