@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Bebas-Regular';
    src: url(../fonts/Bebas-Regular.ttf);
}

:root {
    --font-size: 18px;
    --font-family: 'Poppins', sans-serif;
    --black-color: #0E0E0E;
    --white-color: #fff;
    --red-color: #E40000;
    --gray: #B5B5B5;
    --blue: #1E9DC1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: var(--font-size);
    font-family: var(--font-family);
    background-size: cover;
    overflow-x: hidden !important;
    color: var(--black-color);
}

h2,
h3,
h4,
h5 {
    font-family: 'Rajdhani';
    text-transform: capitalize;
}

p {
    font-family: 'Rajdhani' !important;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none !important;
    display: inline-block;
    transition: all .5s ease-in-out;
    font-family: 'Rajdhani';
}

/* width */
body::-webkit-scrollbar {
    width: 8px;
}

/* Track */
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 1px;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: #d8ad59;
    border-radius: 1px;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
    background: #d8ad59;
}

/* loader styling start  */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(181deg, #d8ad59 0%, #685001 85%) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 100%;
    height: 100vh;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #ccc;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;

    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-wrapper.loaded {
    display: none;
}

.loader::after,
.loader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: scale(0.5) translate(0, 0);
    background-color: #ccc;
    border-radius: 50%;
    animation: animloader 1s infinite ease-in-out;
}

.loader::before {
    background-color: #000;
    transform: scale(0.5) translate(-48px, -48px);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animloader {
    50% {
        transform: scale(1) translate(-50%, -50%);
    }
}

.viseo-sec h2 {
    font-size: 60px;
    font-weight: 600;
    color: #0f0f29;
}


/* loader styling end  */
/* HEADER START */
header {
    position: absolute;
    z-index: 99;
    width: 100%;
    /* margin-top: 15px; */
}

.menu-br .navbar {
    width: 100% !important;
    display: inline-block;
}

/* .main-logo:before {
    content: "";
    position: absolute;
    left: 0;
    top: -14px;
    height: calc(100% + 16px);
    width: 100%;
    background: #ffffff;
    z-index: -1;
    border-radius: 0px 0px 100px 100px;
} */
.main-logo {
    /* background-color: #fff; */
    /* padding: 13px 0px 14px 10px; */
    /* clip-path: polygon(0 0, 100% 1%, 100% 1%, 70% 100%, 0 100%, 0% 50%); */
    /* border-radius: 10px; */
    position: relative;
}

.main-logo h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin: 0;
}

.main-logo h3 span {
    display: block;
}

.main-logo>a>img {
    max-width: 250px;
    padding: 0px;
    /* transform: translateY(-20px); */
}

.hed-inner {
    /* background-color: #fff; */
    /* clip-path: polygon(5% 0, 100% 1%, 100% 1%, 100% 100%, 0 100%, 0 100%); */
    border-radius: 10px;
    padding: 0;
    /* margin-left: -70px; */
    display: flex;
    /* justify-content: end; */
    /* min-height: 112px; */
    justify-content: space-between;
    align-items: center;
}

.hed-inner li a {
    padding: 0 !important;
}

div#main-menu ul li {
    display: inline-block;
    margin-bottom: 20px;
}

div#main-menu ul {
    /* text-align: right; */
    margin: 0;
    padding: 0 0 0 17px;
    display: flex;
    flex-direction: column;
}

.main-menu li a {
    font-size: 20px;
    font-weight: 500;
    color: #131415 !important;
}

/* HEADER END */

/* HOME PAGE START */
.min-im img {
    width: 100%;
}

.min-im {
    position: relative;
}

.main-banner {
    position: relative;
}

.scroll-im {
    display: table;
    margin: -150px auto 0;
    position: relative;
    z-index: 99;
}

.main-banner .slick-dots {
    position: absolute;
    bottom: auto;
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    top: 38%;
    left: auto;
    z-index: 9;
    right: 40px;
}

.main-banner .slick-dots li button {
    font-size: 22px;
    border: 1px solid #73674e;
    line-height: 0;
    /* display: inline-block !important; */
    width: 30px;
    height: 30px;
    line-height: 0;
    border-radius: 10px;
    padding: 25px 0;
    cursor: pointer;
    color: #73674e;
    outline: none;
    background: transparent;
}

.sm_input {
    max-width: 140px !important;
    width: 140px !important;
    min-width: 140px !important;
}

.main-banner .slick-dots li {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 5px 45px;
}

.main-banner .slick-active button {
    color: #fff !important;
    background-color: #006633 !important;
}

.main-banner .slick-dots li button:before {
    display: none;
}

a.loginbtn {
    min-height: 50px;
    min-width: 200px;
    border-radius: 9px;
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #006633;
    color: #fff;
    border: 2px solid #d8ad59;
    border-radius: 10px;
    font-size: 20px !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.ban-cont {
    position: absolute;
    top: 38%;
    /* left: 40px; */
    width: 100%;
    text-align: center;
}

a.brd-nv>span>i.fa-solid.fa-bars {
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    background: #148655;
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid;
}

.ban-cont h2 {
    font-size: 60px;
    color: #d8ad59;
    line-height: 78px;
    font-weight: 600;
    filter: drop-shadow(2px 4px 6px black);
    max-width: 80%;
    margin: 0 auto;
}

.main-logo a.navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
}

.ban-cont h2 span {
    display: block;
    font-size: 96px;
    color: #d8ad59;
    font-weight: 600;
}

.ban-cont p {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    width: 70%;
    margin: 19px auto 0;
}

.ban-cont p span {
    color: #d8ad59;
}

.complicate {
    padding: 80px 0 0 0;
}

.compl-hed {
    text-align: center;
}

.compl-hed h2 {
    font-size: 44px;
    font-weight: 600;
    color: #0f0f29;
}

.compl-hed p {
    font-weight: 600;
    width: 100%;
    /* margin: 10px auto 20px; */
}

button.forgotpassword {
    min-height: 50px;
    min-width: 200px;
    border-radius: 9px;
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #006633;
    color: #fff;
    border: 2px solid #d8ad59;
    border-radius: 10px;
    font-size: 20px !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.game-box {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 24px;
    border-radius: 20px;
    /* min-height: 268px; */
}

.game-box ul {
    padding: 0;
}

.game-box li {
    font-size: 18px;
    color: #0f0f29;
    font-weight: 500;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.game-box li span {
    color: #d8ad59;
    margin-right: 40px;
}

.goldText {
    color: #d8ad59 !important;
}

.game-box h4 {
    font-size: 32px;
    font-weight: 600;
    color: #0f0f29;
    margin-bottom: 18px;
}

.w-49 {
    min-width: 49%;
    max-width: 49%;
}

/* .w-49 input {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
} */
.w-49 strong {
    color: #222;
    font-weight: 700;
}

.freedom {
    padding: 80px 0 0 0;
}

.freed-im img {
    width: 100%;
}

.freed-cont h3 {
    font-size: 37px;
    color: #0f0f29;
    font-weight: 600;
}

.freed-cont h3 span {
    display: block;
}

.freed-cont p {
    font-size: 17px;
    font-weight: 500;
    font-family: 'Montserrat' !important;
}

.resetBtn,
.printBtn,
.pleaseWait {
    width: 300px;
    height: 63px;
    background-color: #006633;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid #d8ad59;
    border-radius: 10px;
    font-size: 20px !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.resetBtn:hover,
.printBtn:hover {
    background-color: #d8ad59;
    justify-content: center;
    color: #000;
    border: 2px solid #006633;
}

.freed-cont {
    position: relative;
    background-color: #fff;
    padding: 15px;
    border-radius: 15px;
}

.freed-cont:before {
    content: '';
    position: absolute;
    width: 391px;
    height: 819px;
    background-color: #006633;
    right: -40px;
    top: -90px;
    z-index: -1;
    border-radius: 25px;
}

.profit-sec {
    background-image: url(../images/profit.png);
    background-size: cover;
    padding: 100px 0;
    background-repeat: no-repeat;
    margin-top: 100px;
}

.prof-head {
    text-align: center;
}

.prof-head h2 {
    font-size: 60px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.prof-head h2 span {
    display: block;
}

.prof-head p {
    font-size: 18px;
    color: #fff;
    font-family: 'Montserrat' !important;
    font-weight: 600;
}

.prof-head p span {
    text-transform: uppercase;
    color: #d8ad59;
}

.cash-im img {
    width: 100%;
    max-width: 100%;
    border-radius: 23px;
}

.cash-im {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    /* margin-right: 0; */
}

.cash-im:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background-color: transparent;
    border: 6px solid #d8ad59;
    border-radius: 25px;
    z-index: -1;
}

.cash-flow {
    padding: 100px 0 0;
}

.cash-cont h3 {
    font-size: 38px;
    color: #0f0f29;
    font-weight: 600;
}

.cash-cont h3 span {
    display: block;
}

.cash-cont p {
    font-size: 17px;
    color: #181818;
    font-weight: 600;
    width: 77%;
    margin: 0;
}

.cash-cont ul {
    padding: 0;
    margin: 0;
}

.cash-cont li {
    font-size: 35px;
    font-weight: 600;
    color: #d8ad59;
}

.ligt-bil {
    background-image: url(../images/bill.png) !important;
}

.bil h2 {
    font-size: 42px;
}

.bil h6 {
    font-size: 30px;
    color: #d8ad59;
    text-transform: uppercase;
    font-weight: 700;
}

.bil span {
    display: block;
    color: #fff !important;
}

.keep-this {
    /* background-image: url(../images/arrowa.jpg); */
    background-size: contain;
    background-repeat: no-repeat;
    padding: 100px 0 80px;
}

.keep-cont h2 {
    font-size: 62px;
    font-weight: 600;
    color: #0f0f29;
}

.keep-cont p {
    font-size: 16px;
    font-family: 'Montserrat' !important;
    font-weight: 600;
    color: #181818;
}

.check {
    display: flex;
    align-items: center;
}

.keep-cont h4 {
    font-size: 26px;
    font-weight: 600;
    color: #0f0f29;
}

.keep-cont p {
    font-size: 14px;
    font-family: 'Montserrat' !important;
    color: #181818;
}

.kep-num h5 {
    font-size: 40px;
    background-color: #d8ad59;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 57px;
}

.kep-num {
    margin-right: 16px;
}

section.ask-your {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.ask-cont h3 {
    font-size: 50px;
    color: #0f0f29;
    font-weight: 600;
}

.ask-cont p {
    font-size: 15px;
    font-family: 'Montserrat' !important;
    font-weight: 500;
    color: #181818;
}

.ask-cont ul {
    padding: 0 0 0 23px;
    margin: 0;
}

.ask-cont li {
    position: relative;
    font-size: 15px;
    padding: 0 0 20px 0;
    font-family: 'Montserrat';
}

.ask-cont li:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url(../images/tick.png);
    background-repeat: no-repeat;
    left: -33px;
}

.keep-im img {
    width: 100%;
    border-radius: 20px;
}

.keep-im {
    position: relative;
    z-index: 9;
}

.keep-im:before {
    content: '';
    position: absolute;
    width: 491px;
    top: -50px;
    left: 100px;
    height: 548px;
    background-color: #006633;
    clip-path: polygon(31% 0, 88% 0, 51% 100%, 0% 100%);
    z-index: -1;
}

.prf-im img {
    width: 85%;
    border-radius: 20px;
}

.prf-im {
    text-align: center;
    position: relative;
    margin: 0 0 40px 0;
}

.prf-im:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 416px;
    background-color: #006633;
    left: 0;
    top: -60px;
    z-index: -1;
    border-radius: 40px;
}

.profit {
    padding: 110px 0 80px;
}

.prof-contnt h3 {
    font-size: 37px;
    font-weight: 600;
    color: #0f0f29;
}

.prof-contnt h5 {
    font-size: 25px;
    color: #d8ad59;
    font-weight: 600;
    font-family: 'Montserrat';
}

.prof-contnt ul {
    padding: 10px 0 0 20px;
}

.prof-contnt li {
    font-size: 17px;
    font-weight: 500;
    padding: 0px 0 9px 0;
    position: relative;
}

.prof-contnt li:before {
    content: '';
    position: absolute;
    width: 23px;
    height: 30px;
    background-image: url(../images/tick.png);
    background-repeat: no-repeat;
    left: -27px;
    background-size: contain;
}

.prof-contnt h6 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.prof-contnt h6 span {
    color: #d8ad59;
}

footer {
    background-color: #1e1e1e;
}

.fot-social ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.fot-social p {
    color: #f9f9f9;
    margin: 0;
    font-family: 'Montserrat' !important;
    font-size: 13px;
}

.fot-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.fot-social li a:hover {
    background-color: #d8aa5d;
}

.fot-social li a {
    border: 1px solid #a5a5a5;
    color: #f9f9f9;
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
}
.postItem h3 {
    text-align: center;
}
.gray-border {
    box-shadow: none !important;
    border: 2px solid #dee2e6 !important;
}
.fot-social li {
    padding: 0 10px 0 0px;
}

.bil-inp label {
    color: #fff;
    font-family: 'Rajdhani';
    font-size: 18px;
    font-weight: 600;
    width: 100%;
}

.bil-inp input {
    width: 100%;
    min-width: 100%;
    background-color: #291c01;
    border: 1px solid #f7f1e6;
    height: 60px;
    border-radius: 5px;
    padding: 0 0 0 13px;
    font-family: 'Rajdhani';
    font-size: 19px;
    color: #fff;
}

.bl-inp-all {
    display: flex;
    align-items: end;
    justify-content: center;
    margin: 50px 0 0 0;
}

.csh-flw {
    width: 300px;
    height: 63px;
    background-color: #006633;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid;
    border-radius: 10px;
    margin: 0 0 0 70px;
}

.csh-flw h6 {
    font-size: 28px;
}

.innerPage .scroll-im {
    margin-top: -110px;
}

/* HOME PAGE END */
.income-sec {
    padding: 100px 0;
}

.income-sec .compl-hed h2 {
    text-align: left;
}

.income-sec .compl-hed {
    text-align: left;
}

.income-sec h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.game-box ul {
    margin-bottom: 0;
    flex-wrap: wrap;
}

.game-box ul input:focus {
    outline: none;
}

.game-box ul input {
    min-height: 44px;
    font-size: 16px;
    max-width: 115px;
    border: 1px solid #c1c1c1;
    padding: 6px 5px;
    border-radius: 9px;
    text-align: center;
    min-width: 300px;
}

.game-box ul>li>small {
    font-size: 16px;
    font-weight: 600;
    color: #777;
}

.cs-btn {
    min-height: 40px;
    padding: 2px 20px;
    max-height: 44px;
    background: #cc9966;
    border: navajowhite;
    border-radius: 6px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cs-btn:hover {
    color: #0E0E0E !important;
}

li.items input {
    min-width: 300px;
    margin-right: 15px;
}

.gap20 {
    gap: 20px;
}

.greenText {
    color: #006633;
    font-size: 37px;
    font-weight: 700;
}

.gap10 {
    gap: 10px;
}

.textBOx input {
    min-height: 44px;
    font-size: 16px;
    max-width: 100px;
    border: 1px solid #c1c1c1;
    padding: 6px 10px;
    border-radius: 9px;
    text-align: center;
    min-width: 300px;
}

.yellowtext {
    color: #cc9966;
}

.listBox>ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid #c1c1c1;
}

.listBox>ul>li {
    font-size: 20px;
    font-weight: 500;
}

.main_heading>h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.greenText-sm {
    color: #006633 !important;
    font-weight: 700 !important;
}

td input {
    min-height: 44px;
    font-size: 16px;
    max-width: 140px;
    border: 1px solid #c1c1c1;
    padding: 6px 10px;
    border-radius: 9px;
    text-align: center;
}

.imgBox>img {
    width: 100%;
}

.tableParent>h3 {
    font-weight: 700;
}

tr.highlight,
.highlight-years {
    background: #d8aa5d;
}

.border-circled:before {
    content: "";
    border: 2px solid #dee2e6;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    min-height: calc(62px* 5);
    border-radius: 4px;
}

.border-circled {
    position: relative;
    width: 100%;
    background: #0000000d !important;
    display: table-cell;
    padding: 20px 0 !important;
}

.redText {
    color: #b90000 !important;
}

input#loanAmount {
    padding: 0 !important;
    max-width: unset;
    min-width: 30px !important;
    min-height: unset !important;
    border: none;
    border-radius: 0;
    width: unset !important;
    color: #006633;
    font-weight: 700;
}

.bd-example {
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 24px;
    border-radius: 20px;
}

select.weekBox {
    min-height: 44px;
    font-size: 16px;
    max-width: 115px;
    border: 1px solid #c1c1c1;
    padding: 6px 5px;
    border-radius: 9px;
    text-align: center;
    min-width: 200px;
}

select.weekBox:focus {
    outline: none;
}


/* menu start  */
.sidenav {
    height: 100vh;
    width: 350px !important;
    position: fixed;
    z-index: 9999999999999999;
    top: 0px;
    right: -100%;
    background: #fff;
    /* background-color: #040337; */
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
    overflow-y: auto;
}

.gap10 {
    gap: 10px;
}

/* The navigation menu links */
.sidenav a {
    /* padding: 10px 8px 10px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #ffff !important;
    border-bottom: 2px solid #E29095;
    display: block;
    transition: 0.3s; */
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover,
.offcanvas a:focus {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    border: none;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: #000 !important;
}

.menu-br>ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

table.table tr,
table.table thead>tr,
table.table tr>th,
table.table tr>td {
    border: 0px solid transparent !important;
    border-bottom: 0px solid transparent !important;
}

table.table tr>td,
table.table tr>th {
    /* padding: 0 !important; */
    vertical-align: middle;
}

.sidebar {
    width: 250px;
    padding: 15px;
    background-color: #f4f4f4;
    border-right: 1px solid #ccc;
    height: 100vh;
}

.category {
    margin-bottom: 10px;
}

.sidebar .form-check-input {
    margin-right: 10px;
}

.card-image video {
    width: 100%;
}

.category {
    margin-bottom: 15px !important;
}




/* The Number Page START  */
.calculator {
    padding: 20px;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 1px;
    max-width: 485px;
    margin: 0 auto;
    border-radius: 20px;
}

.input {
    border: 1px solid #ddd;
    border-radius: 1px;
    height: 100px;
    text-align: right;
    font-size: 2.5rem;
    overflow-x: auto;
    transition: all .2s ease-in-out;
    padding: 10px;
}

.input:hover {
    border: 1px solid #bbb;
    -webkit-box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
}



.operators {
    max-width: 103px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    order: 2;
}

.operators div {
    display: inline-block;
    border: 1px solid #bbb;
    border-radius: 1px;
    width: 80px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    background-color: #ddd;
    transition: border-color .2s ease-in-out, background-color .2s, box-shadow .2s;
}

.operators div:hover {
    background-color: #ddd;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    border-color: #aaa;
}

.operators div:active {
    font-weight: bold;
}

.leftPanel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    order: 1;
}

.numbers div {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 1px;
    width: 78px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: border-color .2s ease-in-out, background-color .2s, box-shadow .2s;
}

.numbers div:hover {
    background-color: #f1f1f1;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    border-color: #bbb;
}

.numbers div:active {
    font-weight: bold;
}

.listBox:last-child>ul {
    border: none;
}

div.equal {
    display: inline-block;
    border: 1px solid #005e39;
    border-radius: 1px;
    width: 17%;
    text-align: center;
    padding: 101px 10px;
    /* margin: 10px 6px 10px 0; */
    vertical-align: top;
    cursor: pointer;
    color: #FFF;
    background-color: #005e39;
    transition: all .2s ease-in-out;
    display: flex;
    order: 3;
    justify-content: center;
    align-items: center;
    opacity: .8;
}

div.equal:hover {
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

div.equal:active {
    font-weight: bold;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    max-width: 445px;
}

/* The Number Page END  */
span.redText-sm {
    margin-right: 0 !important;
    color: #bf0000 !important;
}


table#loanBreakdown>tbody tr:nth-child(12n) {
    background-color: #d3ab60;
}

table#loanBreakdown>tbody tr:nth-child(12n)>td {
    font-weight: 700;
}

table#loanBreakdown>tbody tr:nth-child(12n) td:first-child {
    position: relative;
}

table#loanBreakdown tr td {
    color: #006633;
    font-weight: 700;
}

table#loanBreakdown>tbody tr:nth-child(12n) td:first-child:after {
    content: "1 Year";
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 16px;
    color: #006633;
    top: 0;
    left: 0;
    background: #d3ab60;
    padding: 14px;
}

/* Register page Styling START  */
.signup-sec {
    padding: 100px 0;
}

.sggn-inp>input.form-control {
    min-height: 44px;
    font-size: 14px;
    border: 1px solid #c1c1c1;
    padding: 6px 10px;
    border-radius: 9px;
}

.sggn-inp {
    margin-bottom: 10px;
}

.sgn-inr button,
a.log-brt {
    min-height: 50px;
    min-width: 200px;
    border-radius: 9px;
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #006633;
    color: #fff;
    border: 2px solid #d8ad59;
    border-radius: 10px;
    font-size: 20px !important;
    font-weight: 700;
    letter-spacing: 1px;
}

a.fogt {
    color: #d8ad59;
}

.social-sec a {
    color: #ccb359;
    font-size: 20px;
    font-weight: 500;
}


.pt-50 {
    padding-top: 90px;
}

.listLinks ul li {
    position: relative;
    padding-left: 16px;
}

.listLinks ul li:before {
    content: "\00BB";
    height: 100%;
    width: 20px;
    font-size: 20px;
    color: #000;
    position: absolute;
    top: -3px;
    left: 0;
}

.listLinks {
    min-width: 300px;
}

button.slick-arrow {
    background: #000;
    height: 40px;
    width: 40px;
    z-index: 9;
    border-radius: 100px;
}

button.slick-arrow:hover {
    background: #000 !important;
    opacity: .6;
}

.postItem img {
    border-radius: 10px;
    object-fit: cover;
}

.imgPost {
    min-height: 200px;
    display: flex;
    justify-content: center;
}

.postSlide .slick-slide {
    margin: 0 10px;
    /* Adjust gap size */
}

.postSlide .slick-list {
    margin: 0 -10px;
    /* Prevent overflow issues */
}

.slick-prev,
.slick-next {
    top: 42% !important;
}

.slick-prev {
    left: -50px !important;
}

.slick-next {
    right: -50px !important;
}

/* Register page Styling START  */
table#loanBreakdown>tbody tr:nth-child(24) td:first-child:after {
    content: "2 Year";
}

table#loanBreakdown>tbody tr:nth-child(36) td:first-child:after {
    content: "3 Year";
}

table#loanBreakdown>tbody tr:nth-child(48) td:first-child:after {
    content: "4 Year";
}

table#loanBreakdown>tbody tr:nth-child(60) td:first-child:after {
    content: "5 Year";
}

table#loanBreakdown>tbody tr:nth-child(72) td:first-child:after {
    content: "6 Year";
}

table#loanBreakdown>tbody tr:nth-child(84) td:first-child:after {
    content: "7 Year";
}

table#loanBreakdown>tbody tr:nth-child(96) td:first-child:after {
    content: "8 Year";
}

table#loanBreakdown>tbody tr:nth-child(108) td:first-child:after {
    content: "9 Year";
}

table#loanBreakdown>tbody tr:nth-child(120) td:first-child:after {
    content: "10 Year";
}

table#loanBreakdown>tbody tr:nth-child(132) td:first-child:after {
    content: "11 Year";
}

table#loanBreakdown>tbody tr:nth-child(144) td:first-child:after {
    content: "12 Year";
}

table#loanBreakdown>tbody tr:nth-child(156) td:first-child:after {
    content: "13 Year";
}

table#loanBreakdown>tbody tr:nth-child(168) td:first-child:after {
    content: "14 Year";
}

table#loanBreakdown>tbody tr:nth-child(180) td:first-child:after {
    content: "15 Year";
}

table#loanBreakdown>tbody tr:nth-child(192) td:first-child:after {
    content: "16 Year";
}

table#loanBreakdown>tbody tr:nth-child(204) td:first-child:after {
    content: "17 Year";
}

table#loanBreakdown>tbody tr:nth-child(216) td:first-child:after {
    content: "18 Year";
}

table#loanBreakdown>tbody tr:nth-child(228) td:first-child:after {
    content: "19 Year";
}

table#loanBreakdown>tbody tr:nth-child(240) td:first-child:after {
    content: "20 Year";
}

table#loanBreakdown>tbody tr:nth-child(252) td:first-child:after {
    content: "21 Year";
}

table#loanBreakdown>tbody tr:nth-child(264) td:first-child:after {
    content: "22 Year";
}

table#loanBreakdown>tbody tr:nth-child(276) td:first-child:after {
    content: "23 Year";
}

table#loanBreakdown>tbody tr:nth-child(288) td:first-child:after {
    content: "24 Year";
}

table#loanBreakdown>tbody tr:nth-child(300) td:first-child:after {
    content: "25 Year";
}

table#loanBreakdown>tbody tr:nth-child(312) td:first-child:after {
    content: "26 Year";
}

table#loanBreakdown>tbody tr:nth-child(324) td:first-child:after {
    content: "27 Year";
}

table#loanBreakdown>tbody tr:nth-child(336) td:first-child:after {
    content: "28 Year";
}

table#loanBreakdown>tbody tr:nth-child(348) td:first-child:after {
    content: "29 Year";
}

table#loanBreakdown>tbody tr:nth-child(360) td:first-child:after {
    content: "30 Year";
}

table#loanBreakdown>tbody tr:nth-child(372) td:first-child:after {
    content: "31 Year";
}

table#loanBreakdown>tbody tr:nth-child(384) td:first-child:after {
    content: "32 Year";
}

table#loanBreakdown>tbody tr:nth-child(396) td:first-child:after {
    content: "33 Year";
}

table#loanBreakdown>tbody tr:nth-child(408) td:first-child:after {
    content: "34 Year";
}

table#loanBreakdown>tbody tr:nth-child(420) td:first-child:after {
    content: "35 Year";
}

table#loanBreakdown>tbody tr:nth-child(432) td:first-child:after {
    content: "36 Year";
}

table#loanBreakdown>tbody tr:nth-child(444) td:first-child:after {
    content: "37 Year";
}

table#loanBreakdown>tbody tr:nth-child(456) td:first-child:after {
    content: "38 Year";
}

table#loanBreakdown>tbody tr:nth-child(468) td:first-child:after {
    content: "39 Year";
}

table#loanBreakdown>tbody tr:nth-child(480) td:first-child:after {
    content: "40 Year";
}

table#loanBreakdown>tbody tr:nth-child(492) td:first-child:after {
    content: "41 Year";
}

table#loanBreakdown>tbody tr:nth-child(504) td:first-child:after {
    content: "42 Year";
}

table#loanBreakdown>tbody tr:nth-child(516) td:first-child:after {
    content: "43 Year";
}

table#loanBreakdown>tbody tr:nth-child(528) td:first-child:after {
    content: "44 Year";
}

table#loanBreakdown>tbody tr:nth-child(540) td:first-child:after {
    content: "45 Year";
}

table#loanBreakdown>tbody tr:nth-child(552) td:first-child:after {
    content: "46 Year";
}

table#loanBreakdown>tbody tr:nth-child(564) td:first-child:after {
    content: "47 Year";
}

table#loanBreakdown>tbody tr:nth-child(576) td:first-child:after {
    content: "48 Year";
}

table#loanBreakdown>tbody tr:nth-child(588) td:first-child:after {
    content: "49 Year";
}

table#loanBreakdown>tbody tr:nth-child(600) td:first-child:after {
    content: "50 Year";
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

/* product page style start  */
.shp-inner {
    transition: all 0.5s;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 0 5px 3px #4444441c;
    border-radius: 10px;
}

.shp-inner h3 {
    font-size: 26px;
    margin: 10px 0;
    color: #000;
}

.shp-inner p {
    font-size: 15px;
    color: #a5a5a5;
    font-weight: 500;
    margin: 0 0 7px 0;
}

.shp-inner h4 {
    font-size: 16px;
    color: #005e39;
    font-weight: 600;
    font-family: 'Roboto';
}

/* product page style END  */
/* product Detail  style START   */
.prd-sli img {
    max-width: 500px;
    object-fit: cover;
}

.dlet-nmb h2 {
    font-size: 34px;
    line-height: 50px;
    color: #282828;
    font-family: 'Poppins';
}

.delt-pri h6 {
    font-size: 24px;
    color: #005e39;
    font-weight: 700;
}

.st-count {
    display: flex;
    align-items: center;
    padding-bottom: 21px;
}

.counter-det {
    width: 110px;
    display: flex;
    align-items: center;
    border: 3px solid #e5e5e5;
    justify-content: center;
    border-radius: 2px;
    text-align: center;
}

.counter-det button {
    color: #000;
}

.counter-det input {
    border: transparent;
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    background: transparent;
    border-radius: 0;
}

.wish {
    border-bottom: 1px solid #e5e5e5;
}

.wish li {
    list-style-type: none;
}

.wih {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    font-family: 'Poppins';
}

.pd-des li {
    list-style-type: none;
}

.pd-des li a {
    font-size: 16px;
    color: #000;
    display: inline-block;
}

.st-count a {
    background-color: #005e39;
    color: #fff;
    border-radius: 0px;
    width: 140px;
    text-align: center;
    height: 42px;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 40px;
    margin-left: 20px;
    font-weight: 600;
}

/* product Detail  style END   */

/* cart page START  */
.all-pd {
    padding-top: 80px;
}

.add-to-cart a {
    font-size: 16px;
    display: block;
    text-align: center;
    padding-top: 9px;
    color: #a3a3a3;
    font-weight: 500;
    text-decoration: none;
}

.product-img {
    display: inline-block;
    width: 100%;
    padding: 10px 5px;
    border-radius: 10px;
}

.product-img img {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    height: 100px;
    object-fit: contain;
    padding: 10px 0;
}

.table-space h3 {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 30px;
    color: var(--black-color);
    text-transform: capitalize;
    margin: 0px;
}

.add-to-cart h4 {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    text-align: center;
}

.number-item>a.checkout-btn.update_cart {
    background: #005e39;
    color: #fff !important;
    padding: 5px !important;
    margin-top: 4px;
}
.cartBox:hover {
    color: #fff !important;
}
.cartBox {
    color: #fff;
    position: relative;
}

.cartBox i.fa-solid.fa-cart-shopping {
    font-size: 22px;
}

.cartBox>sup {
    background: #d8ad59;
    min-height: 20px;
    max-height: 20px;
    min-width: 20px;
    max-width: 20px;
    display: flex;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 700;
    top: -10px;
    position: absolute;
    right: -12px;
}

.number-item {
    margin: 0 auto;
    padding: 0 30px 0 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.counter {
    width: 110px;
    display: flex;
    align-items: center;
    border: 3px solid #e5e5e5;
    justify-content: center;
    border-radius: 2px;
}

.counter span {
    display: block;
    font-size: 16px;
    padding: 0;
    line-height: 20px;
    cursor: pointer;
    color: var(--black-color);
    user-select: none;
}

.counter input {
    width: 40px;
    border: 0;
    line-height: 30px;
    font-size: 15px;
    text-align: center;
    height: 38px;
    background: transparent;
    color: var(--black-color);
    appearance: none;
    border-left: 2px solid #e5e5e5;
    border-right: 2px solid #e5e5e5;
    outline: 0;
    padding: 0;
    padding-left: 5px;
}

.sbu-t {
    font-size: 17px !important;
    color: #005e39 !important;
    font-weight: 600 !important;
}

.total-section {
    padding: 28px 25px;
    border: 3px solid #00000013;
    border-radius: 0;
}

.total-section li {
    font-size: 16px;
    padding-bottom: 10px;
    color: var(--black-color) 000ba;
    font-weight: 500;
    line-height: normal;
}

.total-section a {
    font-size: 13px;
    background-color: #005e39;
    color: #fff !important;
    text-transform: uppercase;
    height: 40px;
    line-height: 22px;
    margin-top: 10px;
    border-radius: 0px;
}

.add-to-cart a {
    font-size: 16px;
    display: block;
    text-align: center;
    padding-top: 9px;
    color: #a3a3a3;
    font-weight: 500;
    text-decoration: none;
    min-width: 40px;
}

.ctr-upt a {
    font-size: 14px;
    text-transform: uppercase;
    text-align: left;
}

/* cart page END  */


/* Checkout Page START  */
.billing_form {
    padding: 25px 20px;
    border-radius: 5px;
    background: #f7f7f7;
}

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #c4c4c4;
    margin-bottom: 20px;
    padding-left: 15px;
    background: transparent;
    border-radius: 0px;
}

.billing_form label {
    font-size: 14px;
    font-family: "Montserrat";
    color: #7c7c7c;
    font-weight: 600;
}

textarea.billing-message,
.billing_form textarea {
    border: 1px solid #c4c4c4;
    margin-top: 5px;
    padding: 10px;
    border-radius: 0;
    resize: none;
    min-height: 150px;
    width: 100%;
    background: transparent;
}

.cart_sidebar {
    padding: 40px 25px;
    border-radius: 0px;
    position: relative;
    background-color: #f7f7f7;
}



.ctr-bk {
    background-color: #fff;
    padding: 10px 15px;
}

.prd {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}

.cart_sidebar h3 {
    font-size: 24px;
    color: var(--black-color);
    margin-top: 0px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
    font-weight: 500;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #7c7c7c;
    font-family: "Roboto", sans-serif;
}

.cart_sidebar ul li {
    list-style-type: none;
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .h-ship {
    font-weight: 600;
    color: var(--black-color) 000;
    font-size: 17px;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 17px;
    line-height: 0;
    padding-top: 08px;
}

.cart_sidebar .h-ship span {
    color: var(--black-color) 000;
    font-size: 18px;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h5 span {
    float: right;
}

span.chk-price {
    color: var(--black-color);
}

.woocommerce-info.hidden-notice {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px 7px;
    margin-bottom: 20px;
    padding-block: 10px;
    padding-inline: 30px 30px !important;
    min-height: 60px;
    text-align: start;
    gap: 20px;
    border: none;
    background: #e0b252;
    color: #fff;
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.woocommerce-info.hidden-notice i.fa-solid.fa-exclamation {
    height: 20px;
    width: 20px;
    border-radius: 100px;
    border: 1px solid #fff;
    min-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout_btn {
    padding: 12px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff !important;
    font-size: 15px;
    border: none;
    font-weight: 500;
    border: 2px solid transparent;
    background-color: #005e39;
    border-radius: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #005e39;
    border-radius: 0;
    border-radius: 0px;
}

/* Checkout Page END  */
/* Thankyou Page START  */
.success-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    max-width: 700px;
    min-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: table;
    margin: 0 auto;
}

.success-header {
    background-color: #006633;
    padding: 2rem;
    text-align: center;
}

.checkmark-circle {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-header h2 {
    color: white;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.success-body {
    padding: 2rem;
    text-align: center;
}

.success-body p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-continue {
    background-color: #006633;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 2rem;
    color: #fff !important;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(140, 198, 63, 0.3);
}

.btn-continue:hover {
    background-color: #006633;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(140, 198, 63, 0.4);
}

/* pagination styling start  */
.page-item a {
    color: #fff !important;
    background: #006239 !important;
    min-width: 44px !important;
    padding: 8px 6px !important;
    text-align: center !important;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #c5a033 !important;
    border-color: #c5a033 !important;
}

.page-item {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.pagination {
    justify-content: center !important;
    gap: 2px;
}

/* pagination styling End  */
span.setClosebtn {
    min-height: 30px;
    max-height: 30px;
    min-width: 30px;
    max-width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.setClosebtn>a {
    color: #fff !important;
    padding-top: 0 !important;
    font-size: 22px;
}

/* Thankyou Page END  */


@media (max-width: 768px) {
    .border-circled:before {
        content: "";
        border: 2px solid transparent;
    }
}
@media (max-width: 667px) {
    .success-card {
        max-width: 100%;
        min-width: 100%;
    }
    .game-box ul input {
        min-width: 100% !important;
    }
}