@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* -------------Theme settings start------------------------------ */
:root {
    --primary-bg: #f7f7f7;
    --primary-color: #1A1A1A;
    --secondary-color: #FFC929;
    --border-color: #595959;
    --font-light: 300;
    --font-normal: 400;
    --font-bold: 700;
    --font-extra-bold: 900;
    --heding-color: #333333;
    --paragraph-color: #757575;
    --heading-size: 48px;
    --para-size: 16px;
    --heading-size2: 48px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif !important;

}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Roboto Condensed", sans-serif !important;
    line-height: 1.4;
    transition: all 0.2s ease;
    overflow-x: hidden !important;
    background: var(--primary-bg);

}


li {
    list-style: none;
}

ul {
    padding: 0;
    margin: 0;
}

h1 {
    font-size: var(--heading-size);
    font-weight: var(--font-bold);
}


p {
    font-size: var(--para-size);
    color: var(--paragraph-color) !important;
}

a {
    /* color: var(--primary-color); */
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 400;
    opacity: 1;
    text-decoration: none;
    /* color: #c7c7c7; */
}

a:hover {
    color: var(--primary-color);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;

}



/* -------------Theme settings end------------------------------ */
/* ---------header---------- */
/* .nav-link.active {
    background-color: #ffe395 !important;
    color: black !important;
   
} */


/* -------------Footer ----------------------- */
footer {
    background-color: var(--primary-color);
    padding: 16px 0;
}

.footer-nav {
    display: flex;
    margin-top: 7px;
}

.footer-nav li {
    margin-right: 16px;
}



/* -----------Popup-------------------- */

.popup365-container {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.popup365-header {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px
}

.popup365-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    background: #002448;
    width: 30px;
    height: 35px;
    color: #fff;
}

.popup365-balances {
    display: flex;
    justify-content: space-between;
    padding: 20px 0
}

.popup365-balances p {
    margin: 0;
    font-size: 14px
}

.popup365-balances h2 {
    margin: 5px 0 0;
    font-size: 22px;
    color: #003366;
    font-weight: 700;
}

.popup365-input {
    text-align: center;
    margin-bottom: 15px
}

.popup365-input input {
    font-size: 20px;
    padding: 8px 10px;
    border: 2px solid #f4a300;
    border-radius: 6px;
    /* width: 100px; */
    text-align: center;
    font-weight: bold;
    color: #003366;
}

.popup365-slider-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #dbeeff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px
}

.popup365-slider-wrap input[type=range] {
    flex: 1;
    margin: 0 15px
}

.popup365-actions {
    display: flex;
    justify-content: space-between
}

.popup365-cancel-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #ccc;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    width: 100%;
}

.popup365-transfer-btn {
    padding: 10px 20px;
    background: linear-gradient(to right, #2b2923, #000);
    color: #ffc107;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-left: 13px;
}

@media (max-width: 567px) {
    .popup365-container {
        
        width: 90%;
       
    }
    .popup365-transfer-btn {
        padding: 8px;
    }
    .popup365-cancel-btn {
        padding: 8px;
    }
    .tiltle_sec {
        padding-top: 69px !important;
    }
}