:root {
    --bs-success: #b6ff52;
    --bs-success-rgb: 182, 255, 82;
}

body {
    font-family: 'Inter';
    font-weight: 400;
    background-color: #EFEFEF;
    color: #231f20;
    line-height: normal;
    overflow-x: hidden;
    overflow-y: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter';
    font-weight: 900;
}

.bg-light-gray {
    background-color: #c9d2e59d;
    color: #231f20;
}

.bg-dark-gray {
    background-color: #323232;
    color: white;
}

.bg-castom-black {
    background-color: #231F20;
    color: white;
}

.bg-white { color: #000; }

.bg-success {
    background-color: #b6ff52;
    color: #231f20;
}

.btn {
    font-family: 'Inter';
    font-weight: 700;
}

.btn-transparent {
    background-color: #00000000;
    border-color: #000;
    color: #231f20;
}
.btn-transparent:hover {
    background-color: #00000080;
    border-color: #000;
    color: #231f20;
}
.btn-transparent:focus:active {
    background-color: #000000c5;
    border-color: #000;
    color: #fff;
}

.btn-success {
    background-color: #b6ff52;
    border-color: #b6ff52;
    color: #231f20;
}
.btn-success:hover {
    background-color: #a5e849;
    border-color: #a5e849;
    color: #231f20;
}
.btn-success:focus:active { color: #fff; }

.text-uppercase { text-transform: uppercase; }

.fw-semibold { font-weight: 600; }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.hover-img { transition: all 0.3s ease; }
.hover-img:hover { transform: translateY(-2px); }

@font-face {
    font-family: 'Inter';
    src: url('/static/font/Inter-Regular.woff2') format('woff2'),
        url('/static/font/Inter-Regular.woff') format('woff'),
        url('/static/font/Inter-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/static/font/Inter-Bold.woff2') format('woff2'),
        url('/static/font/Inter-Bold.woff') format('woff'),
        url('/static/font/Inter-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/static/font/Inter-Black.woff2') format('woff2'),
        url('/static/font/Inter-Black.woff') format('woff'),
        url('/static/font/Inter-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

