/* .home-banner::before {
            position: absolute;
            content: '';
            bottom: -80px;
            left: 0;
            width: 100%;
            height: 60%;
            background-image: url({{asset('assets/img/coins-img-new.png')}});
            background-size: contain;
            opacity: 0.5;
            background-repeat: no-repeat;
            background-position: right;
            z-index: -1;
        } */



@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --heading-1: 6.5rem;
    --heading-2: 3.5rem;
    --heading-3: 4.2rem;
    --heading-4: 2.4rem;
    --heading-5: 1.9rem;
    --heading-6: 1.8rem;
    --body-font-sm: 1.5rem;
    --theme-color: #ffc65a;
    /* --theme-color: #d1b98b; */
    --theme-bg-blue: #0b93fd;
    --secondory-color: #022138;
    --default-font-family: "Montserrat", sans-serif;
    --secondory-font-family: "Inter", sans-serif;
    --body-font-medium: 1.8rem;
}

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

*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* font-size: 62.5%; */
    font-size: 10px;
}

body {
    font-family: var(--default-font-family);
    font-weight: 500;
    font-size: var(--body-font-medium);
    font-style: normal;
    line-height: normal;
    color: #fff;
    background-color: #000;
}

button {
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
}

img {
    max-width: 100%;
}

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

a {
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
    cursor: pointer;
}

.pt-10 {
    padding-top: 1rem;
}

.pt-20 {
    padding-top: 2rem;
}

.pt-30 {
    padding-top: 3rem;
}

.pt-40 {
    padding-top: 4rem;
}

.pt-50 {
    padding-top: 5rem;
}

.pt-60 {
    padding-top: 6rem;
}

.pt-70 {
    padding-top: 7rem;
}

.pt-80 {
    padding-top: 8rem;
}

.pt-90 {
    padding-top: 9rem;
}

.pt-100 {
    padding-top: 10rem;
}

.pt-110 {
    padding-top: 11rem;
}

.pb-10 {
    padding-bottom: 1rem;
}

.pb-20 {
    padding-bottom: 2rem;
}

.pb-30 {
    padding-bottom: 3rem;
}

.pb-40 {
    padding-bottom: 4rem;
}

.pb-50 {
    padding-bottom: 5rem;
}

.pb-60 {
    padding-bottom: 6rem;
}

.pb-70 {
    padding-bottom: 7rem;
}

.pb-80 {
    padding-bottom: 8rem;
}

.pb-90 {
    padding-bottom: 9rem;
}

.pb-100 {
    padding-bottom: 10rem;
}

.pb-110 {
    padding-bottom: 11rem;
}

.ptb-10 {
    padding: 10px 0;
}

.ptb-20 {
    padding: 20px 0;
}

.ptb-30 {
    padding: 30px 0;
}

.ptb-40 {
    padding: 40px 0;
}

.ptb-50 {
    padding: 50px 0;
}

.ptb-60 {
    padding: 60px 0;
}

.ptb-70 {
    padding: 7rem 0;
}

.ptb-80 {
    padding: 8rem 0;
}

.ptb-90 {
    padding: 9rem 0;
}

.ptb-100 {
    padding: 10rem 0;
}

.ptb-110 {
    padding: 11rem 0;
}

.mt-10 {
    margin-top: 1rem;
}

.mt-20 {
    margin-top: 2rem;
}

.mt-30 {
    margin-top: 3rem;
}

.mt-40 {
    margin-top: 4rem;
}

.mt-50 {
    margin-top: 5rem;
}

.mt-60 {
    margin-top: 6rem;
}

.mb-10 {
    margin-bottom: 1rem;
}

.mb-20 {
    margin-bottom: 2rem;
}

.mb-30 {
    margin-bottom: 3rem;
}

.mb-40 {
    margin-bottom: 4rem;
}

.mb-50 {
    margin-bottom: 5rem;
}

.mb-60 {
    margin-bottom: 6rem;
}

.mtb-10 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mtb-20 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mtb-30 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mtb-40 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.mtb-50 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.mtb-60 {
    margin-top: 6rem;
    margin-bottom: 3rem;
}

.header {
    background: #0000;
    padding: 2rem 0;
    position: absolute;
    z-index: 9;
    width: 100%;
}

.default-btn {
    padding: 1.5rem 1.8rem;
    color: #333333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.4px;
    border-radius: 1.2rem;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-transform: uppercase;
}

.default-btn.transparent-bg {
    color: #181818;
}

.theme-bg-btn {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
}

.theme-bg-btn:hover {
    background: #0000;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}


.theme-bg-secondory {
    background: var(--secondory-color);
    border: 1px solid var(--secondory-color);
}

.theme-bg-secondory:hover {
    background: #0000;
    border: 1px solid var(--secondory-color);
    color: var(--secondory-color);
}

.theme-color {
    color: var(--theme-color)
}

.theme-color-blue {
    color: var(--theme-bg-blue);
}

.theme-bg-blue {
    background-color: var(--theme-bg-blue);
}

.bg-black {
    background-color: #000;
}

.bg-met {
    background-color: #1c1c1c;
}

.secondory-color {
    color: var(--secondory-color)
}

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

.container {
    max-width: 1480px;
    padding: 0 15px;
    margin: auto;
    width: 100%;
}

.theme-bg {
    background-color: var(--theme-color);
}

.home-banner {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-image: url('../img/home-banner.png');
    background-repeat: no-repeat;
    background-position: right;
    height: 100vh;
    background-size: cover;
}

.home-banner .container {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.banner-fb-img {
    max-width: 30rem;
    position: absolute;
    bottom: 10%;
    right: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.banner-fb-img img {
    display: block;
}

/* .home-banner::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: url(" {{asset('assets/img/coins-img-new.png')}}
        " );
 background-size: contain;
        opacity: 0.5;
        background-repeat: no-repeat;
        background-position: right;
        z-index: -1;
        }

        */
.header-btn {
    display: flex;
    gap: 2rem;
}

.home-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-left {
    width: 60%;
}

.banner-content p {
    font-size: 3rem;
    margin: 1rem 0 5rem;
}

.banner-right {
    width: 45%;
    filter: drop-shadow(2px 13px 22px #0000007e);
    position: relative;
}

@keyframes floater {
    0% {
        transform: translateY(-10%);
        transition: ease 0.5s;
    }

    50% {
        transform: translateY(10%);
        transition: ease 0.5s;
    }
}

.floating-img {
    transform: translateY(-10%);
    animation: floater 3s infinite;
    transition: ease 0.5s;
    position: absolute;
    top: 7%;
    z-index: -1;
    max-width: 183px;
    left: 13%;
    opacity: .5;
}

h1 {

    font-size: var(--heading-1);
    color: #fff;
    font-family: var(--default-font-family);
    font-weight: 600;
    line-height: normal;
    vertical-align: middle;
    font-weight: 500;

}

h2 {
    font-size: var(--heading-2);
}

h3 {
    font-size: var(--heading-3);
    font-weight: 500;
}

h4 {
    font-size: var(--heading-4);
}

/* .how-it-works {
    position: relative;
    background: url(" {{asset('assets/img/horse-bet.jpg')}}
        ") center / cover no-repeat;
 z-index: 9;
        }

        */

.how-it-works {
    position: relative;
    background: url('../img/soccer-field.jpg') center / cover no-repeat;
    z-index: 9;
}

.how-it-works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 44%);
    z-index: -1;
}

.how-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.how-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-subtitle {
    font-size: 20px;
}

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: #1c1c1c;
    border-radius: 20px;
    padding: 5rem 3rem 4rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.step-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    line-height: 1.6;
    color: #fff;
    margin-bottom: 10px;
    opacity: 0.8;
}

.step-number {
    width: 60px;
    height: 60px;
    border: 6px solid #1c1c1c;
    border-radius: 50%;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}




.faq-section {
    background: #000;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}



.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    border-radius: 1.4rem;
    overflow: hidden;
    height: fit-content;
    margin-bottom: 2rem;
    background: #1c1c1c;
}

.faq-item:last-child {
    margin-bottom: 0;
}



/* Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2.2rem 2.6rem;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

/* Icon */
.faq-icon {
    width: 28px;
    height: 28px;
    border: 2px solid var(--theme-bg-blue);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--theme-bg-blue);
    transition: 0.3s;
}

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

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 2.4rem;
    color: #fff;
    opacity: 0.8;
}

/* Active */
.faq-item.active .faq-answer {
    padding: 1.2rem 2.4rem 1.4rem;
}

.faq-item.active .faq-icon::after {
    opacity: 0;
}

/* CTA */
.faq-cta {
    display: block;
    width: fit-content;
    margin: 60px auto 0;
    background: #2f5d38;
    color: #fff;
    padding: 18px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}


.text-lg {
    font-size: 5rem;
}


.faq-item.active .faq-question {
    border-color: #ffffff;
    background: var(--theme-bg-blue);
}

.faq-item.active .faq-question .faq-icon {
    border-color: #ffffff;
}

.faq-item.active .faq-question .faq-icon::before,
.faq-item.active .faq-question .faq-icon::after {
    background: #ffffff;
}

.cta-section {
    /* text-align: center; */
}

.cta-card {
    background: #000;
    border-radius: 2.4rem;
    padding: 6rem 4rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Avatars */
.cta-avatars {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-avatars img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid var(--theme-color);
    object-fit: cover;
}


.cta-title {
    font-size: 3.6rem;
    font-weight: 600;
}

.cta-icon {
    font-size: 3.2rem;
}

.card-title p {
    color: #fff;
}

.cta-icon {
    max-width: 11rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    max-width: 20.2rem;
}

.footer {
    background: #000;
    padding: 2rem 0;
}

/* ======Referral Program======= */
.refferal-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.refferal-card-inner {
    width: 80%;
    padding: 1.8rem 0px;
    background: #1c1c1c;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.refferal-card-inner .default-btn {
    width: calc(100% - 32px);
}

.lg-display-none {
    display: none;
}

.steps-wrapper.refferal-program-wrapper {
    margin-bottom: 0;
}

.refferal-program {
    position: relative;
    background: url("../img/refferal-bg.jpg") center / cover no-repeat;
    z-index: 9;
    height: 100vh;
}

.refferal-program::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 44%);
    z-index: -1;
}

.refferal-program .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    gap: 40px;
}

nav.navbar {
    justify-content: flex-end;
}

.banner-btn {
    background: #1c1c1c;
    border-radius: 20px;
    padding: 5rem 3rem 4rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 400px;
}

.banner-btn ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.banner-btn ul li {
    display: flex;
    align-items: center;
}

.banner-btn .default-btn {
    width: 100%;
}

/* ======Referral Program======= */

/* ====Multi step Form=== */

.st0 {
    fill: #fdcb6e;
}

.st1 {
    fill: #ffeaa7;
}

.st3 {
    opacity: 0.53;
    fill: #fab1a0;
}



.modal {
    width: 90%;
    max-width: 980px;
    margin: auto;
    position: relative;
    background: #1c1c1c;
    border-radius: 20px;
    padding: 5rem 3rem 6rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.modal__container {
    height: 100%;
}

/* .main-content {
    height: 100vh;
} */

.form-container {
    height: 100%;
    display: flex;
}

.form {
    overflow: hidden;
}


.form__step__container {
    display: flex;
    transition: 0.5s ease-in-out;
}

.form__step h3 {
    letter-spacing: 0.1em;
}

.form__step h4 {
    opacity: 0.6;
    position: relative;
}

.form__step h4:after {
    content: "";
    display: block;
    position: absolute;
    background: #333;
    opacity: 0.4;
    bottom: -10px;
    height: 1.5px;
    width: 40%;
    margin: 0 30%;
}

.form__nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    background: linear-gradient(45deg, #0b93fd, #2c74db);
}

.form__nav>a {
    display: flex;
    width: 50%;
    line-height: 50px;
    text-decoration: none;
    padding: 0 8%;
    color: #000;
    align-items: center;
    gap: 19px;
}

.form__nav>a.disabled {
    opacity: 0.2;
    cursor-events: none;
}

.form__nav__prev {
    text-align: left;
}

.form__nav__next {
    text-align: right;
}

.donation-boxes {
    display: flex;
    justify-content: center;
}

.donation-boxes .box input {
    display: none;
}

.donation-boxes .box input:checked~label {
    box-shadow: 0 0 8px 2px #fdcb6e;
}

.donation-boxes .box label {
    display: block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    box-shadow: 0 0 0px 1px #EEE;
    border-radius: 5px;
    margin: 10px;
    font-size: 2em;
    transition: 0.3s;
    cursor: pointer;
}

.donation-boxes .box label:hover {
    background: #FAFAFA;
}

.donation-boxes .box label svg {
    max-width: 100%;
    max-height: 100%;
    padding: 5px;
    margin: 0 auto;
}


.form__bullet {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin: 0;
    background: #CCC;
    cursor: pointer;
    transition: 0.5s 0.15s;
    position: relative;
}

.form__bullet__container {
    display: inline-flex;
    justify-content: center;
    margin-top: 5rem;
    position: relative;
    gap: 3rem;
    z-index: 1;
}

.form__bullet--active {
    background: var(--theme-bg-blue);
    box-shadow: 0 0 0px 5px #fff;
    pointer-events: none;
}

.form__bullet:hover:not(.form__bullet.form__bullet--active) {
    /* transform: scale(1.5)    ; */
    box-shadow: 0 0 0 5px #fff;
}

.sub_heading {
    font-size: 16px;
    margin: 3rem 0 0.8rem 0;
    color: #ffff;
}


.form__step__container p {
    line-height: 1.6;
    letter-spacing: 0.7px;
}

.list-number ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.list-number ol>li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
    color: #fff;
    font-weight: 200;
}

.list-number ol>li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

/* ====Multi step Form=== */
/* Refferalpage */

.get-ref-link {
    height: calc(100vh - 7.3rem);
    background: #000;
}

.get-ref-link .container {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.reff-link-block {
    text-align: center;
}

.reff-link-inner p {
    line-height: 1.6;
    margin-top: 3rem;
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
}

.copy-btn p {
    margin: 0;
}

.copy-btn .default-btn {
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    height: fit-content;
    line-height: 1;
    text-transform: capitalize;
    font-size: 11px;
}

.copy-btn .default-btn:hover svg path {
    fill: #fff;
}

.copy-btn .default-btn svg {
    width: 18px;
    height: 18px;
}

.copy-btn .default-btn svg path {
    fill: #000;
    transition: 0.5s;
}

.other-sharing-option ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.other-sharing-option ul li a {
    display: inline-block;
    background: var(--theme-bg-blue);
    line-height: 0;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: 0.5s;
    border: 1px solid var(--theme-bg-blue);
}

.other-sharing-option {
    margin-top: 2rem;
}

.other-sharing-option h6 {
    font-size: 18px;
    margin-bottom: 2rem;
}

.other-sharing-option ul li a:hover {
    background: #0000;
}

.other-sharing-option ul li a:hover svg path {
    fill: var(--theme-bg-blue);
}

.other-sharing-option ul li a svg path {
    transition: 0.5s;
}

.form-group-radio-label {
    display: inline-block;
    width: 100%;
}

.form-group-radio-label-input {
    position: absolute;
    opacity: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.form-group-radio-label input[type="radio"]:checked~.form-group-radio-label-text,
.form-group-radio-label input[type="checkbox"]:checked~.form-group-radio-label-text {
    background: var(--theme-bg-blue);
    color: #fff;
}


.form-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.form-group-radio-label-text {
    text-align: center;
    display: block;
    border-radius: 4px;
    font-size: 1.25em;
    padding: .6em 0;
    border: 1px solid;
    cursor: pointer;
    line-height: 1;
    font-weight: 300;
    width: 100%;
    max-width: 100%;
    transition: 0.5s;
}

.w-50 {
    width: 50%;
}

.form-align-center {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-heading {
    text-align: center;
}

.form__nav__prev {
    justify-content: flex-start;
}

.form__nav__next {
    justify-content: flex-end;
}

.mlr-auto {
    margin-left: auto;
    margin-right: auto;
}

.gap-20 {
    gap: 2rem;
}

.form-heading p {
    margin-top: 2rem;
    opacity: 0.8;
}

.form-group-radio-label:hover {
    background: var(--theme-bg-blue);
}

.form-group {
    max-width: 219px;
    width: 100%;
}

.justify-content-center {
    justify-content: center;
}

.form-row-text input {
    display: block;
    width: 100%;
    color: #fff;
    background: #0000;
    border: 1px solid #ffffff1c;
    padding: 1.6rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    box-shadow: none;
    outline: none;
}


.form-row-text {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.w-100 {
    width: 100%;
}

.form-row-text>* {
    padding: 0 1.5rem;
}

.form-group-text label {
    margin-bottom: 2rem;
    display: block;
}



.form__step__container {
    display: flex;
    transition: transform 0.5s ease;
}

.form__step {
    transform: scale(1);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* zoom-out before slide */
.form__step.zoom-out {
    transform: scale(0.8);
    opacity: 0.6;
}

/* active step zoom-in */
.form__step.active {
    transform: scale(1);
    opacity: 1;
}

.modal-preloader {
    position: absolute;
    inset: 0;
    background: #0b0b0b;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 52px;
    height: 52px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: #1e90ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.modal-content {
    position: relative;
    overflow: hidden;
}

.file-upload-wrapper {
    width: 100%;
    border: 2px dashed #999;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #000000;
    cursor: pointer;
    transition: border-color 0.3s;
    min-height: 22rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.file-upload-wrapper.dragover {
    border-color: #1e90ff;
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-upload-drag p {
    margin: 0 0 10px;
    color: #666;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 10px;
    justify-content: center;
}

.preview-item {
    position: relative;
    max-width: 11rem;
    height: 11rem;
    border-radius: 5px;
    overflow: visible;
    border: 1px solid #b7b7b7;
    width: 100%;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.remove-btn {
    position: absolute;
    top: -8px;
    right: -11px;
    background: rgba(255, 0, 0, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 2.1rem;
    cursor: pointer;
}

.form-nav-tab ul {
    display: flex;
    justify-content: space-between;
    background: #1c1c1c;
    padding: 0.7rem 1rem;
    border-radius: 8rem;
}

.form-nav-tab ul li {
    width: calc((100% / 4) - 3rem);
}

.form-nav-tab ul button {
    display: block;
    border: none;
    background: #0000;
    color: #fff;
    padding: 3rem;
    border-radius: 4rem;
    transition: 0.5s;
    font-size: 2rem;
    width: 100%;
}

.form-nav-tab ul button:hover,
.form-nav-tab ul button.show {
    background: var(--theme-bg-blue);
}

.form-nav-tab {
    margin-bottom: 3rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

canvas#signatureCanvas {
    background: #ffffff;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(255 255 255 / 27%);
}

.canvas-container {
    text-align: center;
}

.form__bullet__container:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    height: 2px;
    width: 100%;
    background: #fff;
    margin: auto;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.form-terms-condtions {
    max-height: 490px;
    overflow: auto;
}

/* width */
.form-terms-condtions::-webkit-scrollbar {
    width: 3px;
}

/* Track */
.form-terms-condtions:-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.form-terms-condtions::-webkit-scrollbar-thumb {
    background: var(--theme-bg-blue);
}

.form-container.myItem {
    display: none;
}

.form-container.myItem.show {
    display: block;
}

.error-message {
    text-align: center;
    margin-top: 3rem;
    color: #f00;
}

.form-row-text .error-message {
    text-align: left;
    margin-top: 2rem;
}

.terms-content {
    max-width: 980px;
    margin: AUTO;
    padding-top: 6rem;
}

.terms-content>* {
    margin-bottom: 2rem;
}

.form-nav-tab ul button {
    white-space: nowrap;
}

.form-nav-tab ul button.show {
    background: var(--theme-bg-blue);
}

#signatureCanvas {
    touch-action: none;
}

/* Review Slider */
.testimonial-card {
    border-radius: 1.2rem;
    padding: 2.8rem;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    font-family: var(--secondory-font-family);
    background: #000;
}

.testimonial-text {
    font-size: var(--body-font-medium);
    color: #fff;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 2.4rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    text-align: left;
    border-top: 1px solid rgb(179 179 179 / 59%);
    padding-top: 1.7rem;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    margin: 0;
    font-size: var(--heading-6);
    font-family: var(--default-font-family);
    font-weight: 600;
    color: var(--theme-bg-blue);
}

.testimonial-info span {
    display: block;
    margin-top: 0.3rem;
    font-size: var(--body-font-sm);
    color: rgb(179 179 179);
}


.cta-section {
    overflow: hidden;
}

.animation {
    width: auto;
    font-size: 0px;
}

.animation .testi-item {
    display: inline-block;
    width: auto;
    float: none;
    padding: 0 10px;
}

/* Pause on hover (desktop) */
.block:hover>.animation {
    animation-play-state: paused !important;
}

/* Pause on touch / focus (mobile) */
.block:active>.animation,
.block:focus-within>.animation {
    animation-play-state: paused !important;
}

/* Review Slider */
