
/*****************headera*******************/

.nav__toggle {
    display: inline-block;
    position: absolute;
    z-index: 10;
    padding: 0;
    border: 0;
    background: #33b485;
    outline: 0;
    right: 15px;
    top: 28px;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: background-color .15s linear;
    transition: background-color .15s linear;
}


.nav__toggle:hover, .nav__toggle:focus {
background-color: rgba(0, 0, 0, 0.5);
}

.nav__menu {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-pack: center;
justify-content: center;
height: 600px;
position: relative;
z-index: 5;
visibility: hidden;
}


.nav__link {
    color: #fff;
    display: block;
    text-align: right;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Montserrat';
    padding: 10px 10px;
    letter-spacing: 3px;
}

.nav__link:hover, .nav__link:focus {
    outline: 0;
    color: #33b485;
    background-color: rgba(0, 0, 0, 0.2);
}
.menuicon {
display: block;
cursor: pointer;
color: white;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menuicon__bar, .menuicon__circle {
fill: none;
stroke: currentColor;
stroke-width: 3;
stroke-linecap: round;
}
.menuicon__bar {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-transition: -webkit-transform .25s ease-in-out;
transition: -webkit-transform .25s ease-in-out;
transition: transform .25s ease-in-out;
transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}
.menuicon__circle {
-webkit-transition: stroke-dashoffset .3s linear .1s;
transition: stroke-dashoffset .3s linear .1s;
stroke-dashoffset: 144.513262038;
stroke-dasharray: 144.513262038;
}

.splash {
position: absolute;
top: 40px;
right: 40px;
width: 1px;
height: 1px;
}

.splash::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 50%;
    background-color: var(--splash-bg-color);
    width: 284vmax;
    height: 284vmax;
    top: -142vmax;
    left: -142vmax;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition: -webkit-transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition: transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition: transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06), -webkit-transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    will-change: transform;
    background: url(../images/banner-bg.jpg);
    background-size: contain;
}

.nav:target > .splash::after,
.nav--open > .splash::after {
-webkit-transform: scale(1);
transform: scale(1);
}
.nav:target .menuicon,
.nav--open .menuicon {
color: white;
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.nav:target .menuicon__circle,
.nav--open .menuicon__circle {
stroke-dashoffset: 0;
}
.nav:target .menuicon__bar:nth-child(1), .nav:target .menuicon__bar:nth-child(4),
.nav--open .menuicon__bar:nth-child(1),
.nav--open .menuicon__bar:nth-child(4) {
opacity: 0;
}
.nav:target .menuicon__bar:nth-child(2),
.nav--open .menuicon__bar:nth-child(2) {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.nav:target .menuicon__bar:nth-child(3),
.nav--open .menuicon__bar:nth-child(3) {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.nav:target .nav__menu,
.nav--open .nav__menu {
visibility: visible;
}
.nav:target .nav__item,
.nav--open .nav__item {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
body {
background-color: #D7D7D7;
font-family: 'Roboto';
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-pack: center;
justify-content: center;
}
.viewport {
width: var(--screen-width);
height: var(--screen-height);
margin: 0 auto;
position: relative;
overflow: hidden;
background-color: white;
}
.header {
height: 5rem;
background-color: var(--header-bg-color);
}
.main {
padding: 20px;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
grid-auto-rows: 130px;
grid-gap: 20px;
}
.gallery__item {
height: 100%;
background-color: #D8D8D8;
}
    .gallery__item:hover, .gallery__item:focus {
background-color: #A4A4A4;
}

.nav--open .nav__menu{
    list-style:none;
    padding:0px 0px 0px 0px;
    margin: 30px 0px 0px 0px;
}

/*********************************************/

.ad-ban{
    min-height:unset;
}

.ad-ban .ban-top{
    padding: 30px 0px 0px 0px;
}

.ad-ban .ban-top .nav-list{
    padding:10px 0px 0px 0px;
    text-align: right;
}

.ad-ban .ban-top .nav-list ul{
    list-style:none;
    padding:0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.ad-ban .ban-top .nav-list ul li{
    display:inline-block;
    padding: 0px 0px 0px 0px;
}

.ad-ban .ban-top .nav-list ul li .but1{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #122e82;
    font-weight: 500;
    background: #fff;
    border: 1px solid #fff;
    padding: 6px 28px;
    margin: -6px 0px 0px 0px;
    border-radius: 6px;
    transition: 1s;
}

.ad-ban .ban-top .nav-list ul li .but1:hover{
    background: #fff;
    transition: 1s;
    box-shadow: inset 194px 0px 0px #143489;
    color: #fff;
}

.ad-ban .ban-top .nav-list ul .nav-li {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 66px;
}


.ad-ban .find-replace{
    padding: 30px 0px 30px 0px;
    text-align:center;
}

.ad-ban .find-replace h3{
    font-family: 'Montserrat';
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: capitalize;
}

.ad-ban .find-replace b{
    font-size: 60px;
    font-weight: 400;
    padding: 0px 6px;
    color: #fff;
}


/******************************acc-main********************************/


.acc-main-bg{
    background: #fff no-repeat top center;
    background-size: cover;
    padding: 50px 0px 50px 0px;
}

.acc-main{
    padding: 0px 0px 0px 0px;
}

.acc-main-bg .acc-main .sec{
    padding: 0px 0px 20px 0px;
    text-align:center;
}

.acc-main-bg .acc-main .sec h1{
    font-family: 'Montserrat';
    font-size: 16px;
    color: #070707;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.acc-main-bg .acc-main .sec h1 a{
    color: #1e4dd7;
    transition:.7s;
}

.acc-main-bg .acc-main .sec h1 a:hover{
   color: #33b485;
   transition:.7s;
}

.acc-main .two-fac{
    padding: 0px 0px 0px 0px;
}

.acc-main .two-fac h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #102645;
    padding: 10px 20px;
    margin: auto;
    border: 1px solid #2ca9e3;
    background: transparent;
    border-radius: 6px;
    width: fit-content;
    box-shadow: 0px 0px 5px #2ca9e3;
}

.acc-main .acc-details {
    padding: 30px 0px 30px 0px;
}

.acc-main .acc-details .details-1 {
    padding: 0px 0px 20px 0px;
}

/*.acc-main .acc-details .details-1 h1{

}*/

.acc-main .acc-details .details-1 .details-box {
    padding: 0px 20px 20px 20px;
    text-align: center;
    background: url(../images/banall.jpg) no-repeat center;
    background-size: cover;
    border: 1px solid #f4f4f4;
    border-radius: 8px;
    transition:.7s;
}

.acc-main .acc-details .details-1 .details-box:hover{
    background: url(../images/banall-hvr.jpg) no-repeat center;
    background-size: cover;
    transition:.7s;
}

.acc-main .acc-details .details-1 .details-box h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    padding: 6px 0px 6px 0px;
    margin: 0px 0px 0px 0px;
}

.acc-main .acc-details .details-1 .details-box img{
    padding: 6px 0px 0px 0px;
    width:50px;
}

.acc-main .acc-details .details-1 .details-box p{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #102645;
    padding: 8px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align:left;
}

.acc-main .acc-details .details-1 .details-box p span{
    color: #0d31c9;
    float: right;
}

.acc-main .acc-details .details-1 .details-box ul{
    padding: 30px 0px 0px 0px;
    list-style:none;
    margin: 0px 0px 0px 0px;
}

.acc-main .acc-details .details-1 .details-box ul li{
    display:inline-block;
    padding: 0px 14px;
    vertical-align:top;
    margin: 5px auto;
}

.acc-main .acc-details .details-1 .details-box ul li .but1{
    background: #0d31c9;
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat';
    padding: 8px 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 1px solid #0d31c9;
    transition: .7s;
}

.acc-main .acc-details .details-1 .details-box ul li .but1:hover{
    border: 1px solid #0d31c9;
    background: transparent;
    color: #0d31c9;
    transition: .7s;
}

.acc-main .acc-details .details-1 .details-box ul li .but2{
    background: #33b485;
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat';
    padding: 8px 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 1px solid #33b485;
    transition: .7s;
}

.acc-main .acc-details .details-1 .details-box ul li .but2:hover{
    border: 1px solid #33b485;
    background: transparent;
    color: #33b485;
    transition: .7s;
}



.refvalue{
    padding: 70px 0px 0px 0px;
}

.refvalue input{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    width: 100%;
    height: 50px;
    padding: 0px 10px;
    transition: .3s;
    border-radius: 6px;
    outline: none;
    border: 1px solid #000;
    background: transparent;
}

.refvalue input:focus{
    border: 1px solid #0d31c9;
    box-shadow: 0px 0px 2px #0d31c9;
}

.acc-main-bg .acc-main .acc-det{
    padding: 0px 0px 50px 0px;
}

.acc-main-bg .acc-main .acc-det ul{
    list-style:none;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align:center;
}

.acc-main-bg .acc-main .acc-det ul li{
    display: inline-block;
    padding: 30px 20px;
    width: 250px;
    border-radius: 6px;
    margin: 0px 10px;
    vertical-align: top;
    border: 2px solid #e8e8e8;
    background: url(../images/banall.jpg) no-repeat center;
    background-size: cover;
}

.acc-main-bg .acc-main .acc-det ul li:hover{
    background: url(../images/banall-hvr.jpg) no-repeat center;
    background-size: cover;
}

.acc-main-bg .acc-main .acc-det ul li img{
    padding: 0px 0px 0px 0px;
    width: 50px;
    float: left;
}

.acc-main-bg .acc-main .acc-det ul li h1{
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    color: #000;
    padding: 0px 0px 6px 0px;
    margin: 0px 0px 0px 0px;
}

.acc-main-bg .acc-main .acc-det ul li h2{
    font-family: 'Montserrat';
    font-size: 15px;
    font-weight: 500;
    color: #33b485;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}



/************************deposit-bg****************************/

.deposit-bg {
    background: #fff no-repeat top center;
    background-size: cover;
    padding: 50px 0px 50px 0px;
}

.deposit-bg .deposit{
   padding: 0px 0px 0px 0px;
}


.deposit-bg .deposit .in-plan{
    padding: 0px 0px 0px 0px;
} 

.deposit-bg .deposit .in-plan .pln-box{
    padding: 30px 30px;
    text-align: center;
    border-radius: 10px;
    background: url(../images/about-bg.jpg) no-repeat top center;
    background-size: cover;
    margin: 20px auto;
} 

.deposit-bg .deposit .in-plan .pln-box h4{
   font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px; 
}

.deposit-bg .deposit .in-plan .pln-box h1{
    font-family: 'Montserrat';
    font-size: 35px;
    font-weight: 600;
    color: #33b485;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.deposit-bg .deposit .in-plan .pln-box h2{
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 600;
    color: #33b485;
    padding: 0px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
}

.deposit-bg .deposit .in-plan .pln-box p {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 0px 0px 14px 0px;
    margin: 0px 0px 0px 0px;
}

.deposit-bg .deposit .in-plan .pln-box p span {
    font-weight: 600;
    color: #f7931a;
}

.deposit-bg .deposit .in-plan .pln-box .but {
    padding: 20px 0px 0px 0px;
}

.deposit-bg .deposit .nav{
    border: none;
    display: block;
    padding: 40px 0px 30px 0px; 
    text-align: center;
}
.deposit-bg .deposit .nav .nav-item{
   width: 48%;
    float: none;
    display: inline-block;
    text-align: center;
}

.deposit-bg .deposit .nav .nav-item .nav-link{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000000;
    background: transparent;
    margin: 0px 10px 0px 0px;
    padding: 10px 20px;
    border: 2px solid #0d31c9;
    font-weight: 400;
    border-radius: 5px;
}
.deposit-bg .deposit .nav .nav-item .nav-link.active{
    color: #ffffff;
    background: #0d31c9;
    border: 2px solid #0d31c9;
}
.deposit-bg .deposit .tab-content{
    margin: 0px;
    padding: 0px;
    text-align: center;
}
.deposit-bg .deposit .radio_btn .checkmark1 {
    left: -20px;
}
.deposit-bg .deposit .depo_pro{
    display: inline-block;
    width: 110px;
    margin: 10px;
    padding: 10px 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0px 0px 3px #0d31c9;
    vertical-align:top;
}


.deposit-bg .deposit .depo_pro h2{
    font-family: 'Montserrat';
    font-size: 12px;
    color: #070707;
    font-weight: 500;
    padding: 24px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.deposit-bg .deposit .depo_pro .radio_btn{
    display: unset;
    position: relative;
    padding-left: 30px;
    margin: 0px 4px 0px 0px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.deposit-bg .deposit .depo_pro .radio_btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.deposit-bg .deposit .depo_pro .radio_btn .checkmark1{
   position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    height: 42px;
    width: 42px;
    background-color: #fff;
    text-align: center;
    margin: auto;
    border-radius: 50px; 
}

.deposit-bg .deposit .depo_pro .radio_btn .checkmark1 img{
    width:34px;
    transform: translateY(5px);
    transition: 1s;
}

.deposit-bg .deposit .depo_pro .radio_btn input:checked ~ .checkmark1{
    background: #33b485;
    border-radius: 50px;
    width: 44px;
    height: 44px;
}
    
.deposit-bg .deposit .depo_pro .radio_btn input:checked ~ .checkmark1 img{

    transition: 1s;
}  



.deposit-bg .deposit .depo_bal{
    display: inline-block;
    width: 110px;
    margin: 10px;
    padding: 10px 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0px 0px 3px #0d31c9;
    vertical-align:top;
}

.deposit-bg .deposit .depo_bal h2{
    font-family: 'Montserrat';
    font-size: 12px;
    color: #070707;
    font-weight: 500;
    padding: 24px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.deposit-bg .deposit .depo_bal .radio_btn{
    display: unset;
    position: relative;
    padding-left: 30px;
    margin: 0px 4px 0px 0px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.deposit-bg .deposit .depo_bal .radio_btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.deposit-bg .deposit .depo_bal .radio_btn .checkmark1{
   position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    height: 42px;
    width: 42px;
    background-color: #fff;
    text-align: center;
    margin: auto;
    border-radius: 50px; 
}

.deposit-bg .deposit .depo_bal .radio_btn .checkmark1 img{
    width:34px;
    transform: translateY(5px);
    transition: 1s;
}

.deposit-bg .deposit .depo_bal .radio_btn input:checked ~ .checkmark1{
    background: #33b485;
    border-radius: 50px;
    width: 44px;
    height: 44px;
}
    
.deposit-bg .deposit .depo_bal .radio_btn input:checked ~ .checkmark1 img{
    transition: 1s;
}  


.deposit-bg .deposit .amt-spnt{
    padding: 50px 0px 0px 0px;
    text-align: center;
}

.deposit-bg .deposit .amt-spnt h2{
    color: #1e4dd7;
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 600;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.deposit-bg .deposit .amt-spnt input{
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 500;
    color: #0d31c9;
    width: 50%;
    height: 46px;
    padding: 0px 10px;
    transition: .3s;
    outline: none;
    border: 1px solid #707070;
    border-radius: 6px;
}

.deposit-bg .deposit .amt-spnt input:hover , .deposit-bg .deposit .amt-spnt input:focus{
    border-color: #1e4dd7;
    outline: 0;
    box-shadow: 0px 0px 5px #1e4dd7;
}


/***************************withdrawl***************************/

.withdraw-bg {
    background: #fff no-repeat top center;
    background-size: cover;
    padding: 50px 0px 50px 0px;
}

.withdraw-bg .withdrawl{
    padding: 0px 0px 0px 0px;
}

.withdraw-bg .withdrawl .wthrw-info{
}

.withdraw-bg .withdrawl .wthrw-info ul{
    list-style:none;
    padding: 0px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.withdraw-bg .withdrawl .wthrw-info ul li{
    display:inline-block;
    padding: 10px 30px;
    margin: 0px 0px 0px 0px;
}

.withdraw-bg .withdrawl .wthrw-info ul li .acc {
    padding: 20px 20px;
    margin: auto;
    width: 350px;
    background: url(../images/banall.jpg) no-repeat center;
    background-size: cover;
    border: 1px solid #f4f4f4;
    border-radius: 8px;
    transition: .7s;
}

.withdraw-bg .withdrawl .wthrw-info ul li .acc:hover{
    background: url(../images/banall-hvr.jpg) no-repeat center;
    background-size: cover;
    transition: .7s;
}

.withdraw-bg .withdrawl .wthrw-info ul li .acc img {
    padding: 0px 0px 0px 0px;
    float: left;
}

.withdraw-bg .withdrawl .wthrw-info ul li .acc h1 {
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 600;
    color: #323232;
    padding: 10px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.withdraw-bg .withdrawl .wthrw-info ul li .acc h2 {
    font-family: 'Montserrat';
    font-size: 22px;
    font-weight: 500;
    color: #0d31c9;
    padding: 10px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.withdraw-bg .withdrawl .amt-spnt{
    padding: 10px 0px 0px 0px;
    text-align: center;
}

.withdraw-bg .withdrawl .amt-spnt h2{
    color: #1e4dd7;
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 600;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.withdraw-bg .withdrawl .amt-spnt input{
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 500;
    color: #0d31c9;
    width: 50%;
    height: 46px;
    padding: 0px 10px;
    transition: .3s;
    outline: none;
    border: 1px solid #707070;
    border-radius: 6px;
}

.withdraw-bg .withdrawl .amt-spnt input:hover , .deposit-bg .deposit .amt-spnt input:focus{
    border-color: #1e4dd7;
    outline: 0;
    box-shadow: 0px 0px 5px #1e4dd7;
}


.withdraw-bg .withdrawl .txt-area{
    padding: 30px 0px 0px 0px;
    text-align:center;
} 

.withdraw-bg .withdrawl .txt-area textarea{
    width: 60%;
    height: 100px;
    padding: 8px 10px;
    transition: .3s;
    outline: none;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    color: #0d31c9;
    border: 1px solid #707070;
    border-radius: 4px;
}

.withdraw-bg .withdrawl .txt-area textarea:hover , .withdraw-bg .withdrawl .txt-area textarea:focus{
    border-color: #1e4dd7;
    outline: 0;
    box-shadow: 0px 0px 5px #1e4dd7;
}

/*****************deposit-list********************/

.deposit-list-bg{
    background: #fff;
    background-size: cover;
    padding: 50px 0px 50px 0px;
}


/*****************earnings********************/

.earning-bg{
    background: #fff;
    background-size: cover;
    padding: 50px 0px 50px 0px;
}

.earning-bg .earning{
    padding: 0px 0px 0px 0px;
}

.earn {
    padding: 0px 0px 0px 0px;
}

.earn .all-trns{
    padding: 0px 0px 0px 0px;
}

.earn .all-trns select{
    width: 100%;
    height: 40px;
    padding: 0px 20px;
    margin: 6px 0px;
    color: #fff;
    font-weight: 500;
    font-family: 'Montserrat';
    background: #0d31c9;
    border: 1px solid #0d31c9;
    border-radius: 6px;
}


.earn .frm {
    padding: 0px 0px 0px 0px;
    text-align:center;
}

.earn .frm ul {
    list-style:none;
    margin: 0px 0px;
    padding: 0px 0px;
}

.earn .frm ul li{
    display: inline-block;
    padding: 0px 10px;
    vertical-align: middle;
    width: 120px;
}

.earn .frm ul li h1{
    font-family: 'Montserrat';
    font-size: 20px;
    color: #070707;
    font-weight: 600;
}

.earn .frm select{ 
    width: 100%;
    border: 1px solid #0d31c9;
    height: 40px;
    padding: 0px 10px;
    margin: 6px 0px;
    color: #fff;
    font-weight: 600;
    font-family: 'Montserrat';
    background: #0d31c9;
    border-radius: 6px;
}

/**************************referals-bg****************************/

.referals-bg{
    background: #fff;
    background-size: cover;
    padding: 50px 0px 50px 0px;
}

.referals-bg .referals{
    padding:0px 0px;
}

.referals-bg .referals h3{
    font-family: 'Montserrat';
    font-size: 30px;
    color: #2258b6;
    font-weight: 600;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align:center;
}

/**************************referal-link-bg****************************/

.referals-bg .reff{
    padding: 20px 20px;
    border: 2px solid #f4f4f4;
    border-radius: 12px;
}

.referals-bg .reff ul{
    list-style:none;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.referals-bg .reff ul li{
    padding: 20px 0px 20px 0px;
}

.referals-bg .reff ul li .reff1{
    padding: 20px 20px;
    background: transparent;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 0px 6px #dad6d6;
}

.referals-bg .reff ul li .reff1 img{
    padding: 10px 0px 20px 0px;
}

.referals-bg .reff ul li .reff1 h1{
    font-family: 'Montserrat';
    font-size: 20px;
    color: #0d31c9;
    font-weight: 600;
    margin: 0px 0px 0px 0px;
    padding: 10px 0px 10px 0px;
}

.referals-bg .reff ul li .reff1 ul{
    list-style:none;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.referals-bg .reff ul li .reff1 ul li{
    display: inline-block;
    padding: 0px 20px;
    margin: 0px 0px 0px 0px;
    vertical-align: middle;
}

.referals-bg .reff ul li .reff1 textarea{
    width: 500px;
    height: 100px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #ced4da;
    transition: .3s;
    border-radius: 10px;
    outline: none;
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 500;
    color: #000;
}


/**************************edit-acc-bg****************************/

.edit-acc-bg{
    background: #fff;
    background-size: cover;
    padding: 50px 0px 50px 0px;
}

.edit-acc-bg .edit-acc{
    padding:0px 0px;
}

.edit-acc .form-box .name{
   padding: 20px 0px 0px 0px;
   text-align: center;
}

.edit-acc .form-box .name input{
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    color: #000;
    width: 80%;
    height: 42px;
    padding: 4px 14px;
    transition: .3s;
    border-radius: 6px;
    outline: none;
    background: transparent;
    border: 1px solid #ced4da;
}

.edit-acc .form-box .name input:focus , .edit-acc .form-box .name input:hover{
    border: 1px solid #0d31c9;
    box-shadow: 0px 0px 4px #0d31c9;
}


/***********************dep-cnfrm*************************/

.dep-cnfrm{
    padding: 0px 0px 0px 0px;
    text-align:center;
}

.dep-cnfrm h3{
    font-family: 'Montserrat';
    font-size: 22px;
    color: #0d31c9;
    font-weight: 600;
    padding: 20px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}


/**************************.top10-bg*****************************/
.top10-bg{
   padding: 50px 0px 80px 0px; 
   margin: 0px 0px;
}














/***********************table*****************************/

.tab{
    padding: 30px 0px 0px 0px;
}

.tab table{
    border-collapse: collapse;
    overflow: hidden;
    width: 100%;
    padding: 5px;
    background: #f7f8fa;
}

.tab table th {
    padding: 10px 30px;
    font-weight: 500;
    text-align: left;
    font-family: 'Montserrat';
    font-size: 15px;
    color: #ffffff;
    border-right: 1px solid #f7f8fa;
    border-bottom: 1px solid #000;
    background: #0d31c9;
}

.tab table tr {
    
}

.tab table tr:hover{
   background: #fff; 
} 

.tab table tbody tr td {
    font-size: 14px;
    white-space: nowrap;
    border-radius: inherit;
    padding: 8px 30px;
    color: #0d31c9;
    font-weight: 600;
    text-align: left;
    border: 2px solid #e8e8e8;
    font-family: 'Montserrat';
}

.tab2 table{
    border-collapse: collapse;
    overflow: hidden;
    width: 50%;
    padding: 5px;
    margin: 20px auto;
}











@media only screen and (max-width: 1199px){
    .acc-main .acc-details .details-1 .details-box p {
    font-size: 13px;}
    .acc-main .acc-details .details-1 .details-box ul li {
    padding: 5px 3px;}
    .acc-main-bg .acc-main .acc-det ul li {
    width: 230px;
    margin: 0px 2px;}
    
    .deposit-bg .deposit .in-plan .pln-box {
    max-width: 280px;}
	
	}
	
@media only screen and (max-width: 991px){
	.acc-main-bg .acc-main .acc-det ul li {
	width: 250px;    
    margin: 5px 5px;}
    }
	

@media only screen and (max-width: 767px){
    
    .ad-ban .ban-top .nav-list {
    padding: 30px 0px 0px 50px;
    text-align: center;}
    
    .ad-ban .ban-top {
    text-align: center;}
    
    .acc-main-bg .acc-main .sec h1 {
    font-size: 14px;}
    
    .referals-bg .reff ul li .reff1 textarea {
    width: 400px;}
    
    .edit-acc .form-box .name input {
    width: 100%;}
    
	}
	

@media only screen and (max-width:630px) {
    
    .ad-ban .find-replace h3 {
    font-size: 30px;}
    .ad-ban .find-replace b {
    font-size: 40px;}

	.deposit-bg .row {
    width: 100%;
    margin: auto;}
    
    .deposit-bg .deposit .nav .nav-item .nav-link {
    font-size: 14px;}
    
    .withdraw-bg .row {
    width: 100%;
    margin: auto;
    }
    
    .referals-bg .row {
    width: 100%;
    margin: auto;}
    
    .edit-acc-bg .row {
    width: 100%;
    margin: auto;}
    
    
    
    
    
	}
	

@media only screen and (max-width:560px) {
    
    .nav__link {
    font-size: 20px;}
    
    .ad-ban .row>* {
    width: 100%;
    margin: auto;}
    
    .withdraw-bg .withdrawl .amt-spnt input {
    width: 90%;}
    .withdraw-bg .withdrawl .txt-area textarea {
    width: 100%;}
    .withdraw-bg .withdrawl .wthrw-info ul li .acc {
    width: 280px;}
    .withdraw-bg .withdrawl .wthrw-info ul li{
        padding:10px 10px;
    }
    
    .earn .frm ul {
    padding: 10px 0px;}
    
    .referals-bg .reff {
    padding: 20px 10px;}
    .referals-bg .reff ul li .reff1 {
    padding: 20px 0px;}
    .referals-bg .reff ul li .reff1 ul li {
    padding: 0px 0px;}
    .referals-bg .reff ul li .reff1 textarea {
    width: 280px;
    height: 130px;}
    
    

	}	


@media only screen and (max-width:400px) {
     
    .ad-ban .ban-top .nav-list {
    padding: 30px 0px 0px 30px;} 
     
	}
























