/* reset css start */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Jost:wght@400;500;600;700&display=swap');

:root {
    --sp-display-font: 'Jost', sans-serif;
    --sp-body-font: 'Inter', sans-serif;
    --sp-clr-display-font: #fff;
    --sp-clr-body-font: #fff;
    --sp-clr-body: #38120a;
    --sp-clr-section: #220700;
    --sp-clr-theme: #f6b019;
    --sp-clr-theme-dark: #132b5a;
    --sp-grad-one: #871737;
    --sp-grad-two: #1f4181;
    --sp-clr-primary: #7367f0;
    --sp-clr-secondary: #868e96;
    --sp-clr-success: #28c76f;
    --sp-clr-danger: #ea5455;
    --sp-clr-warning: #ff9f43;
    --sp-clr-info: #1e9ff2;
    --sp-clr-light: #bcc7da;
    --sp-clr-dark: #082032;
    --sp-clr-muted: #707070;
    --sp-clr-border: rgba(219, 219, 219, 0.4901960784);
    --sp-base-space: 0.25rem;
    --font-size-ratio: 1.33;
    /* --font-size-base: 1.125rem; */
    --font-size-base: 1rem;
    --size-300: calc(var(--size-400) / var(--font-size-ratio));
    --size-400: var(--font-size-base);
    --size-500: calc(var(--size-400) * var(--font-size-ratio));
    --size-600: calc(var(--size-500) * var(--font-size-ratio));
    --size-700: calc(var(--size-600) * var(--font-size-ratio));
    --size-800: calc(var(--size-700) * var(--font-size-ratio));
    --size-900: calc(var(--size-800) * var(--font-size-ratio));
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-blod: 700;
}

@media (max-width: 1399px) {
    :root {
        --size-900: 3.5rem;
        --size-800: 2.625rem;
        --size-700: 2rem;
        --size-600: 1.5rem;
    }
}

@media (max-width: 1199px) {
    :root {
        --size-900: 3rem;
        --size-800: 2.25rem;
        --size-700: 1.75rem;
        --size-600: 1.375rem;
    }
}

@media (max-width: 991px) {
    :root {
        --size-900: 2.625rem;
        --size-800: 2rem;
        --size-700: 1.5rem;
        --size-600: 1.25rem;
    }
}

@media (max-width: 767px) {
    :root {
        --size-900: 2rem;
        --size-800: 1.75rem;
        --size-700: 1.375rem;
        --size-600: 1.125rem;
    }
}

@media (max-width: 575px) {
    :root {
        --size-900: 1.75rem;
        --size-800: 1.5rem;
        --size-700: 1.25rem;
    }
}

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

:where([hidden]) {
    display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

:where([draggable=true]) {
    -webkit-user-drag: element;
}

:where(dialog:modal) {
    all: revert;
}

*,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    background-color: var(--sp-clr-body);
    display: flex;
    flex-flow: column;
    font-family: var(--sp-body-font);
    color: #fff;
    font-size: var(--size-400);
    padding: 0;
    margin: 0;
    font-weight: 400;
    position: relative;
    line-height: 1.7;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow-x: hidden;
    min-height: 100vh;
}

main {
    display: block;
}

footer {
    margin-top: auto;
}

img {
    max-width: 100%;
    height: auto;
    user-select: none;
}

select {
    cursor: pointer;
}

dt {
    margin-left: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
    opacity: 0.15;
}

pre {
    font-family: monospace, monospace;
    font-size: inherit;
}

address {
    font-style: inherit;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    cursor: pointer;
}

*:focus {
    outline: none;
}

button {
    border: none;
}

button:focus {
    outline: none;
}

span {
    display: inline-block;
}

p, li, span {
    margin: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    background-color: transparent;
    color: inherit;
}

a, button {
    cursor: revert;
}

a:hover {
    text-decoration: none;
}

strong {
    font-weight: 700;
}

a:hover {
    color: #f6b019;
}

abbr[title] {
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
    vertical-align: bottom;
}

img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
}

select {
    -webkit-appearance: listbox !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
    cursor: pointer;
    -webkit-appearance: button;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
    cursor: default;
}

:-moz-focusring {
    outline: auto;
}

select:disabled {
    opacity: inherit;
}

option {
    padding: 0;
}

fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
}

legend {
    padding: 0;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[type=number] {
    -moz-appearance: textfield;
}

label[for] {
    cursor: pointer;
}

details {
    display: block;
}

summary {
    display: list-item;
}

[contenteditable]:focus {
    outline: auto;
}

table {
    border-color: inherit;
    border-collapse: collapse;
}

caption {
    text-align: left;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

th {
    text-align: left;
    font-weight: bold;
}

/* reset css end */
/* global css strat */
.text-primary {
    color: var(--sp-clr-primary) !important;
}

.text-secondary {
    color: var(--sp-clr-secondary) !important;
}

.text-success {
    color: var(--sp-clr-success) !important;
}

.text-danger {
    color: var(--sp-clr-danger) !important;
}

.text-warning {
    color: var(--sp-clr-warning) !important;
}

.text-info {
    color: var(--sp-clr-info) !important;
}

.text-dark {
    color: var(--sp-clr-dark) !important;
}

.text-muted {
    color: var(--sp-clr-muted) !important;
}

.sp_theme_color {
    color: var(--sp-clr-theme) !important;
}

.sp_theme_color_two {
    color: var(--sp-clr-theme-dark) !important;
}

.sp_bg_primary {
    background-color: var(--sp-clr-primary) !important;
}

.sp_bg_secondary {
    background-color: var(--sp-clr-secondary) !important;
}

.sp_bg_success {
    background-color: var(--sp-clr-success) !important;
}

.sp_bg_danger {
    background-color: var(--sp-clr-danger) !important;
}

.sp_bg_warning {
    background-color: var(--sp-clr-warning) !important;
}

.sp_bg_info {
    background-color: var(--sp-clr-info) !important;
}

.sp_bg_dark {
    background-color: var(--sp-clr-dark) !important;
}

.sp_bg_light {
    background-color: var(--sp-clr-light) !important;
}

.sp_bg_base {
    background-color: var(--sp-clr-theme) !important;
}

.gr-bg-1 {
    background: linear-gradient(to right, #1976d2 0, #64b5f6 100%);
}

.gr-bg-2 {
    background: linear-gradient(45deg, #f93a5a, #f7778c) !important;
}

.gr-bg-3 {
    background: linear-gradient(to left, #48d6a8 0%, #029666 100%) !important;
}

.gr-bg-4 {
    background: linear-gradient(to left, #efa65f, #f76a2d) !important;
}

.gr-bg-5 {
    background: linear-gradient(to right, #4800c9 0%, #ba7bfb 100%) !important;
}

.gr-bg-6 {
    background: linear-gradient(to right, #0296ce 0%, #38c6f7 100%) !important;
}

.gr-bg-7 {
    background: linear-gradient(to right, #636f8e 0%, #acb8da 100%) !important;
}

.gr-bg-8 {
    background: linear-gradient(to right, #f10075 0%, #f36eae 100%) !important;
}

.gr-bg-9 {
    background: linear-gradient(to right, #4800c9 0%, #884af1 100%) !important;
}

.gr-bg-10 {
    background: linear-gradient(to right, #00cccc 0%, #96e8e8 100%) !important;
}

.sp_body_area {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    background-attachment: fixed;
}

.sp_block_header {
    margin-bottom: 2.8125rem;
}

@media (max-width: 575px) {
    .sp_block_header {
        margin-bottom: 2.1875rem;
    }
}

.sp_block_title {
    font-size: 48px;
    display: inline-block;
    z-index: 1;
}

.sp_block_title.line-none::after {
    display: none;
}

@media (max-width: 1399px) {
    .sp_block_title {
        font-size: 2rem;
    }
}

@media (max-width: 1199px) {
    .sp_block_title {
        font-size: 2.375rem;
    }
}

@media (max-width: 991px) {
    .sp_block_title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .sp_block_title {
        font-size: 1.75rem;
    }
}

.sp_block_title::after {
    content: "";
    bottom: -13px;
    right: 0;
    background-image: url("../images/elements/line.png");
    width: 150px;
    height: 25px;
    background-size: 150px 25px;
    background-repeat: no-repeat;
    z-index: -1;
    -webkit-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    transform: rotate(2deg);
}

.sp_separator_bg {
    background-color: var(--sp-clr-section);;
}

.sp_hr {
    border-top-color: var(--sp-clr-border);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    width: 45px;
    height: 45px;
    box-shadow: 0 5px 10px rgba(246, 176, 25, 0.45);
    line-height: 45px;
    text-align: center;
    display: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .back-to-top {
        bottom: 60px;
    }
}

.items_animation_wrapper div[class*=col]:nth-child(1) {
    animation-delay: 0.2s;
}

.items_animation_wrapper div[class*=col]:nth-child(2) {
    animation-delay: 0.4s;
}

.items_animation_wrapper div[class*=col]:nth-child(3) {
    animation-delay: 0.6s;
}

.items_animation_wrapper div[class*=col]:nth-child(4) {
    animation-delay: 0.8s;
}

.items_animation_wrapper div[class*=col]:nth-child(5) {
    animation-delay: 1s;
}

.items_animation_wrapper div[class*=col]:nth-child(6) {
    animation-delay: 1.2s;
}

.items_animation_wrapper div[class*=col]:nth-child(7) {
    animation-delay: 1.4s;
}

.items_animation_wrapper div[class*=col]:nth-child(8) {
    animation-delay: 1.6s;
}

.starter_popup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999999;
}

.starter_popup_wrapper {
    width: 576px;
    margin: 0 auto;
}

.starter_popup_wrapper .starter_popup_close {
    top: 185px;
    right: 15px;
    z-index: 1;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.25);
}

.starter_popup_wrapper .starter_popup_bottom_el {
    top: 0;
}

.starter_popup_wrapper .starter_popup_top_left {
    top: 115px;
    left: -85px;
    z-index: 1;
}

.starter_popup_wrapper .starter_popup_bottom_left {
    bottom: -51px;
    left: -67px;
    z-index: 1;
}

.starter_popup_wrapper .starter_popup_bottom_right {
    bottom: -37px;
    right: -29px;
    z-index: 1;
}

.starter_popup_wrapper .starter_popup_top_right {
    top: 113px;
    right: -29px;
}

.starter_popup_wrapper .title {
    font-size: 5.25rem;
    text-shadow: 2px 3px 15px #f6b019, 3px 10px 20px #000;
    z-index: 1;
    letter-spacing: 2px;
}

.starter_popup_wrapper .title::after {
    content: attr(data-title);
    width: 100%;
    top: 3px;
    left: 3px;
    text-align: center;
    text-shadow: none;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    z-index: -1;
}

.starter_popup_wrapper .title span {
    color: #fff;
}

.starter_popup_wrapper .sub_title {
    font-size: 1.375rem;
    font-weight: 500;
    text-shadow: 2px 3px 15px #f6b019, 3px 10px 20px #000;
}

.starter_popup .popup_form {
    padding: 2.5rem;
    background-color: #063F7D;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.starter_popup .popup_form label {
    color: #fff;
}

.starter_popup .popup_img {
    max-height: 275px;
    display: inline-block;
}

@media (max-width: 1399px) {
    .starter_popup_wrapper {
        width: 460px;
    }

    .starter_popup_wrapper .starter_popup_close {
        top: 132px;
        right: 10px;
    }

    .starter_popup_wrapper .title {
        font-size: 50px;
    }

    .starter_popup_wrapper .starter_popup_top_left,
    .starter_popup_wrapper .starter_popup_bottom_left {
        max-width: 100px;
    }

    .starter_popup_wrapper .starter_popup_top_left {
        top: 105px;
        left: -49px;
    }

    .starter_popup_wrapper .starter_popup_bottom_left {
        bottom: -31px;
        left: -43px;
    }

    .starter_popup_wrapper .starter_popup_bottom_right,
    .starter_popup_wrapper .starter_popup_top_right {
        max-width: 65px;
    }

    .starter_popup_wrapper .starter_popup_bottom_right {
        bottom: -15px;
        right: -29px;
    }

    .starter_popup .popup_form {
        padding: 30px;
    }

    .starter_popup .popup_img {
        max-height: 165px;
    }

    .popup_form .popup_form_title {
        font-size: 26px;
    }
}


@media (max-width: 767px) {
    .starter_popup_wrapper {
        width: 345px;
    }

    .starter_popup_wrapper .title {
        font-size: 44px;
    }

    .starter_popup_wrapper .starter_popup_top_left,
    .starter_popup_wrapper .starter_popup_bottom_left {
        max-width: 90px;
    }

    .starter_popup_wrapper .starter_popup_bottom_right,
    .starter_popup_wrapper .starter_popup_top_right {
        max-width: 55px;
    }

    .starter_popup .popup_img {
        max-height: 165px;
    }

    .popup_form .popup_form_title {
        font-size: 26px;
    }

    .starter_popup_wrapper .sub_title {
        font-size: 18px;
    }

    .starter_popup_wrapper .starter_popup_close {
        top: 125px;
    }
    
    .starter_popup_wrapper .starter_popup_top_left {
        left: -60px;
    }
}




@media (max-width: 767px) {
    .starter_popup_wrapper {
        width: 345px;
    }

    .starter_popup_wrapper .title {
        font-size: 30px;
    }

    .starter_popup .popup_form {
        padding: 20px 30px;
    }

    .starter_popup_wrapper .starter_popup_top_left,
    .starter_popup_wrapper .starter_popup_bottom_left {
        max-width: 55px;
    }

    .starter_popup_wrapper .starter_popup_top_left {
        left: -16px;
    }

    .starter_popup_wrapper .starter_popup_bottom_left {
        bottom: -10px;
        left: -12px;
    }

    .starter_popup_wrapper .starter_popup_bottom_right,
    .starter_popup_wrapper .starter_popup_top_right {
        max-width: 35px;
    }

    .starter_popup_wrapper .starter_popup_bottom_right {
        bottom: -6px;
        right: -9px;
    }

    .starter_popup_wrapper .starter_popup_top_right {
        right: -15px;
    }

    .starter_popup .popup_img {
        max-height: 135px;
    }

    .popup_form .popup_form_title {
        font-size: 18px;
    }

    .starter_popup_wrapper .sub_title {
        font-size: 16px;
    }

    .starter_popup_wrapper .starter_popup_close {
        top: 96px;
        right: 8px;
    }
}

/* global css end */
.sp_pt_12 {
    padding-top: calc(var(--sp-base-space) * 12) !important;
}

.sp_pb_12 {
    padding-bottom: calc(var(--sp-base-space) * 12) !important;
}

.sp_pt_20 {
    padding-top: calc(var(--sp-base-space) * 20) !important;
}

@media (max-width: 767px) {
    .sp_pt_20 {
        padding-top: calc(var(--sp-base-space) * 17) !important;
    }
}

@media (max-width: 575px) {
    .sp_pt_20 {
        padding-top: calc(var(--sp-base-space) * 12) !important;
    }
}

.sp_pb_20 {
    padding-bottom: calc(var(--sp-base-space) * 20) !important;
}

@media (max-width: 767px) {
    .sp_pb_20 {
        padding-bottom: calc(var(--sp-base-space) * 17) !important;
    }
}

@media (max-width: 575px) {
    .sp_pb_20 {
        padding-bottom: calc(var(--sp-base-space) * 12) !important;
    }
}

.sp_pt_25 {
    padding-top: calc(var(--sp-base-space) * 25) !important;
}

@media (max-width: 991px) {
    .sp_pt_25 {
        padding-top: calc(var(--sp-base-space) * 20) !important;
    }
}

@media (max-width: 767px) {
    .sp_pt_25 {
        padding-top: calc(var(--sp-base-space) * 17) !important;
    }
}

@media (max-width: 575px) {
    .sp_pt_25 {
        padding-top: calc(var(--sp-base-space) * 12) !important;
    }
}

.sp_pb_25 {
    padding-bottom: calc(var(--sp-base-space) * 25) !important;
}

@media (max-width: 991px) {
    .sp_pb_25 {
        padding-bottom: calc(var(--sp-base-space) * 20) !important;
    }
}

@media (max-width: 767px) {
    .sp_pb_25 {
        padding-bottom: calc(var(--sp-base-space) * 17) !important;
    }
}

@media (max-width: 575px) {
    .sp_pb_25 {
        padding-bottom: calc(var(--sp-base-space) * 12) !important;
    }
}

.referral-single .referral-sub-tree .referral-single, .referral-single .referral-sub-tree, .main-tree-holder .name, .single-link, .d-card, .menu-dropdown > a, .short-post .thumb, .sp_subscribe_form, .sp_testimonial_item, .sp_testimonial_wrapper, .sp_referral_item .referral_circle, .sp_referral_item, .how_work_item, .sp_plan_top, .sp_overview_box .sp_overview_box_inner, .sp_overview_box, .wheeler_thumb, .sp_choose_item_icon, .sp_banner, .sp_sidebar_box_body, .sp_footer_inline_menu li a, .sp_footer_main, .sp_header_menu li a, .sp_header_menu_toggle_btn, .header_menu_area, .h_action_menu li, .sp_nav_tabs .nav-item .nav-link, .sp_accordion .accordion-item .accordion-header .accordion-button, body, .sp_block_title, .starter_popup_wrapper, .starter_popup_wrapper .title, .starter_popup .popup_form {
    position: relative;
}

.referral-single .referral-sub-tree .referral-single::before, .referral-single .referral-sub-tree::before, .main-tree-holder .name::before, .single-link a, .d-card i, .menu-dropdown > a::after, .short-post .thumb a, .short-post .thumb::before, .sp_subscribe_form button, .sp_testimonial_item i, .sp_testimonial_wrapper_icon, .sp_referral_item .referral_circle::after, .sp_referral_item .referral_circle::before, .sp_referral_item::after, .sp_referral_item::before, .how_work_item::after, .how_work_item::before, .sp_plan_name, .sp_overview_box .sp_overview_box_img, .wheeler_thumb .wheeler_thumb_middle, .sp_choose_item_icon i, .sp_choose_item_icon::before, .sp_banner .right-img .right-img-el, .sp_banner .right-img .right-img-lock, .sp_banner .right-img .right-img-spin, .sp_banner .right-img .right-img-number, .sp_banner .left-img,
.sp_banner .right-img, .sp_footer_inline_menu li a::after, .sp_footer_main::before, .sp_header_menu_toggle_btn i, .sp_site_logo, .h_action_menu li::after, .sp_nav_tabs .nav-item .nav-link::after, .sp_accordion .accordion-item .accordion-header .accordion-button::after, .sp_block_title::after, .starter_popup_wrapper .starter_popup_close, .starter_popup_wrapper .starter_popup_bottom_el, .starter_popup_wrapper .starter_popup_top_left, .starter_popup_wrapper .starter_popup_bottom_left, .starter_popup_wrapper .starter_popup_bottom_right, .starter_popup_wrapper .starter_popup_top_right, .starter_popup_wrapper .title::after {
    position: absolute;
}

.sp_testimonial_wrapper, .how_work_item, .sp_overview_box, .sp_footer_main {
    z-index: 1;
}

.sp_footer_main::before {
    z-index: -1;
}

.d-card, .sp_sidebar_menu li a, .user-sidebar, .blog-post, .how_work_item::after, .wheeler_item, .sp_sidebar, .sp_header_menu_wrapper, .sp_header_menu_toggle_btn i, .sp_nav_tabs .nav-item .nav-link::after, .sp_checkbox label::before, .sp_theme_btn::after, .sp_theme_btn, body {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sp_subscribe_form button, .sp_testimonial_wrapper_icon, .sp_referral_item::before, .how_work_item::after, .sp_plan_name, .sp_about_item_icon, .sp_choose_item_icon i, .sp_choose_item_icon::before, .sp_header_menu li a.active-page, .sp_nav_tabs .nav-item .nav-link::after, .sp_table.sp_table_thead thead th, .sp_icon_btn, .back-to-top {
    background-color: var(--sp-clr-theme);
}

.header_action_area, .sp_site_logo {
    background-color: var(--sp-clr-theme-dark);
}

.referral-single:hover > .referral-single-item, .menu-dropdown ul, .dropdown-menu, .short-post .thumb::before, .blog-widget, .blog-post .content, .sp_testimonial_item , .sp_accordion .accordion-item .accordion-header .accordion-button, .sp_accordion .accordion-item, .sp_select, .sp_theme_btn_two {
    background-color: var(--sp-clr-body);
}

.sp_sidebar_open, .responsive-bottom-bar, .pagination .page-item .page-link, .sp_accordion .accordion-item .accordion-header .accordion-button:not(.collapsed), .referral-tree-wrapper, .d-card {
    background-color: var(--sp-clr-body);
}

.single-link:hover .icon, .sp_referral_item .referral_circle::before, .how_work_item::before, .sp_plan_top, .sp_user_box, .payment_wrapper, .header_menu_area, .sp_theme_btn::after {
    background: var(--sp-grad-one);
    background: -webkit-linear-gradient(90deg, var(--sp-grad-one) 0, var(--sp-grad-two) 100%, var(--sp-grad-one));
    background: linear-gradient(90deg, var(--sp-grad-one) 0, var(--sp-grad-two) 100%, var(--sp-grad-one));
}

.header_menu_area {
    background: var(--sp-grad-one);
    background: -webkit-linear-gradient(90deg, var(--sp-grad-one) 0, var(--sp-grad-two) 49%, var(--sp-grad-one));
    background: linear-gradient(90deg, var(--sp-grad-one) 0, var(--sp-grad-two) 49%, var(--sp-grad-one));
}

.contact-item .icon, .sp_theme_btn {
    background: #eaa207;
    background: -webkit-linear-gradient(to right, #f4c97c, #eaa207);
    background: linear-gradient(to right, #f4c97c, #eaa207);
}

.d-card i, .sp_sidebar_menu li a:hover, .sp_sidebar_menu li a.active, .contact-item .content p a:hover, .contact-item .content .title, .post-share a:hover, .testimonial_slider_nav button, .wheeler_item i, .sp_banner_content .sp_banner_title, .sp_site_logo, .h_action_menu li a:hover, .sp_nav_tabs .nav-item .nav-link.active, .sp_icon_field .sp_form_field:focus ~ i, .sp_view_btn:hover, .sp_preloader_wrapper span, .sp_block_title span, .starter_popup_wrapper .title, .starter_popup_wrapper .sub_title {
    color: var(--sp-clr-theme);
}

.dropdown-menu .dropdown-item, .user-dropdown .user-btn span, .sp_banner_content .sp_banner_subtitle, .sp_accordion .accordion-item .accordion-header .accordion-button, .sp_table.sp_table_thead thead th, .sp_icon_btn:hover, .sp_icon_btn, .sp_theme_btn_two:hover, .sp_theme_btn_two {
    color: #fff;
}

.breadcrum .page-breadcrumb li a, .sp_sidebar_open, .sp_accordion .accordion-item .accordion-header .accordion-button:not(.collapsed), .sp_select, .sp_form_field:focus, .sp_form_field, .sp_view_btn, .sp_list_group li .title {
    color: #fff;
}

.contact-item .content p a, .sp_price_slider .range-amount, .responsive-bottom-bar a, .h_action_menu li a, .sp_nav_tabs .nav-item .nav-link, .sp_table thead th {
    color: #fff;
}

.referral-single .referral-single-item .thumb img, .main-tree-holder .thumb img, .user-dropdown .user-btn img, .short-post .thumb img, .blog-details-img img, .blog-post .thumb img, .sp_testimonial_item .sp_client_thumb img {
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.referral-single .referral-single-item, .recent_transaction_list li, .sp_sidebar_menu li a, .user-header, .contact-item .icon, .contact-item, .post-share a, .post-share, .short-post .thumb a, .short-post, .blog-meta, .blog-post, .sp_subscribe_form button, .sp_testimonial_item .sp_client, .sp_testimonial_wrapper_icon, .single_transaction, .sp_about_item_icon, .sp_about_item, .sp_choose_item_icon i, .sp_choose_item, .breadcrum .page-breadcrumb, .sp_banner, .sp_price_slider .range_amount_field, .sp_price_slider, .sp_footer_inline_menu, .payment_item, .sp_header_menu, .sp_header_menu_wrapper, .h_action_menu, .modal-close, .sp_icon_field i, .sp_preloader {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-item .icon, .post-share a, .short-post .thumb a, .sp_subscribe_form button, .sp_testimonial_wrapper_icon, .sp_referral_item .referral_circle, .sp_about_item_icon, .sp_choose_item_icon i, .sp_banner, .sp_footer_inline_menu, .payment_item, .modal-close, .sp_icon_field i, .sp_icon_btn, .sp_preloader {
    justify-content: center;
}

.sp_sidebar_menu li a, .user-header, .contact-item .icon, .post-share a, .post-share, .short-post .thumb a, .blog-meta, .sp_subscribe_form button, .sp_testimonial_item .sp_client, .sp_testimonial_wrapper_icon, .sp_referral_item .referral_circle, .sp_about_item_icon, .sp_choose_item_icon i, .sp_choose_item, .breadcrum .page-breadcrumb, .sp_banner, .sp_price_slider .range_amount_field, .sp_footer_inline_menu, .payment_item, .sp_header_menu, .h_action_menu, .modal-close, .sp_icon_field i, .table-product, .sp_icon_btn, .sp_preloader {
    align-items: center;
}

.table-product, .sp_icon_btn {
    display: inline-flex;
}

.referral-single .referral-single-item .thumb, .main-tree-holder .thumb, .d-card, .short-post .thumb, .blog-details-img, .blog-post .thumb, .blog-post, .sp_testimonial_item .sp_client_thumb, .single_transaction .thumb, .sp_plan, .sp_user_box_thumb, .wheeler_thumb, .sp_banner {
    overflow: hidden;
}

.referral-single .referral-single-item .thumb img, .main-tree-holder .thumb img, .single-link a, .user-header, .short-post .thumb img, .short-post .thumb a, .short-post .thumb::before, .blog-details-img img, .blog-post .thumb img, .sp_testimonial_item .sp_client_thumb img, .single_transaction .thumb img, .sp_referral_item .referral_circle::before, .how_work_item::after, .how_work_item::before, .sp_user_box_thumb img, .wheeler_thumb .wheeler_thumb_main, .sp_choose_item_icon::before, .sp_footer_main::before, .responsive-bottom-bar, .sp_nav_tabs .nav-item .nav-link::after, .sp_nav_tabs .nav-item .nav-link, .sp_preloader, .starter_popup {
    width: 100%;
}

.referral-single .referral-single-item .thumb img, .main-tree-holder .thumb img, .single-link a, .contact-item, .short-post .thumb img, .short-post .thumb a, .short-post .thumb::before, .blog-details-img img, .blog-post .thumb img, .sp_testimonial_item .sp_client_thumb img, .single_transaction .thumb img, .sp_referral_item .referral_circle::before, .how_work_item::after, .how_work_item::before, .sp_user_box_thumb img, .wheeler_thumb .wheeler_thumb_main, .sp_choose_item_icon::before, .sp_banner .left-img,
.sp_banner .right-img, .sp_footer_main::before, .sp_icon_field i {
    height: 100%;
}

.d-card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.sp_referral_item, .sp_plan_body, .sp_plan_top, .logo_menu_area, .responsive-bottom-bar button, .responsive-bottom-bar a {
    text-align: center;
}

.referral-single .referral-single-item, .referral-body, .short-post .thumb, .sp_subscribe_form button, .single_transaction .thumb, .sp_sidebar_open, .sp_form_field, .sp_icon_btn, .sp_theme_btn::after, .sp_btn {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.referral-tree-wrapper, .d-card, .contact-item .icon, .contact-item, .blog-widget, .blog-details-img, .blog-post, .sp_user_box_thumb img, .sp_user_box, .sp_sidebar, .sp_card {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.sp_subscribe_wrapper, .sp_testimonial_item, .single_transaction, .cta_wrapper, .sp_plan, .sp_overview_box .sp_overview_box_inner, .sp_overview_box::before, .sp_overview_box::after, .sp_overview_box, .wheeler_item, .wheeler_thumb {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.main-tree-holder .thumb, .user-dropdown .user-btn img, .post-share a, .sp_testimonial_item .sp_client_thumb, .sp_testimonial_wrapper_icon, .sp_referral_item .referral_circle::before, .sp_referral_item::after, .sp_referral_item::before, .sp_about_item_icon, .sp_choose_item_icon i, .sp_choose_item_icon::before, .sp_price_slider .ui-slider .ui-slider-handle, .back-to-top {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.sp_list_group li {
    display: flex;
    flex-wrap: wrap;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px dashed rgba(219, 219, 219, 0.4901960784);
}

.sp_list_group li:first-child {
    padding-top: 0;
}

.sp_list_group li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sp_list_group li .title {
    width: 40%;
    font-family: var(--sp-display-font);
    font-weight: 700;
    font-size: 0.875rem;
    position: relative;
}

.sp_list_group li .title::after {
    position: absolute;
    content: ":";
    top: 0;
    right: 0;
}

.sp_list_group li .details {
    width: 60%;
    padding-left: 0.9375rem;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-ms-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-ms-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-family: var(--sp-display-font);
    color: #fff;
    font-weight: 600 !important;
    margin: 0;
    line-height: 1.3;
    word-break: inherit;
}

h1, .h1 {
    font-size: var(--size-900);
}

h2, .h2 {
    font-size: var(--size-800);
}

h3, .h3 {
    font-size: var(--size-700);
}

h4, .h4 {
    font-size: var(--size-600);
}

h5, .h5 {
    font-size: var(--size-500);
}

h6, .h6 {
    font-size: var(--size-400);
}

.fs-xxl {
    font-size: 1.5rem !important;
}

.fs-xl {
    font-size: 1.375rem !important;
}

.fs-lg {
    font-size: 1.25rem !important;
}

.fs-md {
    font-size: 1.125rem !important;
}

.fs-base {
    font-size: 1rem !important;
}

.fs-sm {
    font-size: 0.875rem !important;
}

.fs-xs {
    font-size: 0.75rem !important;
}

.h-font {
    font-family: var(--sp-display-font) !important;
}

.p-font {
    font-family: var(--sp-body-font) !important;
}

.fw-medium {
    font-weight: 600 !important;
}

/* sp_preloader css start */
.sp_preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: var(--sp-clr-body);
    z-index: 9999;
}

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

.sp_preloader_wrapper img {
    max-width: 50px;
    animation: spinTwo 3s infinite linear;
    animation-timing-function: cubic-bezier(0.1, -0.6, 0.2, 0);
}

.sp_preloader_wrapper span {
    font-size: 2rem;
    padding-left: 0.9375rem;
    font-weight: 600;
}

@-webkit-keyframes spinTwo {
    from {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinTwo {
    from {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes spinTwo {
    from {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinTwo {
    from {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* sp_preloader css end */
.sp_btn {
    padding: 0.6875rem 1.5625rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 767px) {
    .sp_btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.sp_btn.btn-md {
    padding: 0.425rem 1.25rem;
}

.sp_btn.btn-sm {
    padding: 5px 1.25rem;
    font-size: 0.875rem;
}

.sp_theme_btn {
    color: #2b2b2b;
    position: relative;
    z-index: 1;
}

.sp_theme_btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
}

.sp_theme_btn:hover {
    color: #fff;
}

.sp_theme_btn:hover::after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.sp_theme_btn_two {
    font-weight: 500;
}

.sp_view_btn {
    font-weight: 600;
    font-size: 0.875rem;
}

.sp_icon_btn {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
}

.sp_badge {
    padding: 0 0 0 15px;
    position: relative;
    color: #052554;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
}

.sp_badge::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #052554;
    border-radius: 50%;
    margin-top: -5px;
}

.sp_badge_primary {
    color: #6777EF;
}

.sp_badge_primary::before {
    background-color: #6777EF;
}

.sp_badge_info {
    color: #0bb2d4;
}

.sp_badge_info::before {
    background-color: #0bb2d4;
}

.sp_badge_warning {
    color: #eb6709;
}

.sp_badge_warning::before {
    background-color: #eb6709;
}

.sp_badge_danger {
    color: #ff4c52;
}

.sp_badge_danger::before {
    background-color: #ff4c52;
}

.sp_badge_success {
    color: #11c26d;
}

.sp_badge_success::before {
    background-color: #11c26d;
}

/* table css start */
.sp_table {
    margin-bottom: 0;
}

.table-user {
    display: flex;
    align-items: center;
}

.table-user img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden; 
    object-fit: cover;
    -o-object-fit: cover;
}

.table-user .name {
    padding-left: 15px; 
    font-size: 18px;
}

.sp_table.sp_table_thead thead th {
    padding: 0.75rem 1.25rem;
}

.sp_table thead th {
    background-color: var(--sp-clr-theme);
    vertical-align: middle;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: none !important;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    color: #2b2b2b;
    font-weight: 600;
}

.sp_table tbody td {
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.825rem 1.25rem;
    color: #fff;
    vertical-align: middle;
    font-size: 0.9375rem;
}

.sp_table tbody tr:nth-child(even) td {
    background-color: rgba(0, 0, 0, 0.15);
}

.sp_table tbody td:first-child {
    text-align: left;
}

.sp_table thead th:last-child,
.sp_table tbody td:last-child {
    text-align: right;
}

.sp_table tbody tr:last-child td {
    border-bottom: none;
}

.table-product img {
    width: 45px;
}

.table-product .p-name {
    padding-left: 0.9375rem;
}

@media (max-width: 1199px) {
    .sp_table tbody td:last-child {
        text-align: left;
    }

    .sp_table tbody td {
        padding: 0;
    }

    .sp_table tbody td::before {
        padding: 5px 15px;
        font-weight: 500;
        background-color: var(--sp-clr-theme);
        color: #2b2b2b;
    }

    .sp_table tbody td span {
        padding: 5px 15px;
    }

    .sp_table tbody td:first-child span,
    .sp_table tbody td:first-child::before {
        padding: 10px 15px;;
    }

    .sp_table tr {
        border-bottom: 1px solid #120805;
    }
}

table.bt tfoot th::before, table.bt tfoot td::before, table.bt tbody td::before {
    width: 12em;
}

@media only screen and (max-width: 1199px) {
    .sp_table.two-axis tr td:first-of-type,
    .sp_table.two-axis tr:nth-of-type(2n+2) td:first-of-type,
    .sp_table.two-axis tr td:first-of-type:before {
        background: var(--sp-clr-section);
        color: #ffffff;
    }

    .sp_table.two-axis tr td:first-of-type {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

/* table css end */
/* form css start */
.sp_form_field {
    padding: 0.625rem 0.9375rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    height: 3.125rem;
    background-color: var(--sp-clr-section);
}

.sp_form_field:focus {
    background-color: var(--sp-clr-section);
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.sp_form_field::-webkit-input-placeholder {
    color: #bdbdbd;
}

.sp_form_field::-moz-placeholder {
    color: #bdbdbd;
}

.sp_form_field:-ms-input-placeholder {
    color: #bdbdbd;
}

.sp_form_field:-moz-placeholder {
    color: #bdbdbd;
}

.sp_form_field:focus {
    border-color: #f6b019 !important;
    box-shadow: 0 0 5px rgba(246, 176, 25, 0.35);
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background-color: var(--sp-clr-section) !important;
}

.sp_form_field[readonly] {
    background-color: var(--sp-clr-body);
}

.sp_form_field.sp_form_field_md {
    height: 45px;
}

.sp_form_field.sp_form_field_sm {
    height: 35px;
    padding: 5px 0.9375rem;
    font-size: 14px;
}

.sp_form_field[type=file] {
    line-height: 28px;
}

.sp_select {
    padding: 0.625rem 0.9375rem;
    width: 100%;
    border: 1px solid rgba(219, 219, 219, 0.4901960784);
    cursor: pointer;
    color: #fff;
    height: 3.125rem;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

@media (max-width: 575px) {
    .sp_form_field,
    .sp_select {
        height: 45px;
        font-size: 14px;
    }
}

.sp_select option {
    padding: 0.625rem 0;
    display: block;
    border-top: 1px solid #e5e5e5;
}

.sp_select.select--sm {
    height: 2.1875rem;
    font-size: 0.875rem;
    padding: 0.3125rem;
}

textarea {
    min-height: 9.375rem !important;
    resize: none;
    width: 100%;
}

label {
    color: #b3b3b3;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.input-group > .sp_form_field,
.input-group > .sp_select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group select {
    background-color: transparent;
    border: none;
}

.sp_icon_field {
    position: relative;
}

.sp_icon_field i {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
}

.sp_icon_field i[class*=la-] {
    font-size: 1.5rem;
    color: white;
}

.sp_icon_field .sp_form_field {
    padding-left: 2.8125rem;
}

.sp_icon_field .sp_form_field:focus ~ i {
    border-color: #f6b019;
}

.sp_checkbox {
    padding-left: 1.5625rem;
}

.sp_checkbox input {
    display: none;
}

.sp_checkbox input:checked ~ label::before {
    content: "\f14a";
    color: #f6b019;
}

.sp_checkbox label {
    position: relative;
    font-size: 0.9375rem;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.sp_checkbox label::before {
    position: absolute;
    content: "\f04d";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 3px;
    left: -1.5625rem;
    font-size: 1.25rem;
    line-height: 1;
}

.list-group .list-group-item {
    background-color: var(--sp-clr-section);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.h-mx-100 {
    max-height: 100px;
}

.tab-btn-group {
    margin: -3px -15px;
}

.tab-btn-group .tab-btn {
    padding: 3px 15px;
    border-bottom: 2px solid transparent;
}


.tab-btn-group .tab-btn.active {
    color: var(--sp-clr-theme);
    padding-bottom: 3px;
    border-bottom-color: var(--sp-clr-theme);
}



/* form css end*/
/* card css start */
.sp_card {
    box-shadow: 0 3px 15px rgba(136, 152, 170, 0.1490196078);
    background-color: var(--sp-clr-body);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sp_card .sp_card_header {
    padding: 0.9375rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
}

.sp_card .sp_card_body {
    padding: 1.25rem;
}

@media (max-width: 575px) {
    .sp_card .sp_card_body {
        padding: 0.9375rem;
    }
}

.sp_card .sp_card_footer {
    padding: 0.9375rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
}

.card-header-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: -10px;
}

.card-header-items .card-header-item {
    padding: 7px 10px;
}

.sp_border_card {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* card css end */
/* modal css start */
.modal {
    z-index: 999999;
}

.modal-open {
    overflow: hidden;
    overflow-y: auto;
    padding-right: 0 !important;
}

.modal-content {
    background-color: var(--sp-clr-body);
}

.modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.modal-header .btn-close {
    width: 12px;
    height: 12px;
    background-color: #ff494a;
    opacity: 1;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-header .btn-close:focus {
    box-shadow: none;
}

.modal-footer {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.modal.fade .modal-dialog {
    transform: scale(0.85, 0.85) translate(0);
}

.modal.show .modal-dialog {
    transform: scale(1, 1) translate(0);
}

/* modal css end */
.sp_accordion .accordion-item + .accordion-item {
    margin-top: 0.9375rem;
}

.sp_accordion .accordion-item {
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.sp_accordion .accordion-item:hover {
    border-color: var(--sp-clr-theme);
}

.sp_accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 500 !important;
    box-shadow: none;
    padding: 0.9375rem 35px 0.9375rem 0.9375rem;
    font-weight: 600;
    border-radius: 10px 10px;
    -webkit-border-radius: 10px 10px;
    -moz-border-radius: 10px 10px;
    -ms-border-radius: 10px 10px;
    -o-border-radius: 10px 10px;
}

.sp_accordion .accordion-item .accordion-header .accordion-button::after {
    background-image: none;
    content: "\f067";
    right: 12px;
    top: 15px;
    font-family: 'Line Awesome Free';
    font-weight: 900;
}

.sp_accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

.sp_accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    background-color: var(--sp-clr-theme);
    color: #2b2b2b;
}

.sp_accordion .accordion-item .accordion-body {
    padding: 1.125rem;
    color: #fff;
}

.sp_nav_tabs {
    border-bottom: none;
}

.sp_nav_tabs .nav-item .nav-link {
    border: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    padding: 0.375rem 0.9375rem;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.sp_nav_tabs .nav-item .nav-link::after {
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    opacity: 0;
}

.sp_nav_tabs .nav-item .nav-link.active::after {
    opacity: 1;
}

.pagination {
    margin: -0.3125rem -0.4375rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    justify-content: flex-end;
}

.pagination .page-item {
    margin: 0.3125rem 0.4375rem;
}

.pagination .page-item.active .page-link {
    background-color: #f6b019;
    color: #fff;
    border-color: #f6b019;
}

.pagination .page-item .page-link {
    width: 2.1875rem;
    height: 2.1875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #fff;
}

.pagination .page-item .page-link:hover {
    background-color: #f6b019;
    border-color: #f6b019;
    color: #fff;
}

/* header start */
.sp_header {
    z-index: 2;
}

.header_action_area {
    padding: 0.5rem 0;
}

/* .sp_header_lang {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border: 1px solid var(--sp-clr-theme);
    border-radius: 999px;
} */

.sp_header_lang i {
    margin-right: 0;
    font-size: 18px;
}

.lang-select {
    background-color: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 5px 8px;
    border: 1px solid var(--sp-clr-theme);
    border-radius: 999px;
}

.lang-select option {
    background-color: var(--sp-clr-body);
    font-size: 16px;
    padding: 15px;
}

.h_action_menu {
    margin: -0.3125rem -0.75rem;
}

.h_action_menu li {
    font-size: 0.875rem;
    padding: 0.3125rem 0.75rem;
    line-height: 1;
    font-weight: 500;
}

.h_action_menu li::after {
    content: "";
    top: 50%;
    right: 0;
    width: 1px;
    height: 11px;
    background-color: #fff;
    opacity: 0.5;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.h_action_menu li:last-child {
    padding-right: 0;
    border-right: none;
}

.h_action_menu li:last-child::after {
    display: none;
}

@media (max-width: 575px) {
    .h_action_menu li a span {
        display: none;
    }
}

.header_menu_area {
    padding: 0.625rem 0;
}

.sp_site_logo {
    font-size: 1.5rem;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 0.625rem 1.25rem;
    border-radius: 0 0 25px 25px;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    -ms-border-radius: 0 0 25px 25px;
    -o-border-radius: 0 0 25px 25px;
    z-index: 1;
    box-shadow: 0 2px 1px #b71144;
}

@media (max-width: 1199px) {
    .sp_site_logo {
        position: static;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        order: -1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.sp_site_logo img {
    max-width: 215px;
    max-height: 53px;
}

@media (max-width: 1199px) {
    .sp_site_logo img {
        max-height: 45px;
    }
}

.sp_header_menu_toggle_btn {
    display: none;
    font-size: 1.5rem;
    width: 25px;
    height: 25px;
}

.sp_header_menu_toggle_btn.active i.la-bars {
    opacity: 0;
}

.sp_header_menu_toggle_btn.active i.la-times {
    opacity: 1;
}

.sp_header_menu_toggle_btn i {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sp_header_menu_toggle_btn i.la-times {
    opacity: 0;
}

@media (max-width: 1199px) {
    .sp_header_menu_toggle_btn {
        display: inline-block;
        margin-left: auto;
    }
}

.sp_header_menu_wrapper {
    justify-content: space-between;
    width: 100%;
}

.sp_header_menu_wrapper.active {
    left: 0;
}

@media (max-width: 1199px) {
    .sp_header_menu_wrapper {
        justify-content: flex-start;
        position: fixed;
        left: -105%;
        top: 0;
        width: 250px;
        height: 100vh;
        background-color: var(--sp-clr-body);
        z-index: 999;
        overflow-y: auto;
        display: block;
    }
}

.sp_header_menu {
    margin: -0.625rem -1.25rem;
}

@media (max-width: 1199px) {
    .sp_header_menu {
        flex-direction: column;
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 1199px) {
    .sp_header_menu li {
        width: 100%;
    }
}

.sp_header_menu li:last-child a::after {
    display: none;
}

.sp_header_menu li a {
    padding: 0.625rem 1.25rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.sp_header_menu li a.active-page {
    color: #2b2b2b;
}

@media (max-width: 1199px) {
    .sp_header_menu li a {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0.625rem 0.9375rem;
    }
}

.sp_header_menu li a i {
    font-size: 1.5rem;
}

.sp_header_menu li a i.fas,
.sp_header_menu li a i.fab,
.sp_header_menu li a i.far {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

@media (max-width: 1199px) {
    .sp_header_menu li a i {
        margin-right: 10px;
    }
}

.responsive-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0.375rem 0.9375rem;
    border-top: 1px solid rgba(219, 219, 219, 0.4901960784);
    z-index: 9;
    display: none;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .responsive-bottom-bar {
        display: flex;
    }
}

.responsive-bottom-bar button {
    background-color: transparent;
    padding: 0 0.3125rem;
}

.responsive-bottom-bar i {
    font-size: 0.875rem;
}

@media (max-width: 575px) {
    .responsive-bottom-bar i {
        font-size: 0.8125rem;
    }
}

.responsive-bottom-bar p {
    line-height: 1;
    font-size: 0.875rem;
}

@media (max-width: 575px) {
    .responsive-bottom-bar p {
        font-size: 0.75rem;
    }
}


/* sp_trading_section css start */
.sp_trading_section {
    padding: 120px 0;
}

.radio_button_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -3px -15px;
}

.radio_button_list .sp_form_check {
    padding: 3px 15px;
}

.sp_form_check {
    position: relative;
}

.sp_form_check .form-check-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.sp_form_check .form-check-label {
    position: relative;
    padding-left: 25px;
    color: #fff;
    margin-bottom: 0;
}

.sp_form_check .form-check-label::before {
    position: absolute;
    content: '';
    top: 5px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    transition: all 0.3s;
}

.sp_form_check .form-check-input:checked ~ .form-check-label::before {
    background-color: var(--sp-clr-theme);
    border-color: var(--sp-clr-theme);
}




/* sp_trading_section css end */



/* sp_footer_section css start */
.sp_footer_main {
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.sp_footer_main::before {
    content: "";
    top: 0;
    left: 0;
    background-color: #310901;
    opacity: 0.75;
}

.sp_footer_main .sp_block_title {
    font-size: 22px;
}

.footer_item_wrapper div[class*="col-"] {
    position: relative;
}

.footer_item_wrapper div[class*="col-"] .sp_footer_item {
    padding-left: 25px;
}

.footer_item_wrapper div[class*="col-"]:first-child .sp_footer_item {
    padding-left: 0;
}

.footer_item_wrapper div[class*="col-"]::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer_item_wrapper div[class*="col-"]:last-child::after {
    display: none;
}

.sp_footer_item_title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sp_footer_contact_list li + li {
    margin-top: 10px;
}

.sp_footer_contact_list li span {
    font-size: 12px;
    color: rgb(217, 217, 217);
}

.sp_footer_contact_list li p {
    font-size: 15px;
    font-weight: 500;
}

.sp_footer_contact_list li a {
    color: #fff;
}

.footer_nav_list li + li {
    margin-top: 8px;
}

.footer_nav_list li a {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.footer_nav_list li a i {
    margin-right: 15px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer_nav_list li:hover a i {
    background-color: var(--sp-clr-theme);
    color: #000;
    border-color: var(--sp-clr-theme);
}

.payment_slider .slick-list {
    margin: -0.625rem;
}

.payment_slider .payment_slide {
    padding: 0.625rem;
}

.payment_item {
    height: 50px;
}

.payment_item img {
    max-width: 80px;
    max-height: 25px;
    display: inline-block;
}

@media (max-width: 575px) {
    .payment_item img {
        max-height: 23px;
    }
}

.sp_footer_logo img {
    max-width: 215px;
    max-height: 60px;
}

.sp_footer_inline_menu li:last-child a::after {
    display: none;
}

.sp_footer_inline_menu li a {
    padding: 0.1875rem 1.25rem;
}

.sp_footer_inline_menu li a::after {
    content: "";
    top: 50%;
    right: 0;
    width: 2px;
    height: 18px;
    margin-top: -9px;
    background-color: #fff;
    opacity: 0.25;
}

.sp_footer_copyright {
    padding: 1.25rem 0;
    background-color: #220601;
}

/* sp_footer_section css end */
/* sp_sidebar css start */
.sp_sidebar {
    background-color: #fff;
    padding: 1.5625rem 1.25rem;
}

@media (max-width: 991px) {
    .sp_sidebar {
        padding: 30px;
        min-height: 100vh;
        width: 350px;
        position: fixed;
        top: 0;
        left: -105%;
        z-index: 99999;
        max-width: 100%;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
        max-height: calc(100vh - 75px);
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: darkgrey #e7e7e7;
    }

    .sp_sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .sp_sidebar::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }

    .sp_sidebar::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        border-radius: 999px;
        -webkit-border-radius: 999px;
        -moz-border-radius: 999px;
        -ms-border-radius: 999px;
        -o-border-radius: 999px;
    }

    .sp_sidebar.active {
        left: 0;
    }
}

@media (max-width: 575px) {
    .sp_sidebar {
        padding: 20px 15px;
    }
}

.sp_sidebar_box {
    padding: 20px 0;
    border-bottom: 1px solid rgba(227, 227, 227, 0.4901960784);
}

.sp_sidebar_box:first-child {
    padding-top: 0;
}

.sp_sidebar_box:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sp_sidebar_box_title {
    font-size: 0.9375rem;
    color: #fff;
    position: relative;
    padding-right: 20px;
    cursor: pointer;
}

.sp_sidebar_box_title::after {
    position: absolute;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 0;
    right: 0;
    font-size: 0.875rem;
}

.sp_sidebar_box_body {
    margin-top: 0.9375rem;
}

.sp_sidebar_box_body.scroll--active {
    max-height: 200px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: darkgrey #e7e7e7;
}

.sp_sidebar_box_body.scroll--active::-webkit-scrollbar {
    width: 5px;
}

.sp_sidebar_box_body.scroll--active::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.sp_sidebar_box_body.scroll--active::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

.sp_sidebar_box .cat-menu li + li {
    margin-top: 0.3125rem;
}

.search-form-inline {
    position: relative;
}

.search-form-inline input {
    padding-left: 10px;
    padding-right: 30px;
}

.search-form-inline__btn {
    position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
}

.sp_sidebar_close {
    width: 30px;
    height: 30px;
    background-color: #f6b019;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

@media (max-width: 991px) {
    .sp_sidebar_close {
        display: inline-block;
    }
}

.sp_sidebar_open {
    padding: 0.375rem 1.5625rem;
    display: none;
}

@media (max-width: 991px) {
    .sp_sidebar_open {
        display: flex;
    }
}

.sp_sidebar_open i {
    font-size: 1.375rem;
    margin-right: 5px;
}

.sp_price_slider {
    flex-direction: column;
}

.sp_price_slider .slider-range, .sp_price_slider .slider-range-two {
    order: 2;
    border: none !important;
    height: 5px;
    background-color: #cacaca;
    margin: 0 8px;
}

.sp_price_slider .range_amount_field {
    justify-content: space-between;
    margin-bottom: 4px;
}

.sp_price_slider .range_amount_field label {
    margin-bottom: 0;
    font-weight: 400;
}

.sp_price_slider .range-amount {
    text-align: right;
    padding: 0;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    width: 150px;
}

.sp_price_slider .ui-widget-header {
    background: #ececec;
}

.sp_price_slider .ui-slider .ui-slider-handle {
    background: #fff;
    width: 15px;
    height: 15px;
    top: -6px;
    border: 1px solid #f6b019;
    cursor: pointer;
}


.mobile-bottom-menu-wrapper {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--sp-clr-section);
    z-index: 999;
}

@media (max-width: 1199px) {
    .mobile-bottom-menu-wrapper {
        display: block;
    }
}

.mobile-bottom-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.mobile-bottom-menu li {
    width: 20%;
}

.mobile-bottom-menu li a {
    padding: 6px;
    text-align: center;
    display: block;
    color: #ffff;
}

.mobile-bottom-menu li a.active {
    color: #fff;
}

.mobile-bottom-menu li a.active i {
    background: var(--sp-clr-theme);
    width: 45px;
    height: 45px;
    border: 4px solid var(--sp-clr-section);
    display: inline-flex;
    justify-content: center;
    align-items: center; 
    border-radius: 50%;
    margin-top: -12px;
    transform: translateY(-9px);
    color: #000;
}

.mobile-bottom-menu li a i {
    position: relative;
    z-index: 1;
    font-size: 20px;
}

.mobile-bottom-menu li a span {
    display: block;
    font-size: 12px;
    font-weight: 500;
}

/* sp_sidebar css end */
.sp_banner {
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

@media (max-width: 575px) {
    .sp_banner {
        padding-bottom: 7.8125rem;
    }
}

.sp_banner .left-img,
.sp_banner .right-img {
    bottom: 0;
    z-index: -1;
}

.sp_banner .left-img {
    left: 0;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 1650px) {
    .sp_banner .left-img img {
        max-height: 450px;
    }
}

@media (max-width: 1399px) {
    .sp_banner .left-img img {
        max-height: 400px;
    }
}

@media (max-width: 1199px) {
    .sp_banner .left-img img {
        max-height: 300px;
    }
}

@media (max-width: 991px) {
    .sp_banner .left-img img {
        max-height: 250px;
    }
}

@media (max-width: 767px) {
    .sp_banner .left-img img {
        max-height: 180px;
    }
}

@media (max-width: 575px) {
    .sp_banner .left-img img {
        max-height: 140px;
    }
}

.sp_banner .right-img {
    right: 30px;
    bottom: 110px;
    width: 445px;
    height: 445px;
}

@media (max-width: 1650px) {
    .sp_banner .right-img {
        width: 345px;
        height: 345px;
        bottom: 90px;
    }
}

@media (max-width: 1399px) {
    .sp_banner .right-img {
        width: 285px;
        height: 285px;
        bottom: 40px;
    }
}

@media (max-width: 1199px) {
    .sp_banner .right-img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 991px) {
    .sp_banner .right-img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767px) {
    .sp_banner .right-img {
        width: 120px;
        height: 120px;
        bottom: 30px;
    }
}

@media (max-width: 575px) {
    .sp_banner .right-img {
        width: 100px;
        height: 100px;
        bottom: 20px;
    }
}

.sp_banner .right-img .right-img-number {
    top: 50%;
    left: 50%;
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: spin 5s infinite linear;
    animation-timing-function: cubic-bezier(0.1, -0.6, 0.2, 0);
}

@media (max-width: 1650px) {
    .sp_banner .right-img .right-img-number {
        width: calc(100% - 35px);
        height: calc(100% - 35px);
    }
}

@media (max-width: 1199px) {
    .sp_banner .right-img .right-img-number {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
}

@media (max-width: 575px) {
    .sp_banner .right-img .right-img-number {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
    }
}

.sp_banner .right-img .right-img-spin {
    top: 50%;
    left: 50%;
    width: 175px;
    height: 175px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 1650px) {
    .sp_banner .right-img .right-img-spin {
        width: 125px;
        height: 125px;
    }
}

@media (max-width: 1399px) {
    .sp_banner .right-img .right-img-spin {
        width: 85px;
        height: 85px;
    }
}

@media (max-width: 1199px) {
    .sp_banner .right-img .right-img-spin {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 767px) {
    .sp_banner .right-img .right-img-spin {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .sp_banner .right-img .right-img-spin {
        width: 35px;
        height: 35px;
    }
}

.sp_banner .right-img .right-img-lock {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .sp_banner .right-img .right-img-lock {
        max-width: 30px;
    }
}

@media (max-width: 575px) {
    .sp_banner .right-img .right-img-lock {
        max-width: 20px;
    }
}

.sp_banner .right-img .right-img-el {
    top: -150px;
    left: 0;
}

@media (max-width: 1199px) {
    .sp_banner .right-img .right-img-el {
        top: -70px;
    }
}

@media (max-width: 575px) {
    .sp_banner .right-img .right-img-el {
        top: -40px;
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        -ms-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        -ms-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-ms-keyframes spin {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        -ms-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        -ms-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.sp_banner_content {
    padding: 15rem 0;
}

@media (max-width: 1399px) {
    .sp_banner_content {
        padding: 7.5rem 0;
    }
}

@media (max-width: 1199px) {
    .sp_banner_content {
        padding: 5rem 0;
    }
}

@media (max-width: 991px) {
    .sp_banner_content {
        padding: 3.75rem 0;
    }
}

.sp_banner_content .sp_banner_title {
    font-size: 5rem;
}

@media (max-width: 1399px) {
    .sp_banner_content .sp_banner_title {
        font-size: 3.625rem;
    }
}

@media (max-width: 1199px) {
    .sp_banner_content .sp_banner_title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .sp_banner_content .sp_banner_title {
        font-size: 2.25rem;
    }
}

.sp_banner_content .sp_banner_subtitle {
    font-size: 4rem;
}

@media (max-width: 1399px) {
    .sp_banner_content .sp_banner_subtitle {
        font-size: 3rem;
    }
}

@media (max-width: 1199px) {
    .sp_banner_content .sp_banner_subtitle {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .sp_banner_content .sp_banner_subtitle {
        font-size: 1.75rem;
    }
}

.breadcrum {
    padding: 3.125rem 0;
}

.breadcrum-title {
    font-size: 2.625rem;
    margin-bottom: 0.625rem;
}

@media (max-width: 1399px) {
    .breadcrum-title {
        font-size: 36px;
    }
}

@media (max-width: 1199px) {
    .breadcrum-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .breadcrum-title {
        font-size: 24px;
    }
}

.breadcrum .page-breadcrumb li {
    padding: 0 0.3125rem;
}

.breadcrum .page-breadcrumb li:last-child {
    padding-right: 0;
}

.breadcrum .page-breadcrumb li:last-child::after {
    display: none;
}

.breadcrum .page-breadcrumb li::after {
    content: "/";
    padding-left: 0.5rem;
}

.breadcrum .page-breadcrumb li a {
    font-weight: 500;
}

/* choose section css start */
.sp_choose_section {
    padding: 120px 0;
}

.sp_choose_item {
    align-items: flex-start;
    padding: 25px;
    background-color: var(--sp-clr-body);
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid transparent;
    height: 100%;
}

.sp_choose_item:hover {
    transform: translateY(-5px);
    border-color: var(--sp-clr-theme);
}

.sp_choose_item_icon {
    width: 65px;
    height: 65px;
    transition: all 0.3s;
}

.sp_choose_item:hover .sp_choose_item_icon {
    transform: scale(1.15, 1.15);
}

.sp_choose_item_icon::before {
    content: "";
    top: 0;
    left: 0;
    opacity: 0.15;
}

.sp_choose_item_icon i {
    top: 50%;
    left: 50%;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #2b2b2b;
    font-size: 1.5rem;
}

.sp_choose_item_content {
    width: calc(100% - 65px);
    padding-left: 1.25rem;
}

@media (min-width: 576px) and (max-width: 767px) {
    .sp_choose_item_content {
        width: 100%;
        padding-left: 0;
        margin-top: 0.9375rem;
    }
}

.sp_choose_item_content .title {
    font-size: 24px;
}


/* choose section css end */
/* about section css start */
.sp_about_section {
    padding: 120px 0;
    overflow: hidden;
}

.about_thumb {
    max-height: 450px;
    display: inline-block;
}

.sp_about_item_icon {
    width: 30px;
    height: 30px;
    color: #2b2b2b;
    margin-top: 0.1875rem;
}

@media (max-width: 575px) {
    .sp_about_item_icon {
        width: 25px;
        height: 25px;
    }
}

.sp_about_item_content {
    width: calc(100% - 30px);
    padding-left: 1.25rem;
}

@media (max-width: 575px) {
    .sp_about_item_content {
        width: calc(100% - 25px);
    }
}

.sp_about_item_title {
    font-size: 28px;
}

@media (max-width: 575px) {
    .sp_about_item_title {
        font-size: 1.25rem;
    }
}
/* about section css end */
/* wheel section css start */
.sp_wheel_section {
    padding: 120px 0;
}

.wheeler_thumb .wheeler_thumb_middle {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: 4px;
    margin-top: -1px;
    max-width: 261px;
    animation: spin 5s infinite linear;
}

@media (max-width: 1399px) {
    .wheeler_thumb .wheeler_thumb_middle {
        max-width: 220px;
    }
}

.wheeler_item {
    padding: 1.25rem;
    background-color: var(--sp-clr-body);
    box-shadow: -1px 2px 0 #f6b019;
}

@media (max-width: 1199px) {
    .wheeler_item {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .wheeler_item {
        padding: 0.9375rem;
    }
}

.wheeler_item:hover {
    box-shadow: 2px 5px 0 #f6b019;
}

.wheeler_item i {
    font-size: 1.625rem;
    margin-bottom: 1.5625rem;
}

@media (max-width: 575px) {
    .wheeler_item_title {
        font-size: 1.125rem;
    }
}

@media (max-width: 575px) {
    .wheeler_item p {
        font-size: 0.875rem;
    }
}
/* wheel section css end */
.sp_overview_section { 
    position: relative; 
    background-size: cover; 
    background-position: center; 
    z-index: 1;
} 

.sp_overview_section::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: calc(100% + 2px);
    width: 30%;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    background-color: var(--sp-clr-section);
    z-index: -1;
}

@media (max-width: 1399px) { 
    .sp_overview_section::after {
        width: 28%;
    }
    .sp_overview_section { 
        padding: 2rem 0; 
    } 
} 


.sp_overview_box .sp_overview_box_img {
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 150px;
}

@media (max-width: 1399px) {
    .sp_overview_box .sp_overview_box_img {
        max-width: 120px;
    }
}

@media (max-width: 575px) {
    .sp_overview_box .sp_overview_box_img {
        max-width: 100px;
    }
}

.sp_overview_item_wrapper div[class*="col-"] .sp_overview_item {
    position: relative;
}

.sp_overview_item_wrapper div[class*="col-"] .sp_overview_item::after {
    position: absolute; 
    content: ''; 
    top: 0; 
    right: 0; 
    width: 1px; 
    height: 100%; 
    opacity: 0.25;
} 

.sp_overview_item_wrapper div[class*="col-"]:nth-child(odd) .sp_overview_item::after {
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.137));
}

.sp_overview_item_wrapper div[class*="col-"]:nth-child(even) .sp_overview_item::after {
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0.137));
}

.sp_overview_item_wrapper div[class*="col-"]:last-child .sp_overview_item::after {
    display: none;
}

.sp_overview_item {
    text-align: center;
    padding: 3rem 0;
}

.sp_overview_item .title {
    color: var(--sp-clr-theme);
    font-size: 32px; 
}

@media (max-width: 1399px) {
    .sp_overview_item {
        padding: 0;
    }

    .sp_overview_item .title {
        font-size: 26px;
    }
}

.sp_user_box {
    padding: 0.3125rem;
}

.sp_user_box_thumb {
    height: 100px;
}

.sp_user_box_thumb img {
    object-fit: cover;
    -o-object-fit: cover;
    object-position: top;
}

.sp_user_box_content {
    padding: 0.3125rem;
}

.sp_user_box_content p {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

@media (max-width: 1399px) {
    .sp_user_box_content p {
        font-size: 0.75rem;
    }
}

.sp_user_box_content h5 {
    font-size: 1rem;
}

.sp_user_slider .slick-list {
    margin: 0 -0.4375rem;
}

.sp_user_slider .sp_user_slide {
    padding: 0 0.4375rem;
}

.sp_plan_section {
    padding: 120px 0;
}

.sp_plan_section ~ .how_work_section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sp_plan {
    height: 100%;
    display: flex;
    flex-flow: column;
    transition: all 0.3s;
    background-color: var(--sp-clr-theme-dark);
}

.sp_plan:hover {
    transform: translateY(-5px);
}

.sp_plan_top {
    padding: 5rem 1.25rem 1.25rem 1.25rem;
}

.sp_plan_name {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 0.625rem 1.25rem 1.875rem 1.25rem;
    clip-path: polygon(100% 0, 100% 100%, 50% 75%, 0 100%, 0 0);
    color: #2b2b2b;
    font-size: 1.25rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 1399px) {
    .sp_plan_name {
        font-size: 1.125rem;
        padding: 0.625rem 1.25rem 1.5625rem 1.25rem;
    }
}

.sp_plan_top h3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp_plan_top img {
    max-height: 30px;
    margin-right: 10px;
}

.sp_plan_body {
    padding: 1.25rem 0.625rem;
    flex-grow: 1;
    text-align: left;
}

.sp_plan_body p {
    font-size: 0.875rem;
}

.sp_plan_footer {
    padding: 0 0.625rem 1.25rem 0.625rem;
}

.sp_plan_features {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 5px 15px;
}

.sp_plan_features li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.sp_plan_features li p {
    width: 100%;
}

.sp_plan_features li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

/* how work section css start */
.how_work_section {
    padding: 120px 0;
}

.how_work_item {
    padding: 1.25rem 4.0625rem 1.25rem 4.375rem;
}

@media (max-width: 1199px) {
    .how_work_item {
        padding: 1.25rem;
    }
}

.how_work_item:hover::after {
    top: 0;
    left: 0;
}

.how_work_item::before {
    content: "";
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%, 12% 50%);
    z-index: -1;
}

@media (max-width: 1199px) {
    .how_work_item::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 50%);
    }
}

.how_work_item::after {
    content: "";
    top: 3px;
    left: 6px;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%, 12% 50%);
    z-index: -2;
}

@media (max-width: 1199px) {
    .how_work_item::after {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 50%);
    }
}
/* how work section css end */
.cta_wrapper {
    padding: 2.5rem;
}

@media (max-width: 575px) {
    .cta_wrapper {
        padding: 1.5625rem;
    }
}
/* referral section css start */
.sp_refferal_section {
    padding: 120px 0;
}

.sp_referral_wrapper div[class*=col-]:last-child .sp_referral_item::before, .sp_referral_wrapper div[class*=col-]:last-child .sp_referral_item::after {
    display: none;
}

@media (min-width: 576px) and (max-width: 1199px) {
    .sp_referral_wrapper div[class*=col-]:nth-child(3) .sp_referral_item::before, .sp_referral_wrapper div[class*=col-]:nth-child(3) .sp_referral_item::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .sp_referral_wrapper div[class*=col-]:nth-child(2n+2) .sp_referral_item::before, .sp_referral_wrapper div[class*=col-]:nth-child(2n+2) .sp_referral_item::after {
        display: none;
    }
}

.sp_referral_item {
    z-index: 1;
}

.sp_referral_item::before {
    content: "";
    top: 33%;
    width: 15px;
    height: 15px;
    right: -38px;
    z-index: -1;
}

@media (max-width: 1399px) {
    .sp_referral_item::before {
        right: -45px;
    }
}

.sp_referral_item::after {
    content: "";
    top: 37%;
    width: 35px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.25);
    right: -37px;
    z-index: -2;
}

@media (max-width: 1399px) {
    .sp_referral_item::after {
        width: 45px;
    }
}

.sp_referral_item .referral_circle {
    width: 150px;
    height: 150px;
    display: inline-flex;
    flex-flow: column;
    margin-bottom: 0.9375rem;
    z-index: 1;
    transition: all 0.3s;
}

.sp_referral_item:hover .referral_circle {
    transform: scale(1.05);
}

@media (max-width: 575px) {
    .sp_referral_item .referral_circle {
        width: 90px;
        height: 90px;
    }
}

.sp_referral_item .referral_circle::before {
    content: "";
    top: 0;
    left: 0;
    border: 3px solid var(--sp-clr-theme);
    background-color: red;
    z-index: -1;
    transition: all 0.3s;
}

.sp_referral_item .referral_circle::after {
    content: "";
    top: 50%;
    right: -16px;
    width: 28px;
    height: 52px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: var(--sp-clr-theme);
    clip-path: polygon(0 0, 70% 0%, 100% 50%, 70% 100%, 0 100%, 0% 50%);
    z-index: -2;
}

.sp_referral_item .referral_circle span {
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 1;
    transition: all 0.3s;
}

.sp_referral_item:hover .referral_circle span {
    color: var(--sp-clr-theme);
}

@media (max-width: 1399px) {
    .sp_referral_item .referral_circle span {
        font-size: 2rem;
    }
}
/* referral section css end */
/* transaction section css start */
.sp_transaction_section {
    padding: 120px 0;
}

.single_transaction {
    padding: 0.9375rem;
    background-color: var(--sp-clr-body);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.single_transaction:hover {
    border-color: var(--sp-clr-theme);
}

.single_transaction .thumb {
    width: 70px;
    height: 70px;
}

.single_transaction .thumb img {
    object-fit: cover;
    -o-object-fit: cover;
    object-position: top;
    -o-object-position: top;
}

.single_transaction .content {
    width: calc(100% - 70px);
    padding-left: 0.9375rem;
}

.sp_transaction_slider .slick-list {
    margin: -0.625rem;
}

.sp_transaction_slider .sp_transaction_slide {
    padding: 0.625rem;
}

/* transaction section css end */
/* testimonial section css start */
.sp_testimonial_section {
    background-color: var(--sp-clr-section);
    padding: 120px 0;
    overflow: hidden;
}

.sp_testimonial_wrapper_icon {
    top: -40px;
    left: 50px;
    width: 80px;
    height: 80px;
}

@media (max-width: 991px) {
    .sp_testimonial_wrapper_icon {
        top: -30px;
        left: 50%;
        width: 60px;
        height: 60px;
        margin-left: -30px;
        padding: 10px;
    }
}

.sp_testimonial_item {
    padding: 1.5625rem;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.sp_testimonial_item:hover {
    border-color: var(--sp-clr-theme);
}

.sp_testimonial_item i {
    bottom: 35px;
    right: 30px;
    color: #fff;
    font-size: 2.625rem;
    line-height: 1;
    opacity: 0.1;
    transition: all 0.3s;
}

.sp_testimonial_item:hover i {
    opacity: 1;
    color: var(--sp-clr-theme);
}

.sp_testimonial_item .sp_client {
    margin-top: 1.5625rem;
}

.sp_testimonial_item .sp_client_thumb {
    width: 60px;
    height: 60px;
}

.sp_testimonial_item .sp_client_content {
    padding-left: 0.9375rem;
}

.testimonial_slider .slick-list {
    margin: 0 -0.9375rem;
}

.testimonial_slider .testimonial_single {
    padding: 0 0.9375rem;
}

.testimonial_slider_nav button {
    font-size: 1.375rem;
}

.testimonial_slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonial_slider .slick-dots li {
    margin: 0 10px;
}

.testimonial_slider .slick-dots li button {
    font-size: 0; 
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: 3px;
    transition: all 0.3s;
}

.testimonial_slider .slick-dots li.slick-active button {
    background-color: var(--sp-clr-theme);
    outline-color: var(--sp-clr-theme);
    outline-offset: 5px;
}

/* testimonial section css end */
/* faq section css start */
.sp_faq_section {
    padding: 120px 0;
}

.sp_subscribe_wrapper {
    padding: 2.9375rem 2.5rem;
    background-color: var(--sp-clr-body);
}

@media (max-width: 575px) {
    .sp_subscribe_wrapper {
        padding: 2.1875rem 1.5625rem;
    }
}

.sp_subscribe_form .sp_form_field {
    padding-right: 50px;
}

.sp_subscribe_form button {
    top: 5px;
    right: 5px;
    width: 45px;
    height: 40px;
    color: #2b2b2b;
}

/* faq section css end */
/* blog section css start */
.sp_blog_section {
    padding: 120px 0;
}

@media (max-width: 1199px) {
    .blog-post {
        display: block;
    }
}

.blog-post:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blog-post .thumb {
    width: 230px;
}

@media (max-width: 1199px) {
    .blog-post .thumb {
        width: 100%;
        height: 220px;
    }
}

.blog-post .thumb img {
    transition: all 0.3s;
}

.blog-post:hover .thumb img {
    transform: rotate(3deg) scale(1.1, 1.1);
}

.blog-post .content {
    width: calc(100% - 230px);
    padding: 1.5625rem;
}

@media (max-width: 1199px) {
    .blog-post .content {
        width: 100%;
    }
}

.blog-post .content .title {
    font-size: 1.5rem;
}

@media (max-width: 575px) {
    .blog-post .content .title {
        font-size: 1.375rem;
    }
}

.blog-post .content .title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
}

.blog-post:hover .content .title a {
    color: var(--sp-clr-theme);
}

.blog-post .content p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 0.9375rem;
    margin-top: 0.9375rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post .content .blog-meta {
    padding-top: 0.9375rem;
    margin-top: 0.9375rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-meta {
    margin: -0.1875rem -0.625rem;
}

.blog-meta li {
    padding: 0.1875rem 0.625rem;
}

/* blog section css end */
/* blog details section css start */
.blog-details-img {
    height: 500px;
}

.blog-details-content {
    margin-top: 1.875rem;
}

.blog-details-content .blog-meta {
    margin-top: 0.625rem;
}

.blog-widget {
    padding: 1.5625rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: sticky;
    top: 100px;
}

.blog-widget .blog-widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.5625rem;
}

.short-post + .short-post {
    margin-top: 1.25rem;
}

.short-post .thumb {
    width: 85px;
    height: 75px;
}

.short-post .thumb::before {
    content: "";
    top: 0;
    left: 0;
    opacity: 0.65;
}

.short-post .thumb a {
    top: 0;
    left: 0;
}

.short-post .content {
    width: calc(100% - 85px);
    padding-left: 0.9375rem;
}

.short-post .content .title {
    font-size: 18px;
}

.short-post .content .title a {
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.short-post .content .blog-meta {
    margin-top: 3px;
}

.short-post .content .blog-meta li {
    font-size: 14px;
}

.short-post.next-post .content {
    order: 1;
}

.post-share span {
    font-weight: 500;
    margin-right: 0.625rem;
}

.post-share ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.post-share ul li {
    padding: 3px 7px;
}

.post-share a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.post-share a:hover {
    background-color: var(--sp-clr-theme);
    color: #000;
    border-color: var(--sp-clr-theme);
}

.post-share a span {
    margin: 0;
}

/* blog details section css end */
/* contact section css start */
@media (max-width: 991px) {
    .contact-item {
        justify-content: center;
        text-align: center;
    }
}

.contact-item .icon {
    width: 45px;
    height: 45px;
    color: #2b2b2b;
    font-size: 1.5rem;
}

.contact-item .content {
    width: calc(100% - 45px);
    padding-left: 1.25rem;
    margin-top: -0.375rem;
}

@media (max-width: 991px) {
    .contact-item .content {
        width: 100%;
        padding-left: 0;
        margin-top: 0.9375rem;
    }
}

.contact-item .content .title {
    margin-bottom: 0.3125rem;
    font-size: 1.25rem;
}

/* contact section css end */
/* user header css start */
.user-header {
    position: fixed;
    top: 0;
    left: 0;
    justify-content: space-between;
    padding: 0.625rem 1.875rem;
    background: var(--sp-clr-body);
    z-index: 2;
}

.user-header .site-logo {
    opacity: 0;
    visibility: hidden;
}

.user-header .site-logo img {
    max-height: 45px;
}

@media (max-width: 1199px) {
    .user-header .site-logo {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 575px) {
    .user-header .site-logo img {
        max-height: 35px;
    } 
}

.user-dropdown .user-btn {
    background-color: transparent;
}

.user-dropdown .user-btn::after {
    border-top-color: #fff;
}

.user-dropdown .user-btn img {
    width: 35px;
    height: 35px;
    margin-right: 0.375rem;
}

@media (max-width: 575px) {
    .user-dropdown .user-btn img {
        margin-right: 0;
    }
    .user-dropdown .user-btn span {
        display: none;
    }
}

.sp_header_menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.sp_header_menu .dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sp_header_menu .dropdown-menu li .dropdown-item {
    font-size: 0.9375rem;
    padding: 5px 20px;
    justify-content: flex-start;
    align-items: flex-start;
}

.sp_header_menu .dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1199px) {
    .sp_header_menu .dropdown-menu {
        position: static !important;
        display: none;
        opacity: 1;
        visibility: visible;
        background-color: var(--sp-clr-section);
        border-radius: 0;
        border: none;
    }

    .sp_header_menu .dropdown-menu.show {
        display: block;
        transform: none !important;
    }

    .sp_header_menu .dropdown-menu li .dropdown-item {
        padding-left: 40px;
    }
}

/* user header css end */
/* user sidebar css start */
.user-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100vh;
    z-index: 3;
    background: var(--sp-clr-body);
}

.user-sidebar.active {
    left: 0;
}

@media (max-width: 1199px) {
    .user-sidebar {
        left: -100%;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 90px;
    }
}

.user-sidebar .site-logo {
    padding: 0.625rem 1.25rem;
    margin-bottom: 1.875rem;
}

.user-sidebar .site-logo img {
    max-width: 215px;
    max-height: 45px;
}

.sp_sidebar_menu {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

@media (max-width: 1199px) {
    .sp_sidebar_menu {
        max-height: calc(100vh - 180px);
    }
}

.sp_sidebar_menu .menu-caption {
    font-size: 0.875rem;
    color: #9d9d9d;
    padding: 0.375rem 1.25rem;
    font-weight: 500;
}

.sp_sidebar_menu .menu-caption.border-top {
    border-top-color: rgba(255, 255, 255, 0.15) !important;
    padding-top: 1.25rem;
    margin-top: 0.9375rem;
}

.sp_sidebar_menu li a {
    color: #c0c0c0;
    padding: 0.625rem 1.5625rem;
    border-left: 3px solid transparent;
    font-size: 0.9375rem;
}

.sp_sidebar_menu li a i {
    font-size: 1.1875rem;
}

.sp_sidebar_menu li a.active {
    background-color: #181733;
    border-left-color: #f6b019;
}

.sp_sidebar_menu {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.05) transparent;
}

.sp_sidebar_menu::-webkit-scrollbar {
    width: 12px;
}

.sp_sidebar_menu::-webkit-scrollbar-track {
    background: transparent;
}

.sp_sidebar_menu::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 3px solid transparent;
}

.menu-dropdown > a::after {
    content: "\f105";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 11px;
    right: 12px;
}

.menu-dropdown ul {
    padding-left: 2.1875rem;
    display: none;
}


/* account css start */
.sp_account_wrapper {
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--sp-clr-body);
}

@media (max-width: 575px) {
    .sp_account_wrapper {
        padding: 20px;
    }
}

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

.or-text {
    text-align: center;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.or-text::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--sp-clr-section);
    z-index: -1;
}

.or-text span {
    padding: 3px 15px;
    background-color: var(--sp-clr-body);
}

.other-login-btn {
    width: calc(50% - 15px);
    padding: 12px 20px;
    text-align: center;
    border-radius: 5px;
}

.other-login-btn i {
    margin-right: 6px;
}

.other-login-btn.facebook-btn {
    background-color: #3F62A9;
}

.other-login-btn.google-btn {
    background-color: #DE4032;
}

@media (max-width: 575px) {
    .other-login-btn {
        width: 100%;
    }
    .other-login-btn + .other-login-btn {
        margin-top: 15px;
    }
}

/* account css end */


/* dashboard main css start */
.dashbaord-main {
    padding: 6.25rem 1.875rem 1.875rem 18.75rem;
    min-height: 100vh;
    background-size: cover;
}

@media (max-width: 1199px) {
    .dashbaord-main {
        padding: 5.25rem 1.25rem 6.25rem 1.25rem;
    }
}


.dashboard-top {
    margin-bottom: 2.5rem;
}

.d-card {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.d-card:hover {
    border-color: #f6b019;
}

.d-card i {
    bottom: -18px;
    right: -18px;
    font-size: 90px;
    line-height: 1;
    opacity: 0.15;
}

.d-card .d-card-amount {
    margin-top: 0.625rem;
    font-size: 1.25rem;
}

@media (max-width: 1550px) {
    .d-card .d-card-amount {
        font-size: 1.5rem;
    }
}


@media (max-width: 1399px) {
    .d-card {
        padding: 10px 15px;
    }
    .d-card .d-card-caption  {
        font-size: 14px;
    }
    .d-card .d-card-amount {
        font-size: 18px;
    }
}


.mobile-card-slider .slick-list {
    margin-left: -10px;
    padding-left: 0 !important;
  }
  
  .mobile-card-slider .d-card-slide {
    padding: 0 10px;
  }
  
  .mobile-card-slider::before,
  .mobile-card-slider::after {
    position: absolute;
    content: '';
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 1;
  }
  
  .mobile-card-slider::before {
    left: -2px;
  }
  
  .mobile-card-slider::after {
    right: -2px;
  }

.quick-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: -0.9375rem;
}

.single-link {
    text-align: center;
    width: 33.3333333333%;
    padding: 0.9375rem;
}

.single-link a {
    top: 0;
    left: 0;
}

.single-link .icon {
    width: 65px;
    height: 65px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--sp-clr-body);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.single-link i {
    background: linear-gradient(var(--sp-clr-theme), #fff);
    background: -webkit-linear-gradient(var(--sp-clr-theme), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
}


@media (max-width: 1399px) {
    .single-link .icon {
        width: 50px;
        height: 50px;
    }
    .single-link i {
        font-size: 22px;
    }

    .single-link p {
        font-size: 14px;
    }
}

.single-link p {
    margin-top: 0.625rem;
}

.copy {
    cursor: pointer;
}

.recent_transaction_list {
    max-height: 266px;
    overflow-y: auto;
    padding-right: 15px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.recent_transaction_list::-webkit-scrollbar {
    width: 10px;
}

.recent_transaction_list::-webkit-scrollbar-track {
    background: transparent;
}

.recent_transaction_list::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 5px solid transparent;
}

.recent_transaction_list li {
    padding: 0.625rem 0;
    align-items: flex-end;
    justify-content: space-between;
}

.referral-tree-wrapper {
    padding: 1.5625rem;
}

@media (max-width: 575px) {
    .referral-tree-wrapper {
        padding: 0.9375rem;
    }
}

.referral-tree {
    margin-top: 1.25rem;
}

.main-tree-holder {
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.main-tree-holder .thumb {
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #ddd;
}

.main-tree-holder .name {
    font-size: 0.875rem;
    margin-top: 0.3125rem;
    font-weight: 600;
}

.main-tree-holder .name::before {
    content: "";
    bottom: -30px;
    left: 50%;
    width: 1px;
    height: 30px;
    background-color: rgba(219, 219, 219, 0.4901960784);
}

.referral-body {
    padding: 0.3125rem;
    border: 1px solid rgba(219, 219, 219, 0.4901960784);
    margin-top: 1.875rem;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd #fff;
}

.referral-body::-webkit-scrollbar {
    width: 12px;
}

.referral-body::-webkit-scrollbar-track {
    background: #fff;
}

.referral-body::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 20px;
    border: 3px solid #fff;
}

.referral-box {
    display: inline-block;
}

.referral-box.lev-1 {
    display: flex;
    flex-direction: column;
}

.referral-box.lev-2 {
    margin-left: 220px;
}

.referral-single {
    margin-bottom: 1.25rem;
}

.referral-single:hover > .referral-sub-tree .referral-single-item {
    border-color: #f6b019;
}

.referral-single .referral-single-item {
    width: 190px;
    padding: 0.3125rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 6px;
    background-color: var(--sp-clr-body);
}

.referral-single .referral-single-item .thumb {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.referral-single .referral-single-item .content {
    width: calc(100% - 40px);
    padding-left: 0.9375rem;
    text-align: left;
}

.referral-single .referral-single-item .content .name {
    font-size: 0.875rem;
    font-weight: 600;
}

.referral-single .referral-single-item .content .plan-name {
    font-size: 0.875rem;
}

.referral-single .referral-sub-tree {
    padding-left: 1.875rem;
}

.referral-single .referral-sub-tree::before {
    content: "";
    top: -7px;
    left: 20px;
    height: calc(100% + 5px);
    width: 1px;
    background-color: #a5a5a5;
}

.referral-single .referral-sub-tree .referral-single {
    margin-bottom: 0.625rem;
}

.referral-single .referral-sub-tree .referral-single::before {
    content: "";
    top: 26px;
    left: -10px;
    width: 16px;
    height: 1px;
    background-color: #a5a5a5;
}

.ticket-reply-area .single-reply {
    padding: 20px;
    background-color: var(--sp-clr-body);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.apexcharts-menu {
    background-color: var(--sp-clr-section) !important;
    border: 1px solid rgba(255,255,255, 0.15) !important;
}

.apexcharts-theme-light .apexcharts-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* dashboard main css end */

/*
============================== 
Cookie css 
============================== 
*/
.cookies-card {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 9;
    justify-content: center;
    background-color: var(--sp-clr-body);
    border-radius: 8px;
    box-shadow: 0 0 15px #00000029;
    width: 420px;
    max-width: calc(100% - 30px);
}

.cookies-card-inner {
    padding: 1.875rem;
}

@media (max-width: 575px) {
    .cookies-card-inner {
        padding: 1.25rem;
    }
}

.cookies-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--sp-clr-theme);
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__icon i {
    color: #fff;
}

.cookies-card__content {
    width: 100%;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.cookies-card__btn {
    display: flex;
    width: 100%;
}
.cookies-card__btn .sp_theme_btn {
    color: #000 !important;
    border-color: var(--sp-clr-theme) !important;
}

.cookies-btn {
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid #848484;
    margin: 3px 5px;
    display: inline-block;
    font-size: 14px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: calc(50% - 12px);
    text-align: center;
    transition: all 0.3s;
}

.cookies-btn.js-cookie-consent-agree {
    background-color: var(--sp-clr-theme-dark);
    color: #fff;
    border-color: var(--sp-clr-theme-dark);
}

.cookies-btn:hover {
    background-color: var(--sp-clr-theme);
    color: #fff;
    border-color: var(--sp-clr-theme);
    color: #000;
}

.image-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line {
    line-height: 1rem;
}
/* cookie css end */

/* responsive css start */
@media (max-width: 1399px) {
    .sp_about_section,
    .sp_wheel_section,
    .sp_trading_section,
    .sp_choose_section,
    .sp_plan_section,
    .how_work_section,
    .sp_transaction_section,
    .sp_refferal_section,
    .sp_faq_section,
    .sp_testimonial_section,
    .sp_blog_section {
        padding: 100px 0;
    }

    .sp_referral_item .referral_circle {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 1199px) {
    .sp_about_section,
    .sp_wheel_section,
    .sp_trading_section,
    .sp_choose_section,
    .sp_plan_section,
    .how_work_section,
    .sp_transaction_section,
    .sp_refferal_section,
    .sp_faq_section,
    .sp_testimonial_section,
    .sp_blog_section {
        padding: 80px 0;
    }

    .sp_choose_item {
        justify-content: center;
        text-align: center;
    }
    .sp_choose_item_content {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .sp_about_section,
    .sp_wheel_section,
    .sp_trading_section,
    .sp_choose_section,
    .sp_plan_section,
    .how_work_section,
    .sp_transaction_section,
    .sp_refferal_section,
    .sp_faq_section,
    .sp_testimonial_section,
    .sp_blog_section {
        padding: 70px 0;
    }

    .sp_block_title {
        font-size: 32px;
    }

    .sp_overview_item_wrapper div[class*="col-"]:nth-child(2) .sp_overview_item::after {
        display: none;
    }

    .sp_overview_item .title {
        font-size: 24px;
    }

    .sp_accordion .accordion-item .accordion-header .accordion-button {
        font-size: 18px;
    }

    .footer_item_wrapper div[class*="col-"] .sp_footer_item {
        padding-left: 0;
    }

    .sp_footer_item_title {
        margin-bottom: 15px;
    }

    .sp_footer_main {
        padding: 80px 0;
    }
}

@media (max-width: 575px) {
    .sp_about_section,
    .sp_wheel_section,
    .sp_trading_section,
    .sp_choose_section,
    .sp_plan_section,
    .how_work_section,
    .sp_transaction_section,
    .sp_refferal_section,
    .sp_faq_section,
    .sp_testimonial_section,
    .sp_blog_section {
        padding: 60px 0;
    }

    .sp_overview_item_wrapper div[class*="col-"] .sp_overview_item::after {
        display: none;
    }
    .sp_overview_item .title {
        font-size: 20px;
    }
    .sp_overview_item p {
        font-size: 14px;
    }

    .sp_block_title {
        font-size: 28px;
    }

    .sp_referral_item .referral_circle {
        width: 100px;
        height: 100px;
    }

    .sp_referral_item::before {
        right: -37px;
        top: 30%;
    }

    .sp_referral_item::after {
        width: 32px;
        top: 34%;
    }

    .sp_footer_main {
        padding: 60px 0;
    }

    .sp_accordion .accordion-item .accordion-header .accordion-button {
        font-size: 16px;
    }

    .footer_item_wrapper div[class*="col-"]:first-child::after {
        display: none;
    }

    .sp_footer_logo img {
        max-width: 200px;
        max-height: 55px;
    }
}
/* responsive css end */