@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');


@font-face {
    font-family: "AkcelerA-Bold";
    src: url("https://www.gammasweep.com/wp-content/uploads/2025/07/AkcelerA-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AkcelerA-Medium";
    src: url("https://www.gammasweep.com/wp-content/uploads/2025/12/AkcelerA-Medium.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AkcelerAalt-Medium";
    src: url("https://www.gammasweep.com/wp-content/uploads/2025/12/AkcelerAalt-Medium.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif !important;
}

body {
    background: #F0F3FF;
    position: relative;
}

body:has(.mobile-menu.active) {
    overflow: hidden;
}

:root {
    /* --- background color ---- */
    --bg-primary: #201C84;
    --bg-blue: #485BFF;
    --bg-blue-dark: #2E29A6;
    --bg-grey-dark: #999999;
    --bg-success: #15F5BA;
    --bg-dark: #000;
    --bg-white: #fff;

    /* ---- font color ---- */
    --text-white: #fff;
    --text-light: #F0F3FF;
    --text-unselected: #999999;
    --text-danger: #FF475B;

    /* ---- font family ---- */
    --font-heading: "AkcelerA-Bold", sans-serif !important;
    --font-sub-heading: "AkcelerA-Medium", sans-serif !important;
    --font-para: "Inter", sans-serif !important;
    --font-rubik: 'Rubik', sans-serif !important;
    --font-AkcelerAalt-Medium: 'AkcelerAalt-Medium', sans-serif !important;


    /* --- border-radius ----- */
    --rounded: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading) !important;
    text-transform: capitalize;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    /* color: var(--text-white); */
}

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

.mx-w-464 {
    max-width: 464px;
}

.mx-w-380 {
    max-width: 380px;
}

.mx-w-360 {
    max-width: 360px;
}

.mx-w-720 {
    max-width: 720px;
}

.mx-w-970 {
    max-width: 970px;
}

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

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.w-100 {
    width: 100%;
}

button {
    font-family: var(--font-heading);
    border: 0;
    text-transform: capitalize;
    cursor: pointer;
}

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

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;

    /* Mobile */
    max-width: 480px;

    /* Tablet */
    @media (min-width: 576px) {
        max-width: 540px;
    }

    /* Small Laptop */
    @media (min-width: 768px) {
        max-width: 752px;
    }

    /* Medium Laptop */
    @media (min-width: 992px) {
        max-width: 960px;
    }

    /* Large Laptop */
    @media (min-width: 1200px) {
        max-width: 1140px;
    }

    /* Desktop / Large Screens */
    @media (min-width: 1400px) {
        max-width: 1320px;
    }

    /* Ultra-wide Screens */
    @media (min-width: 1600px) {
        max-width: 1472px;
    }
}

.container-xl {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;

    /* Base width for mobile */
    max-width: 100%;

    /* Tablet */
    @media (min-width: 576px) {
        max-width: 540px;
    }

    /* Small Laptop */
    @media (min-width: 768px) {
        max-width: 752px;
    }

    /* Medium Laptop */
    @media (min-width: 992px) {
        max-width: 960px;
    }

    /* Large Laptop */
    @media (min-width: 1200px) {
        max-width: 1140px;
    }

    /* Desktop */
    @media (min-width: 1400px) {
        max-width: 1320px;
    }

    /* XL Desktop (Your new size) */
    @media (min-width: 1600px) {
        max-width: 1672px;
    }
}



label {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 10px;
    text-align: left;
    display: inline-block;
    width: 100%;


    span {
        color: var(--text-danger);
    }
}

.heading {
    text-align: center;
    color: #15182F;
    margin-bottom: 30px;

    h2 {
        font-weight: 400;
        font-size: 48px;
        line-height: 100%;
        padding-bottom: 10px;
    }

    p {
        font-weight: 600;
        font-size: 24px;
        line-height: 125%;
    }
}

.input {
    margin-bottom: 15px;


    .error {
        border-color: var(--text-danger);
    }

    .success {
        border-color: var(--bg-success);
    }

    .error-message {
        color: var(--text-danger);
        font-size: 14px;
        text-align: start;
        margin-top: 5px;
        display: none;
    }

    .error-message.show {
        display: block;
    }

}

input {
    width: 100%;
    height: 58px;
    padding: 10px 20px;
    border-radius: 20px;
    border: 3px solid #2E29A661;

    &::placeholder {
        color: #00000080;
    }

    &:focus-visible {
        outline: 0;
    }
}

.btn-success {
    background: linear-gradient(90deg, #96E9C6 0%, #0CE0A8 100%);
    color: #2E29A6;
    padding: 10px 30px;

    font-family: var(--font-heading);
    font-weight: 800;

    line-height: 2;
    text-transform: capitalize;
    border-radius: 20px;
    border: 0;
    font-size: 30px;
    cursor: pointer;

    &.btn-sm {
        font-size: 18px;
        padding: 6px 30px;
        border-radius: 10px;
    }

    &.border {
        border: 4px solid #485BFF
    }

    &.shadow {
        box-shadow: 0px 4px 34px 0px #00000040;
    }
}


.arrow-animated-container {
    display: inline-block;

    svg {
        width: 100%;
        height: auto;

        .arrow-1 {
            animation: arrowPulse1 2s ease-in-out infinite;
        }

        /* Animation for second arrow (middle) */
        .arrow-2 {
            animation: arrowPulse2 2s ease-in-out infinite;
        }

        /* Animation for third arrow (leftmost) */
        .arrow-3 {
            animation: arrowPulse3 2s ease-in-out infinite;
        }

    }
}


@keyframes arrowPulse1 {

    0%,
    100% {
        fill: #15F5BA;
    }

    33% {
        fill: rgba(27, 95, 77, 1);
    }

    66% {
        fill: #15F5BA;
    }
}

@keyframes arrowPulse2 {

    0%,
    100% {
        fill: #96E9C6;
    }

    33% {
        fill: #15F5BA;
    }

    50% {
        fill: rgba(27, 95, 77, 1);
    }

    83% {
        fill: #15F5BA;
    }
}

@keyframes arrowPulse3 {

    0%,
    100% {
        fill: #1B5F4D;
    }

    50% {
        fill: #96E9C6;
    }

    66% {
        fill: #15F5BA;
    }

    83% {
        fill: rgba(27, 95, 77, 1);
    }
}



header {
    background: linear-gradient(90deg, #485BFF 0%, #2E3FCC 100%);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 9999;


    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;

        .logo {
            max-width: 377px;

            img {
                max-width: 100%;
                width: 100%;
            }
        }

        .nav-link {
            font-family: var(--font-para) !important;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            transition: all 0.3s;
            text-decoration: none;
            cursor: pointer;
            color: var(--text-white);
        }

        .btn {
            color: #15182F;
            font-family: var(--font-AkcelerAalt-Medium) !important;
            font-weight: 400;
            font-size: 15px;
            line-height: 100%;
            text-transform: capitalize;
            padding: 12px 16px;
            background: linear-gradient(90deg, #96E9C6 0%, #0CE0A8 100%);
            border-radius: 10px;
        }
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    nav {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    /* Dropdown Styles */
    .dropdown {
        position: relative;

        &.active {
            .dropdown-toggle {
                img {
                    transform: rotate(180deg);
                }
            }
        }
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 5px;

        img {
            font-size: 0.7rem;
            transition: transform 0.3s;
        }
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        background: var(--bg-white);
        border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s;
        z-index: 100;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        display: block;
        padding: 12px 20px;
        color: #333;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }

    .dropdown-item:first-child {
        border-radius: 10px 10px 0 0;
    }

    .dropdown-item:last-child {
        border-radius: 0 0 10px 10px;
    }

    .dropdown-item:hover {
        background: #485BFF;
        color: white;
    }




    /* Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Mobile Menu */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #485BFF 0%, #2E3FCC 100%);
        padding: 20px 30px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        transition: transform 0.3s;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .overlay {
        position: absolute;
        top: 0;
        right: 0;

        width: 100%;
        height: 100vh;
        background-color: #00000052;
        display: none;
        opacity: 0;
        z-index: -1;
    }



    .mobile-menu.active {
        transform: translateX(0);

        &+.overlay {
            opacity: 1;
            display: block;
        }

    }

   

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-dropdown-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        padding-left: 20px;
        margin-top: 10px;
    }

    .mobile-dropdown.active .mobile-dropdown-menu {
        display: flex;
    }

    .mobile-dropdown-toggle::after {
        content: '▼';
        font-size: 0.7rem;
        margin-left: 5px;
        transition: transform 0.3s;
    }

    .mobile-dropdown.active .mobile-dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .mobile-dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 600;
        padding: 8px 0;
        transition: all 0.3s;
    }

    .mobile-dropdown-item:hover {
        color: #00FF9D;
        padding-left: 10px;
    }


    @media (max-width: 992px) {
        nav {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .mobile-menu {
            display: block;
        }

        .nav-wrapper {
            gap: 15px;
        }

        .cta-button {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .logo {
            font-size: 1.2rem;
        }

        .cta-button {
            padding: 8px 16px;
            font-size: 0.85rem;
        }
    }

}



.banner-section {
    padding: 110px 0 210px 0;

    position: relative;
    background-color: #15182F;
    color: var(--text-white);
    overflow: hidden;

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('https://codeigniter-storage.s3.us-east-1.amazonaws.com/gammasweep/home-page-new/svg-icon/logo-banner.svg');
        background-repeat: repeat;
        background-size: auto;
        opacity: 11%;
        pointer-events: none;
        z-index: 0;
    }


    &::after {
        position: absolute;
        content: '';
        background: radial-gradient(50% 50% at 50% 50%, #524BFC 0%, rgba(44, 37, 209, 0) 100%);
        width: 100%;
        height: 100%;
        z-index: 0;
        top: 0;
        opacity: .6;
        border-radius: 50%;
    }

    .banner-section-container {
        display: flex;
        align-items: center;
        gap: 126px;
        position: relative;
        z-index: 1;


        .content {
            h2 {
                font-weight: 400;
                font-size: 65px;
                line-height: 114%;
                padding-bottom: 20px;
            }

            p {
                font-weight: 600;
                font-size: 24px;
                line-height: 125%;
                padding-bottom: 20px;

                &.green {
                    color: #15F5BA;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    padding-bottom: 30px;
                }
            }

            button {
                background: #15F5BA;
            }
        }

        .img-box {
            max-width: 596px;
            width: 100%;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}

.business-email-section {
    background: #485BFF;
    padding: 50px 0;

    .business-email-container {
        display: grid;
        grid-template-columns: 70% 30%;
        gap: 30px;

        .cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;

            .card {
                text-align: center;
                background-color: #15F5BA;
                border: 1px solid #17193E4D;
                padding: 20px;
                border-radius: 20px;

                img {
                    margin-bottom: 10px;
                    width: 38px;
                }

                h2 {
                    font-weight: 400;
                    font-size: 22px;
                    color: #15182F;
                }
            }
        }

        .email-box {
            p {
                font-family: var(--font-AkcelerAalt-Medium) !important;
                font-weight: 400;
                font-size: 17px;
                color: var(--text-white);
                padding-bottom: 6px;
            }

            .email-input {
                border: 1px solid #E5E5E5;
                background: #FFFFFF0A;
                border-radius: 150px;
                position: relative;
                height: 86px;
                padding: 15px;

                input {
                    background-color: transparent;
                    border: none;
                    color: var(--text-white);
                    padding: 0 180px 0 0;
                    position: relative;
                    z-index: 0;

                    &::placeholder {
                        color: var(--text-white);
                    }
                }

                button {
                    position: absolute;
                    font-weight: 400;
                    font-size: 16px;
                    text-transform: capitalize;
                    color: #2E29A6;
                    padding: 16px 30px;
                    border-radius: 20px;
                    background: #15F5BA;
                    top: 50%;
                    right: 15px;
                    z-index: 9;
                    transform: translate(0, -50%);
                }
            }
        }
    }
}


.unmatched-sweepstakes-section {
    position: relative;
    padding: 60px 0;

    .arrow-animated-container {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        display: grid;
        place-items: center;

        &:not(.right) {
            left: 40px;
        }

        &.right {
            right: 40px;
        }
    }


    .unmatched-sweepstakes-container {
        /* background-image:
            linear-gradient(229.37deg, #B641E1 30.85%, rgba(23, 73, 178, 0) 83.25%),
            url("../images/unmatched-sweepstakes-section.jpg"); */

        /* background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        min-height: 536px;
        border-radius: 30px;
        padding: 80px 30px; */


        img {
            width: 100%;
            max-width: 100%;
            cursor: pointer;
        }

        .content {
            position: relative;
            padding: 30px;
            background: rgba(65, 82, 228, 0.6);
            border-radius: 20px;
            z-index: 1;
            height: 100%;
            max-width: 920px;
            margin-left: auto;
            color: var(--text-white);

            &::before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 20px;
                padding: 10px;

                background: linear-gradient(180deg, #15F5BA 0%, rgba(12, 143, 109, 0) 100%);

                -webkit-mask:
                    linear-gradient(#fff 0 0) content-box,
                    linear-gradient(#fff 0 0);

                -webkit-mask-composite: xor;
                mask-composite: exclude;
                height: 100%;
                z-index: -1;
            }

            h2 {
                font-weight: 400;
                font-size: 39px;
                line-height: 100%;
                padding-bottom: 10px;
            }

            p {
                font-weight: 400;
                font-size: 23px;
                line-height: 100%;
            }

            button {
                color: #15182F;
                font-size: 22px;
                padding: 18px 30px;
            }

            .g2c {
                display: flex;
                gap: 42px;
                padding: 22px 0 42px 0;

                .img-box {
                    max-width: 138px;

                    img {
                        width: 100%;
                    }

                    p {
                        font-weight: 600;
                        font-size: 23px;
                    }
                }

                .booth {
                    ul {
                        display: flex;
                        gap: 12px;
                        flex-direction: column;

                        li {
                            display: flex;
                            align-items: center;
                            gap: 10px;

                            font-family: var(--font-para) !important;
                            font-weight: 700;
                            font-size: 25px;
                            line-height: .8;

                            span {
                                color: #96E9C6;
                            }
                        }
                    }
                }
            }
        }



    }
}

.enterprise-grade-section {
    text-align: center;
    color: var(--text-white);

    h2 {
        font-weight: 400;
        font-size: 60px;
        line-height: 1;
        padding-bottom: 10px;
    }

    p {
        font-weight: 600;
        font-size: 24px;
        line-height: 133%;
        padding-bottom: 30px;
    }

    .enterprise-grade-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;

        .card {
            background: linear-gradient(102.24deg, #181296 2.76%, #2E29A6 96.92%);
            text-align: left;
            border-radius: 20px;
            padding: 40px 20px;

            display: flex;
            align-items: flex-start;
            gap: 30px;

            .img-box {
                background: #485BFF33;
                padding: 20px;
                width: 100px;
                aspect-ratio: 1;
                flex: none;
                display: grid;
                place-items: center;
                border-radius: 15px;

                img {
                    max-width: 100%;
                }
            }

            .content {
                h3 {
                    font-weight: 400;
                    font-size: 25px;
                    line-height: 1.5;
                    padding-bottom: 5px;
                }

                p {
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 26px;
                    padding-bottom: 10px;
                }

                ul {
                    display: flex;
                    gap: 10px;
                    flex-wrap: wrap;
                    margin-bottom: 20px;

                    li {
                        background-color: #5566ED;
                        padding: 5px 15px;
                        border-radius: 40px;

                        display: flex;
                        gap: 10px;

                        font-weight: 600;
                        font-size: 15px;
                        line-height: 2;
                    }
                }

                button {
                    padding: 24px 30px;
                    font-size: 22px;
                }
            }
        }
    }
}


.dominate-market-section {
    padding: 80px 0;
    position: relative;

    .arrow-animated-container {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;

        &:not(.right) {
            left: 40px;
        }

        &.right {
            right: 40px;
        }
    }

    .dominate-market-container {
        background: #FF4D6B;
        width: 100%;
        border-radius: 30px;
        padding: 30px 50px;

        display: grid;
        grid-template-columns: 70% 30%;



        .content {
            margin-top: auto;
            margin-bottom: auto;
            color: var(--text-white);

            h2 {
                font-weight: 400;
                font-size: 35px;
                line-height: 100%;
                padding-bottom: 15px;
            }

            p {
                font-weight: 600;
                font-size: 27px;
                line-height: 108%;
                padding-bottom: 24px;
            }

            button {
                font-size: 22px;
            }
        }

        .img-box {
            width: 100%;
            height: 100%;
            text-align: center;

            img {
                max-width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}


.gaming-feature-section {
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;

    .gaming-feature-container {
        background-color: #F0F3FF;
        border-radius: 30px;
        padding: 20px;

        display: grid;
        grid-template-columns: calc(36% - 15px) calc(64% - 15px);
        gap: 30px;

        .left-section {
            margin-top: auto;
            color: #15182F;
            margin-bottom: auto;

            h2 {
                font-weight: 400;
                font-size: 40px;
                line-height: 120%;
                padding-bottom: 10px;
            }

            p {
                font-family: var(--font-sub-heading) !important;
                font-weight: 400;
                font-size: 24px;
                line-height: 100%;
            }

            .img-box {
                margin: 30px auto 30px auto;
                max-width: 494px;

                img {
                    max-width: 100%;
                }
            }

            button {
                font-size: 22px;
            }
        }

        .right-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;

            .card {
                background: #2E29A6;
                border-radius: 10px;
                padding: 30px 10px 20px 10px;
                min-height: 222px;

                img {
                    max-width: 44px;
                    margin-bottom: 15px;

                    img {
                        max-width: 100%;
                    }
                }

                h3 {
                    font-weight: 400;
                    font-size: 24px;
                    line-height: 133%;
                    color: var(--text-white);
                }

                &:last-child {
                    grid-column: span 2;
                    display: grid;
                    place-items: center;
                    padding: 30px;
                    background: linear-gradient(90deg, #96E9C6 0%, #0CE0A8 100%);

                    h3 {
                        font-size: 30px;
                        line-height: 133%;
                        color: #2E29A6;
                    }
                }
            }
        }
    }

    &.dark-blue {
        .gaming-feature-container {
            background-color: #2E29A6;

            .left-section {
                color: var(--text-white);
            }

            .right-section {
                .card {
                    background: #FFFFFF1A;

                    &:last-child {
                        background: linear-gradient(90deg, #96E9C6 0%, #0CE0A8 100%);
                    }
                }
            }
        }
    }
}


.certified-excellence-section {
    padding: 80px 0;

    h2 {
        font-weight: 400;
        font-size: 40px;
        line-height: 132%;
        text-align: center;
        color: var(--text-white);
        padding-bottom: 15px;
    }

    .certified-excellence-container {
        display: flex;
        gap: 18px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;

        .img-box {
            width: 105px;
            height: 105px;
            aspect-ratio: 1;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

.shaping-future-slider-section {
    overflow: hidden;
    position: relative;

    h2 {
        font-weight: 400;
        font-size: 40px;
        line-height: 132%;
        text-align: center;
        color: var(--text-white);
        padding-bottom: 15px;
    }

    .shaping-future-slider-container {
        display: flex;
        width: 200%;
        animation: sliderLoop 12s linear infinite;

        .img-box {
            flex: 0 0 50%;
            padding-right: 15px;
            cursor: pointer;

            img {
                width: 100%;
                display: block;
            }
        }

        &:hover {
            animation-play-state: paused;
        }
    }
}

@keyframes sliderLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.diffrent-make-section {
    background-color: #2E29A6;
    padding: 80px 0;
    text-align: center;

    h2 {
        font-weight: 400;
        font-size: 60px;
        line-height: 110%;
        text-align: center;
        padding-bottom: 40px;
        color: var(--text-white);
    }

    .desktop-table {
        display: block;

        .table-header {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-bottom: 28px;
        }

        .header-item {
            text-align: left;
            color: white;
            font-weight: 900;
            font-size: 1.3rem;
            padding: 0;
            font-family: var(--font-heading);
        }

        .comparison-row {
            font-family: var(--font-para) !important;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-bottom: 15px;
            align-items: stretch;

            .feature-box {
                display: flex;
                align-items: center;
                gap: 20px;

                .feature-name {
                    flex: auto;
                    background-color: #18129633;
                    padding: 40px 20px;
                    font-family: var(--font-heading);
                    font-weight: 400;
                    font-size: 20px;
                    color: var(--text-white);
                    line-height: 100%;
                    border-radius: 24px;
                    display: flex;
                    align-items: center;
                }

                .arrow-animated-container {
                    max-width: 40px;
                }
            }

            .gammasweep-feature {
                background: linear-gradient(102.24deg, #15F5BA 2.76%, #96E9C6 96.92%);
                padding: 20px;
                color: #000;
                font-weight: 700;
                font-size: 20px;
                line-height: 130%;
                border-radius: 24px;
            }

            .other-feature {
                background-color: #1B1878;
                padding: 40px 20px;
                text-align: left;
                color: var(--text-white);
                border-radius: 24px;
                font-weight: 700;
                line-height: 130%;
                font-size: 20px;
                display: flex;
                align-items: center;
            }
        }
    }


    /* Mobile Accordion View */
    .mobile-accordion {
        display: none;

        .accordion-item {
            margin-bottom: 20px;
            overflow: hidden;
            text-align: left;


            .accordion-header {
                border-radius: 24px;
                background: #18129633;
                padding: 10px 20px;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                color: var(--text-white);
                transition: all 0.3s;
                margin-bottom: 10px;

                p {
                    font-family: var(--font-heading);
                    font-weight: 400;
                    font-size: 16px;
                }

                .accordion-label {
                    font-weight: 400;
                    font-size: 12px;
                }

                &:hover {
                    background: hsla(0, 0%, 100%, 0.010)
                }
            }

            .feature-box {
                margin-bottom: 10px;

                &:last-child {
                    margin-bottom: 0;
                }

                .feature-title {
                    margin-bottom: 5px;
                    color: var(--text-white);

                    font-family: var(--font-heading);
                    font-weight: 400;
                    font-size: 14px;
                }

                .feature-text {
                    background: linear-gradient(102.24deg, #15F5BA 2.76%, #96E9C6 96.92%);
                    padding: 20px;
                    border-radius: 24px;

                    font-weight: 700;
                    font-size: 17px;
                    line-height: 26px;
                    color: #000;
                }

                .feature-text-dark {
                    background-color: #1B1878;
                    padding: 20px;
                    border-radius: 24px;

                    font-weight: 700;
                    font-size: 17px;
                    line-height: 26px;
                    color: var(--text-white);
                }
            }

            .accordion-icon {
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.3s;
            }


            &.active {
                .accordion-content {
                    max-height: 500px;
                    text-align: left;
                }

                .accordion-icon {
                    transform: rotate(180deg);
                }
            }
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
    }

    .cta-section {
        text-align: center;
        margin: 40px 0;

        .arrow-animated-container {
            max-width: 130px;
        }
    }

    @media (max-width: 968px) {

        .desktop-table {
            display: none;
        }

        .mobile-accordion {
            display: block;
        }
    }
}



.ceo-section {
    background-color: #485BFF;

    .ceo-section-container {
        display: grid;
        grid-template-columns: calc(46% - 30px) calc(54% - 30px);
        column-gap: 60px;

        .card {
            color: var(--text-white);

            .img-box {
                max-width: 100%;
                position: relative;

                img {
                    width: 100%;
                }

                .title {
                    padding: 12px 30px;
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    border-radius: 20px;
                    background-color: #15F5BA;
                    position: absolute;
                    color: #15182F;
                    max-width: 80%;
                    width: 100%;
                    bottom: 40px;
                    gap: 10px;
                    right: 50%;
                    transform: translate(50%, 0);

                    h3 {
                        font-weight: 400;
                        font-size: 33px;
                        line-height: 100%;
                        text-align: center;
                    }

                    p {
                        font-weight: 700;
                        font-size: 18px;
                        line-height: 100%;
                        text-align: center;
                        padding: 0;
                    }
                }
            }

            h2 {
                font-weight: 400;
                font-size: 52px;
                line-height: 110%;
                padding-bottom: 15px;
            }

            p {
                font-weight: 600;
                font-size: 24px;
                line-height: 125%;
                padding-bottom: 15px;
            }

            h4 {
                font-family: var(--font-para) !important;
                font-weight: 700;
                font-size: 26px;
                line-height: 115%;

                padding-bottom: 10px;
            }

            ul {
                li {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin-bottom: 10px;

                    font-weight: 500;
                    font-size: 24px;
                    line-height: 125%;


                    img {
                        width: 30px;
                    }

                    &:last-child {
                        margin-bottom: 34px;
                    }
                }
            }

            &:first-child {
                margin-top: auto;
            }

            &:last-child {
                padding: 80px 0;
            }
        }
    }
}

.why-operators-choose-section {
    padding-top: 80px;
    padding-bottom: 80px;

    .why-operators-choose-container {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(4, 1fr);

        .card {
            background: #485BFF;
            border-radius: 20px;
            padding: 40px 20px;
            text-align: center;
            color: var(--text-white);

            h3 {
                font-weight: 400;
                font-size: 26px;
                min-height: 70px;
                line-height: 110%;
            }

            .img-box {
                width: 100%;
                max-width: 275px;
                margin: auto;

                img {
                    width: 100%;
                    mix-blend-mode: color-dodge;
                }
            }

            &:last-child {
                grid-column: span 2;
                background: linear-gradient(90deg, #96E9C6 0%, #0CE0A8 100%);
                display: grid;
                place-items: center;
                color: #15182F;

                h3 {
                    font-weight: 400;
                    font-size: 43px;
                    min-height: auto;
                    line-height: 100%;
                }
            }
        }
    }
}

.leading-industry-section {
    text-align: center;
    padding-bottom: 80px;

    h2 {
        font-size: 48px;
        line-height: 100%;
        padding-bottom: 10px;
    }

    p {
        font-weight: 600;
        font-size: 24px;
        line-height: 125%;
        padding-bottom: 30px;

    }

    .leading-industry-container {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);

        .card {
            padding: 20px;
            border-radius: 20px;
            background: #485BFF;

            h3 {
                font-family: var(--font-para) !important;
                font-weight: 700;
                font-size: 28px;
                line-height: 110%;
                padding-bottom: 5px;
                color: var(--text-white);
            }

            p {
                font-weight: 700;
                font-size: 23px;
                line-height: 100%;
                color: #15F5BA;
                padding: 0;
            }

            .img-box {
                padding: 30px 0;
                width: 100%;
                height: 254px;

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

            button {
                background: #15F5BA;
                font-weight: 400;
                font-size: 22px;
                padding: 15px 30px;
                line-height: 100%;
                border-radius: 20px;
                height: 80px;
                width: 100%;
                max-width: 440px;
                color: #2E29A6;
                margin: auto;
            }
        }
    }
}


footer {
    position: relative;
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: var(--bg-primary);
    color: var(--text-white);
    overflow: hidden;


    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('https://codeigniter-storage.s3.us-east-1.amazonaws.com/gammasweep/home-page-new/svg-icon/logo-banner.svg');
        background-repeat: repeat;
        background-size: auto;
        opacity: 0.1;
        pointer-events: none;
        z-index: 0;
    }

    .footer {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 130px;


        .content {
            h2 {
                font-family: var(--font-heading);
                font-weight: 400;
                font-size: 44px;
                line-height: 60px;
                padding-bottom: 12px;
            }

            h3 {
                font-family: var(--font-para) !important;
                font-style: normal;
                font-size: 24px;
                line-height: 36px;
                padding: 20px 0 25px 0;
            }


            p {
                font-weight: 600;
                font-size: 22px;
                line-height: 142%;
            }

            .links {
                display: grid;
                grid-template-columns: repeat(2, 1fr);

                .card {
                    ul {
                        li {
                            margin-bottom: 10px;

                            a {
                                font-weight: 400;
                                font-size: 16px;
                                line-height: 18px;
                                color: var(--text-white);
                            }
                        }
                    }

                    .icons {
                        display: flex;
                        align-items: center;
                        gap: 24px;
                        margin-bottom: 25px;

                        img {
                            max-width: 34px;
                        }
                    }

                    img {
                        max-width: 170px;
                    }
                }
            }

            address {

                .address-cards {
                    border-radius: 15px;
                    background: #2E29A6;
                    padding: 30px;

                    &:nth-of-type(1) {
                        margin-bottom: 20px;
                    }

                    h4 {
                        font-weight: 700;
                        font-size: 20px;
                        line-height: 22px;
                        padding-bottom: 10px;
                    }

                    p {
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 1.4;
                    }
                }
            }
        }
    }

    .copyright-line {
        padding-top: 68px;
        font-family: var(--font-rubik);
        font-weight: 500;
        font-size: 15px;
        line-height: 100%;
        text-align: center;

        a {
            font-family: var(--font-rubik);
            text-decoration: underline;
            text-decoration-style: solid;
            text-decoration-thickness: 0%;
            color: currentColor;
        }
    }
}

.form-staper-section {
    background-color: var(--bg-blue);
    border-radius: var(--rounded);
    text-align: center;
    color: var(--text-light);

    .title {
        padding: 26px 20px 10px 20px;

        h2 {
            font-weight: 700;
            font-size: 34px;
            line-height: 1.02;
            padding-bottom: 12px;
        }

        p {
            font-weight: 400;
            font-size: 18px;
            line-height: 1.55;
        }
    }

    .stapers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 12px 0;
        overflow: hidden;
        position: relative;



        .step {
            cursor: pointer;
            position: relative;

            &>span {
                background-color: var(--bg-grey-dark);
                width: 50px;
                aspect-ratio: 1;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: auto;
                position: relative;
                z-index: 1;
            }

            p {
                font-weight: 700;
                color: var(--text-light);
                font-size: 18px;
                line-height: 26px;

                span {
                    color: var(--text-unselected);
                    font-size: 14px;
                    line-height: 20px;
                }
            }

            &.active {

                >span {
                    background-color: var(--bg-blue-dark);
                }
            }

            &::before {
                position: absolute;
                content: '';
                top: 25px;
                height: 5px;
                width: 100%;
                background-color: var(--bg-dark);
                right: 50%;
                transform: translate(50%, 0);
            }


            &.step-1 {
                &::after {
                    position: absolute;
                    content: '';
                    top: 25px;
                    height: 5px;
                    width: 0%;
                    background: var(--bg-success);
                    left: 0;
                    z-index: 0;
                    transition: width 0.3s ease;
                }

                &.progress-17::after {
                    width: 17%;
                }

                &.progress-33::after {
                    width: 33%;
                }

                &.progress-50::after {
                    width: 50%;
                }

                &.completed::after {
                    width: 100%;
                }
            }

            &.step-2 {

                &::after {
                    position: absolute;
                    content: '';
                    top: 25px;
                    height: 5px;
                    width: 0%;
                    background: var(--bg-success);
                    left: 0;
                    z-index: 0;
                    transition: width 0.3s ease;
                }

                &.progress-17::after {
                    width: 45%;
                }

                &.progress-33::after {
                    width: 40%;
                }

                &.progress-50::after {
                    width: 80%;
                }

                &.completed::after {
                    width: 100%;
                }
            }


        }
    }

    .staper-content {
        padding: 30px 30px 45px 30px;

        .staper-1 {
            .input {
                &:last-of-type {
                    margin-bottom: 30px;
                }
            }
        }

        .staper-2 {
            .radio-group {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;



                .radio-option {
                    input {
                        display: none;
                    }

                    label {
                        width: 100%;
                        background: #fff;
                        border: 3px solid #2E29A661;
                        border-radius: 24px;
                        padding: 10px 20px 10px 50px;
                        position: relative;
                        color: #000;


                        &::before {
                            position: absolute;
                            content: '';
                            width: 16px;
                            height: 16px;
                            border-radius: 50%;
                            background-color: #E8EDFE;
                            top: 50%;
                            transform: translate(0%, -50%);
                            left: 20px;
                        }
                    }

                    input:checked+label {
                        background: #0CE0A8;
                        border-color: #0CE0A8;


                        &::before {
                            background-color: #2E29A6;
                        }
                    }

                    &:last-child {
                        grid-column: 1 / -1;
                        margin-bottom: 15px;
                    }
                }
            }


            textarea {
                width: 100%;
                min-height: 120px;
                padding: 15px 20px;
                border-radius: 20px;
                border: 3px solid #2E29A661;

                resize: vertical;
                transition: border-color 0.3s;

                color: #00000080;
                font-weight: 400;
                font-size: 16px;
                line-height: 18px;
                letter-spacing: 0px;

            }

            .button-group {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
        }

    }
}

.numbers-glance-section {
    background-color: #E8EDFE;
    padding-top: 160px;
    padding-bottom: 160px;

    .numbers-glance-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;

        .card:not(:first-child) {
            cursor: pointer;
            display: grid;
            place-items: center;
            background: #485BFF;
            border: 1px solid #1E5EE5;
            box-shadow: 0px 4px 0px 0px #41E3B3;
            border-radius: 10px;
            padding: 40px 10px;
            text-align: center;

            color: var(--text-white);
            gap: 10px;
            transition: all .3s linear;

            h3 {
                font-weight: 400;
                font-size: 50px;
                line-height: 1;
            }

            p {
                font-weight: 700;
                font-size: 26px;
                line-height: 146%;
            }

            &:hover {
                box-shadow: 0px 14px 0px 0px #41E3B3;
                background-color: #2E29A6;
            }

        }

        .card:first-child {
            grid-column: span 2;

            h2 {
                font-weight: 400;
                font-size: 60px;
                line-height: 125%;
            }
        }
    }
}


@media (max-width: 1600px) {
    .dominate-market-section {
        .arrow-animated-container {
            max-width: 70px;

            &.right {
                right: 20px;
            }

            &:not(.right) {
                left: 20px;
            }
        }
    }
}

@media (max-width: 1400px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .heading {
        p {
            font-size: 22px;
        }
    }

    header {
        .header-container {
            .logo {
                max-width: 270px;
            }
        }
    }

    .unmatched-sweepstakes-section {
        .arrow-animated-container {
            max-width: 80px;
        }
    }

    .banner-section {
        padding: 90px 0 140px 0;

        .banner-section-container {
            gap: 60px;

            .content {
                h2 {
                    font-size: 52px;
                }

                p {
                    font-size: 20px;
                }
            }
        }
    }


    .diffrent-make-section {
        h2 {
            font-size: 52px;
        }

        .desktop-table {
            .table-header {
                gap: 16px;
                margin-bottom: 20px;
            }

            .comparison-row {
                gap: 16px;

                .feature-box {
                    gap: 16px;

                    .arrow-animated-container {
                        max-width: 32px;
                    }

                    .feature-name {
                        border-radius: 20px;
                    }
                }

                .gammasweep-feature {
                    border-radius: 20px;
                }

                .other-feature {
                    border-radius: 20px;
                }
            }
        }
    }


    .ceo-section {
        .ceo-section-container {
            .card {
                h2 {
                    font-size: 48px;
                }

                p {
                    font-size: 22px;
                }

                h4 {
                    font-size: 24px;
                }

                ul {
                    li {
                        font-size: 22px;
                    }
                }
            }
        }
    }

    .enterprise-grade-section {
        h2 {
            font-size: 48px;
        }

        p {
            font-size: 20px;
        }
    }

    .diffrent-make-section {
        .cta-section {
            .arrow-animated-container {
                max-width: 90px;
            }
        }
    }

    .gaming-feature-section {
        .gaming-feature-container {
            gap: 20px;

            .left-section {
                h2 {
                    font-size: 28px;
                }

                p {
                    font-size: 20px;
                }
            }

            .right-section {
                gap: 16px;

                .card {
                    padding: 20px 10px 20px 10px;
                    min-height: 170px;

                    img {
                        margin-bottom: 10px;
                    }

                    h3 {
                        font-size: 20px;
                    }

                    &:last-child {
                        h3 {
                            font-size: 26px;
                        }
                    }
                }
            }
        }
    }


    .why-operators-choose-section {
        .why-operators-choose-container {
            .card {
                h3 {
                    font-size: 20px;
                }

                &:last-child {
                    h3 {
                        font-size: 28px;
                    }
                }
            }
        }
    }

    .numbers-glance-section {
        padding-top: 100px;
        padding-bottom: 100px;

        .numbers-glance-container {
            gap: 20px;

            .card:first-child {
                h2 {
                    font-size: 52px;
                }
            }

            .card:not(:first-child) {
                h3 {
                    font-size: 44px;
                }

                p {
                    font-size: 22px;
                }
            }
        }
    }



    footer {
        .footer {
            gap: 40px;

            .content {
                p {
                    font-size: 20px;
                }

                & address {
                    .address-cards {
                        padding: 24px;
                    }
                }
            }
        }

    }
}

@media (max-width: 1200px) {
    footer {
        .footer {
            .content {
                p {
                    font-size: 18px;
                }
            }
        }
    }
}


@media(max-width:992px) {

    header {
        .mobile-nav {
            a {
                color: var(--text-white);
            }
        }
    }

    .banner-section {
        padding: 70px 0;

        .banner-section-container {
            gap: 80px;
            flex-direction: column;
        }
    }

    .business-email-section {
        .business-email-container {
            grid-template-columns: 1fr;
        }
    }

    .dominate-market-section {
        .dominate-market-container {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    .enterprise-grade-section {
        h2 {
            font-size: 36px;
        }

        p {
            font-size: 18px;
        }

        .enterprise-grade-container {
            .card {
                flex-direction: column;

                .content {
                    button {
                        padding: 16px 20px;
                        font-size: 18px;
                    }
                }
            }
        }
    }


    .gaming-feature-section {
        .gaming-feature-container {
            border-radius: 20px;
            grid-template-columns: repeat(1, 1fr);

            .right-section {
                gap: 12px;

                .card {
                    h3 {
                        font-size: 18px;
                    }
                }
            }
        }
    }

    .shaping-future-slider-section {
        .shaping-future-slider-container {
            width: 150%;

            .img-box {
                flex: 0 0 150%;
            }
        }
    }


    .ceo-section {
        .ceo-section-container {
            padding-top: 40px;
            grid-template-columns: repeat(1, 1fr);
            column-gap: 20px;

            .card {
                &:last-child {
                    padding: 60px 0;
                }
            }
        }
    }


    .why-operators-choose-section {
        .why-operators-choose-container {
            gap: 12px;
            grid-template-columns: repeat(3, 1fr);

            .card {
                &:last-child {
                    grid-column: span 3;
                }
            }
        }
    }

    .leading-industry-section {
        h2 {
            font-size: 36px;
        }

        p {
            font-size: 18px;
        }

        .leading-industry-container {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .numbers-glance-section {
        padding-top: 60px;
        padding-bottom: 60px;

        & .numbers-glance-container {
            gap: 16px;

            & .card:first-child {
                h2 {
                    font-size: 36px;
                }
            }

            & .card:not(:first-child) {
                padding: 20px 10px;

                h3 {
                    font-size: 32px;
                }

                p {
                    font-size: 16px;
                }
            }
        }
    }

    footer {
        .footer {
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;

            .content {
                p {
                    font-size: 16px;
                }
            }
        }
    }
}


@media (max-width: 768px) {
    input {
        height: 50px;
        border-radius: 10px;
    }

    header {
        .header-container {
            .logo {
                max-width: 188px;
            }
        }
    }

    .unmatched-sweepstakes-section {
        .arrow-animated-container {
            max-width: 40px;

            transform-origin: center center;

            &.right {
                right: 50%;
                top: 0;
                transform: rotate(-90deg) translate(-10px, 50%);
            }

            &:not(.right) {
                top: 100%;
                left: 50%;
                transform: rotate(-90deg) translate(calc(100% + 10px), -50%);
            }
        }
    }

    .dominate-market-section {
        .arrow-animated-container {
            max-width: 40px;

            transform-origin: center center;

            &.right {
                right: 50%;
                top: 0;
                transform: rotate(-90deg) translate(-30px, 50%);
            }

            &:not(.right) {
                top: 100%;
                left: 50%;
                transform: rotate(-90deg) translate(calc(100% - -30px), -50%);
            }
        }
    }

    .diffrent-make-section {
        h2 {
            font-size: 30px;
        }

        .cta-section {
            .arrow-animated-container {
                max-width: 60px;
            }
        }
    }

    .enterprise-grade-section {
        .enterprise-grade-container {
            grid-template-columns: repeat(1, 1fr);

            .card {
                flex-direction: row;
            }
        }
    }

    .why-operators-choose-section {
        .why-operators-choose-container {
            grid-template-columns: repeat(2, 1fr);

            .card {
                &:last-child {
                    grid-column: span 2;
                }
            }
        }
    }


    .numbers-glance-section {

        .numbers-glance-container {
            grid-template-columns: repeat(3, 1fr);

            .card:first-child {
                grid-column: span 3;
                text-align: center;
            }

            & .card:not(:first-child) {
                &:hover {
                    box-shadow: 0px 8px 0px 0px #41E3B3;
                }
            }
        }
    }


    footer {
        .footer {
            .content {
                p {
                    font-size: 16px;
                }
            }
        }
    }
}


@media (max-width: 576px) {
    input {
        height: 44px;
    }

    label {
        font-size: 12px;
        padding-bottom: 5px;
    }

    .btn-success {
        font-size: 14px;
        border-radius: 10px;
    }

    .heading {
        margin-bottom: 20px;

        h2 {
            font-size: 28px;
        }

        p {
            font-size: 14px;
        }
    }

    .section-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }



    header {
        .header-container {
            .nav-wrapper {
                gap: 10px;

                .btn {
                    font-size: 14px;
                    white-space: nowrap;
                    padding: 8px 10px;
                    border-radius: 6px;
                }
            }
        }

        .mobile-menu {
            top: 60px;
        }
    }


    .banner-section {
        .banner-section-container {
            gap: 50px;

            .content {
                h2 {
                    font-size: 38px;
                }

                p {
                    font-size: 18px;
                }
            }
        }
    }

    .business-email-section {
        padding: 20px 0;

        .business-email-container {
            text-align: center;
            gap: 10px;

            .cards {
                gap: 5px;

                .card {
                    padding: 12px;

                    h2 {
                        font-size: 16px;
                    }

                    img {
                        max-width: 24px;
                        margin-bottom: 5px;
                    }
                }
            }

            .email-box {
                .email-input {
                    border-radius: 18px;
                    height: 76px;
                }
            }
        }
    }


    .certified-excellence-section {
        padding: 30px 0;

        h2 {
            font-size: 30px;
        }
    }

    .dominate-market-section {
        .dominate-market-container {
            padding: 20px;

            .content {
                h2 {
                    font-size: 30px;
                }

                p {
                    font-size: 16px;
                }
            }
        }
    }

    .enterprise-grade-section {
        h2 {
            font-size: 28px;
        }

        p {
            font-size: 14px;
            padding-bottom: 20px;
        }

        .enterprise-grade-container {

            .card {
                flex-direction: column;
                gap: 15px;
                padding: 20px 16px;
                text-align: center;
                align-items: center;

                .img-box {
                    width: 70px;
                }

                .content {
                    h3 {
                        font-size: 20px;
                    }

                    p {
                        font-size: 14px;
                    }

                    ul {
                        justify-content: center;

                        li {
                            font-size: 12px;
                        }
                    }

                    button {
                        font-size: 12px;
                        padding: 8px 20px;
                    }
                }
            }
        }
    }


    .gaming-feature-section {
        padding-top: 12px;
        padding-bottom: 12px;

        .gaming-feature-container {
            border-radius: 12px;
            padding: 12px;
            gap: 12px;

            .left-section {
                h2 {
                    font-size: 24px;
                }

                p {
                    font-size: 14px;
                }

                .img-box {
                    margin: 12px auto 12px auto;
                }

                button {
                    font-size: 14px;
                }
            }


            .right-section {
                grid-template-columns: repeat(1, 1fr);
                gap: 10px;

                .card {
                    min-height: 78px;
                    display: flex;
                    align-items: center;
                    gap: 20px;

                    h3 {
                        font-size: 14px;
                        text-align: left;
                    }

                    img {
                        margin: 0;
                    }

                    &:last-child {
                        grid-column: span 1;
                        padding: 12px;

                        h3 {
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }


    .shaping-future-slider-section {
        h2 {
            font-size: 30px;
        }

        .shaping-future-slider-container {
            .img-box {
                flex: 0 0 200%;
            }
        }
    }

    .ceo-section {
        .ceo-section-container {
            .card {
                h2 {
                    font-size: 28px;
                }

                p {
                    font-size: 14px;
                }

                h4 {
                    font-size: 20px;
                }

                ul {
                    li {
                        font-size: 14px;

                        img {
                            width: 20px;
                        }
                    }
                }

                .img-box {
                    .title {
                        grid-template-columns: repeat(1, 1fr);
                        border-radius: 10px;
                        padding: 10px;
                        bottom: 20px;
                        width: 90%;
                        background-color: #15182FB2;
                        color: var(--text-white);
                        gap: 5px;

                        h3 {
                            font-size: 20px;
                        }

                        p {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }



    .why-operators-choose-section {
        padding-top: 30px;
        padding-bottom: 30px;

        .why-operators-choose-container {
            grid-template-columns: repeat(1, 1fr);

            .card {
                padding: 24px 10px;
                border-radius: 10px;

                h3 {
                    font-size: 18px;
                    min-height: auto;
                }

                &:last-child {
                    grid-column: span 1;

                    h3 {
                        font-size: 18px;
                    }
                }
            }
        }
    }



    .leading-industry-section {
        padding-bottom: 30px;

        h2 {
            font-size: 28px;
        }

        p {
            font-size: 14px;
            padding-bottom: 16px;
        }

        .leading-industry-container {
            .card {
                padding: 16px;
                border-radius: 16px;

                h3 {
                    font-size: 20px;
                }

                p {
                    font-size: 14px;
                }

                .img-box {
                    padding: 12px 0;
                }

                button {
                    font-size: 14px;
                    height: 40px;
                    border-radius: 10px;
                }
            }
        }
    }

    .numbers-glance-section {
        padding-top: 30px;
        padding-bottom: 30px;

        .numbers-glance-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;

            .card:first-child {
                grid-column: span 2;

                h2 {
                    font-size: 28px;
                }
            }

            .card:not(:first-child) {
                h3 {
                    font-size: 24px;
                }

                p {
                    font-size: 14px;
                }
            }
        }
    }


    footer {
        padding-top: 30px;
        padding-bottom: 30px;

        .footer {
            gap: 20px;

            .content {
                h2 {
                    font-size: 28px;
                    line-height: 32px;
                    padding-bottom: 6px;
                }

                h3 {
                    font-size: 20px;
                    padding: 20px 0 12px 0;
                }

                p {
                    font-size: 14px;
                }


                address {
                    .address-cards {
                        border-radius: 10px;
                        padding: 16px;

                        p {
                            font-size: 14px;
                        }
                    }
                }


                .links {
                    grid-template-columns: repeat(1, 1fr);

                    .card {
                        .icons {
                            gap: 12px;
                            margin-bottom: 12px;
                        }

                        img {
                            max-width: 100px;
                        }
                    }
                }
            }
        }

        .copyright-line {
            padding-top: 30px;
            font-size: 14px;
        }
    }


    .form-staper-section {
        border-radius: 10px;

        & .title {
            padding: 16px 16px 10px 16px;

            h2 {
                font-size: 24px;
            }

            p {
                font-size: 14px;
            }
        }

        & .stapers {
            & .step {
                p {
                    font-weight: 700;
                    color: var(--text-light);
                    font-size: 14px;
                    line-height: 16px;
                }
            }
        }

        .staper-content {
            padding: 12px 16px 20px 16px;

            & .staper-2 {
                .radio-group {
                    grid-template-columns: repeat(1, 1fr);
                }
            }
        }
    }
}