:root {
    --theme-main-color: #4733fa;
    --theme-main-color-darker: #3a2abf;
    --theme-secend-color: #777777;
    --theme-border: 0px solid #ddd;
    --theme-light-gray: #e9e9e9;
    --theme-dark-gray: #333;
    --theme-text-on-main: #fff;
    --element-background-color: #ffffff;
    --body-background-color: #ffffff;
    --text-color-title: #333;
    --text-color-paragraph: #333;
    --text-size-h1: 18px;
    --text-size-h2: 16px;
    --text-size-h3: 14px;
    --text-size-all: 12px;
    --text-size-paragraph: 14px;
    --theme-font-all: 'DanaFanum', sans-serif;
    --theme-font-title: 'On', sans-serif;
    --radius-small: 10px;
    --radius-medium: 18px;
    --app-max-width: 500px;
}



/* Regular font weight */

@font-face {
    font-family: 'DanaFanum';
    src: url('fonts/dana-fanum-regular.woff2') format('woff2');
    font-weight: 400;
    /* Normal weight */
    font-style: normal;
}


/* Bold font weight */

@font-face {
    font-family: 'DanaFanum';
    src: url('fonts/dana-fanum-bold.woff2') format('woff2');
    font-weight: 700;
    /* Bold weight */
    font-style: normal;
}


/* Black font weight */

@font-face {
    font-family: 'DanaFanum';
    src: url('fonts/dana-fanum-black.woff2') format('woff2');
    font-weight: 900;
    /* Bold weight */
    font-style: normal;
}






* {
    box-sizing: border-box;
    font-size: var(--text-size-all);
    font-family: var(--theme-font-all);
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--body-background-color);
    color: var(--text-color-paragraph);
}

#app-frame {
    max-width: var(--app-max-width);
    margin: auto;
}


.search-bar {
    width: 100%;
    display: flex;
}

.search-bar button {
    width: 100%;
    border: 0;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: var(--radius-medium);
    margin: 20px;
    outline: none;
}

/* Services */
.services {
    display: flex;
    text-align: center;
    padding: 12px;
    direction: ltr;
    align-items: center;
    align-content: center;
    justify-content: space-around;
}

.services .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-medium);
}

.services .item img {
    background: var(--theme-light-gray);
    padding: 15px;
    margin: 7px 0px;
    border-radius: var(--radius-medium);
    width: 55px;
}



/* Swiper Banner */
.banner {
    width: 100%;
    border-radius: var(--radius-large);
    overflow: hidden;
    margin: 30px 0 10px 0;
}

.swiper-slide img,
.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-large);
}

.swiper-slide {
    overflow: hidden;
    FONT-VARIANT: JIS04;
    background-position: center;
    background-size: cover;
    max-width: 600px;
    width: calc(100% - 60px);
    aspect-ratio: 16 / 12;
    border-radius: 20px;
    max-height: 200px;
    object-fit: cover;
    /* background: var(--lower-gray);
    box-shadow: 0px 0px 80px -50px #000000f2; */
}

.swiper-pagination {
    position: unset;
    margin: 10px 0px;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 20px;
    background: #bfbfbf;
    opacity: 1;
    transition: .2s;
}


.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 20px;
}







.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 20;
}

.nav-box {
    display: flex;
    background: #3B5BF4;
    border-radius: var(--radius-medium);
    gap: 10px;
    padding: 10px;
}

.nav-btn {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-small);
    aspect-ratio: 1;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-btn img {
    width: 25px;
    filter: brightness(5);
}

.nav-btn.active {
    background: var(--theme-text-on-main);
}


.nav-btn.active img {
    filter: brightness(1);
}


.tab-sec {
    display: none;
}

.tab-sec.show {
    display: block;
}


.wallet-modal-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    margin: 20px;
    width: -webkit-fill-available;
    background: var(--theme-main-color);
    color: var(--theme-text-on-main);
    font-size: var(--text-size-h3);
    font-weight: 700;
    border: 0;
    outline: none;
    padding: 14px;
    border-radius: var(--radius-medium);
    left: 0;
    right: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}