        
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #e9ede9 0%, #e1e4e1 100%);

            color: #333;
            line-height: 1.6;
        }

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



      

        .gann-mastery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0px;
        }

        /* Pricing Section */
        .gann-pricing-section {
            margin-top: 30px;
            background: linear-gradient(120deg, rgb(227 202 177 / 33%), #b394706e);
            ;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .gann-pricing-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }

        .gann-pricing-column {
            flex: 1;
            min-width: 300px;
        }

        .gann-pricing-column h2 {
            margin-left: 20px;
            font-size: 2rem;
            margin-bottom: 20px;
            color: rgb(40, 18, 3);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .gann-pricing-column ul {
            list-style: none;
            padding: 0;
        }

        .gann-pricing-column li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            line-height: 1.6;
            color: #444;
        }

        .gann-pricing-column li::before {
            content: "➤";
            position: absolute;
            left: 0;
            color: #6f7270;
            /* Metallic gold */
        }

        .gann-pricing-column strong {
            color: rgb(40, 18, 3);
            margin-top: 10px;
            font-weight: 600;
            display: block;
        }

        .gann-pricing-buttons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .gann-pricing-btn {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.71) 0%, rgb(100, 100, 100) 100%);
            color: rgb(40, 18, 3);
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            min-width: 140px;
            text-align: center;
        }

        .gann-pricing-btn:hover {
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            ;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .gann-pricing-img {
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* Book Preview Section */
        .gann-mastery-book-preview {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 30px 0;
            background: linear-gradient(120deg, rgb(227 202 177 / 33%), #b394706e);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .gann-mastery-book-cover {
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .gann-mastery-book-cover:hover {
            transform: scale(1.03);
        }

        .gann-mastery-view-btn {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.998) 0%, rgba(100, 100, 100, 0.95) 100%);
            color: rgb(40, 18, 3);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.5);
            min-width: 180px;
            text-align: center;
        }

        .gann-mastery-view-btn:hover {
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            color: white;
            transform: translateX(-50%) translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Book Details Section - Now Visible by Default */
        .gann-mastery-book-details {
            display: block;
            /* Changed from none to block */
            width: 100%;
            margin-top: 30px;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gann-mastery-details-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .gann-mastery-chapters,
        .gann-mastery-preview {
            flex: 1;
            min-width: 300px;
            background: rgb(255 247 247 / 53%);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .gann-mastery-chapters h3,
        .gann-mastery-preview h3 {
            color: rgb(40, 18, 3);
            margin-bottom: 15px;
            font-size: 1.5rem;
            border-bottom: 2px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 10px;
        }

        .gann-mastery-chapters p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: rgb(40, 18, 3);
        }

        .gann-mastery-preview iframe {
            width: 100%;
            height: 500px;
            /* Increased height */
            border: none;
            border-radius: 8px;
        }

        /* Videos Section */
        .gann-mastery-videos {
            margin-top: 50px;
        }

        .gann-mastery-videos h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: rgb(40, 18, 3);
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .book-h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            /* color: rgb(40, 18, 3); */
            /* background: linear-gradient(to left, 
        rgb(174, 175, 175) 0%, 
        #ffc107 100%); */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            /* Optional for Firefox */
            background-clip: text;
            color: transparent;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .gann-mastery-video-container {
            background: linear-gradient(120deg, rgb(227 202 177 / 33%), #b394706e);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .gann-mastery-video-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            justify-content: center;
        }

        .gann-mastery-video-tab {
            background: rgba(255, 255, 255, 0.3);
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #444;
            border: 1px solid rgba(0, 0, 0, 0.1);

        }

        .gann-mastery-video-tab:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .gann-mastery-video-tab.active {
            background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgba(100, 100, 100, 0.95) 100%);
            ;
            color: rgb(40, 18, 3);
            font-weight: bold;
        }

        .gann-mastery-video-content {
            display: none;
        }

        .gann-mastery-video-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .gann-mastery-video-iframe {
            width: 100%;
            height: 400px;
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* Mobile View Styles */
        @media (max-width: 768px) {
            .gann-mastery-container {
                padding: 0px;
            }

            .gann-pricing-section,
            .gann-mastery-book-preview,
            .gann-mastery-video-container {
                padding: 25px;
                margin-left: 0px;
                margin-right: -15px;
                border-radius: 0;
                width: calc(100% + 0px);
            }

            .gann-pricing-row {
                flex-direction: column;
            }

            .gann-pricing-column {
                width: 100%;
            }

            .gann-pricing-buttons {
                justify-content: center;
            }

            .gann-mastery-details-flex {
                flex-direction: column;
            }

            .gann-mastery-chapters,
            .gann-mastery-preview {
                min-width: 100%;
            }

            .gann-mastery-preview iframe {
                height: 350px;
                /* Increased height for mobile */
            }

            .gann-mastery-video-iframe {
                height: 250px;
            }

            .gann-mastery-book-cover {
                max-width: 100%;
            }

            .gann-mastery-view-btn {
                bottom: 30px;
                padding: 10px 20px;
                min-width: 160px;
            }

            /* Reduced button width for mobile */
            .gann-pricing-btn {
                min-width: 120px;
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {

              .gann-pricing-section {
            margin-top: 0px;
             }

            .gann-pricing-column h2,
            .gann-mastery-videos h2 {
                font-size: 1.8rem;
            }

            .gann-pricing-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .gann-pricing-btn,
            .gann-mastery-view-btn {
                width: 100%;
                max-width: 200px;
                /* Reduced max width */
                margin: 0 auto;
            }

            .gann-mastery-view-btn {
                bottom: 20px;
            }

            .gann-mastery-preview iframe {
                height: 300px;
                /* Adjusted height for small mobile */
            }

            .gann-mastery-video-iframe {
                height: 200px;
            }
        }

        /* book payment section css */

        :root {
            --primary: #0a8c72;
            --primary-dark: #07634f;
            --secondary: #3d8e7b;
            --accent: #25D366;
            --accent-dark: #1DA851;
            --danger: #D44638;
            --danger-dark: #B53A2E;
            --text-dark: #122f28;
            --text-light: #f8f9fa;
        }


        /* Payment Section Styles */
        .payment-section {
            background: linear-gradient(135deg, rgba(156, 158, 158, 0.9), rgba(9, 23, 20, 0.9));
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            max-width: 1200px;
            margin: 20px auto;
            width: calc(100% - 40px);
        }

        .payment-container {
            display: flex;
            flex-wrap: wrap;
            background: rgb(236, 236, 235);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        /* Payment Content */
        .payment-content {
            flex: 1;
            min-width: 0;
            /* Important for flex item sizing */
            padding: 30px;
            display: flex;
            flex-direction: column;
            width: 60%;
        }

        /* Book Image and Connect Section */
        .sidebar {
            width: 40%;
            min-width: 300px;
            background: linear-gradient(120deg, rgb(227 202 177 / 33%), #b394706e);
            color: white;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .book-image-container {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }

        .book-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: none;
        }

        .book-image.active {
            display: block;
        }

        .payment-title {
            text-align: center;
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 15px;
        }

        .payment-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            border-radius: 2px;
        }

        /* Book Type Selector */
        .book-type-selector {
            display: flex;
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }

        .book-type-btn {
            flex: 1;
            padding: 12px 15px;
            border: none;
            background: #e0e0e0;
            color: #555;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            min-width: 0;
            /* Allows text to wrap */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .book-type-btn.active {
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            color: white;
        }

        /* International Buyers Section */
        .international-section {
            background: #ffffff00;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }

        .section-title {
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            border-radius: 2px;
        }

        .contact-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
            width: 100%;
        }

        .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1 1 auto;
            min-width: 150px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: white;
        }

        .btn-email {
            background: linear-gradient(135deg, var(--danger), var(--danger-dark));
            color: white;
        }

        .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-email:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(212, 70, 56, 0.3);
        }

        .btn i {
            font-size: 18px;
            margin-right: 8px;
        }

        /* Domestic Buyers Section */
        .domestic-section {
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }

        .payment-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .payment-details {
            flex: 1;
            min-width: 0;
            /* Important for flex item sizing */
        }

        .payment-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .payment-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-size: 18px;
            box-shadow: 0 4px 8px rgba(10, 140, 114, 0.2);
        }

        .payment-description {
            font-size: 18px;
            font-weight: 600;
            color: rgb(40, 18, 3);
            word-break: break-word;
        }

        .payment-summary {
            background: #ffffff00;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #e0e0e0;
        }

        .summary-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .summary-name {
            color: #555;
            font-weight: 500;
            flex: 1;
            min-width: 0;
            word-break: break-word;
        }

        .summary-price {
            font-weight: 600;
            color: rgb(40, 18, 3);
            flex-shrink: 0;
            margin-left: 10px;
        }

        .summary-total .summary-name,
        .summary-total .summary-price {
            font-weight: 700;
            color: rgb(40, 18, 3);
            font-size: 18px;
        }

        .btn-payment {
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            color: white;
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            margin-top: 20px;
            box-shadow: 0 4px 8px rgba(79, 62, 8, 0.3);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-payment:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(66, 42, 10, 0.4);
        }

        /* Important Notes */
        .payment-notes {
            background: rgba(74, 57, 21, 0.072);
            border-left: 6px solid rgb(34, 21, 6);
            padding: 15px;
            border-radius: 8px;
            margin-top: 25px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }

        .notes-title {
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .notes-content {
            color: #555;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .btn-notes {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: white;
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
            text-align: center;
            width: 100%;
        }

        .btn-notes:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
        }

        /* Book Content Sections */
        .book-content {
            display: none;
        }

        .book-content.active {
            display: block;
        }

        /* Social Links Section */
        .social-links {
            margin-bottom: 25px;
        }

        .sidebar-title {
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            ;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 22px;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .sidebar-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 35px;
            background: linear-gradient(135deg, #402810 0%, #846848 100%);
            border-radius: 2px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(40, 18, 3);
            transition: all 0.3s;
            font-size: 18px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-icon {
            margin-right: 12px;
            margin-top: 4px;
            font-size: 16px;
            color: rgb(40, 18, 3);
        }

        .contact-text {
            margin: 0;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.5;
            color: rgb(40, 18, 3);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .payment-container {
                flex-direction: column;
            }

            .sidebar,
            .payment-content {
                width: 100%;
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .payment-section {
                margin: 15px auto;
                width: calc(100% - 30px);
            }

            .payment-title {
                font-size: 24px;
                margin-bottom: 20px;
            }

            .section-title,
            .sidebar-title {
                font-size: 20px;
            }

            .contact-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .btn {
                width: 100%;
                padding: 12px;
            }

            .payment-wrapper {
                flex-direction: column;
                gap: 15px;
            }

            .book-type-btn {
                padding: 10px;
                font-size: 14px;
            }

            .payment-content {
                padding: 15px;
            }

            .payment-header {
                margin-bottom: 12px;
            }

            .payment-icon {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .payment-description {
                font-size: 16px;
            }
        }

        .mobile-text {
            display: none;
        }



        @media (max-width: 480px) {

            .desktop-text {
                display: none;
            }

            .mobile-text {
                display: block;
            }


            .payment-section {
                margin: 10px auto;
                width: calc(100% - 20px);
                border-radius: 12px;
            }

            .payment-container {
                border-radius: 10px;
            }

            .payment-content,
            .sidebar {
                padding: 15px;
            }

            .payment-title {
                font-size: 22px;
                margin-bottom: 15px;
                padding-bottom: 10px;
            }

            .payment-title:after {
                width: 60px;
                height: 3px;
            }

            .payment-description {
                font-size: 15px;
            }

            .summary-name,
            .summary-price {
                font-size: 14px;
            }

            .contact-text {
                font-size: 14px;
            }

            .btn i {
                font-size: 16px;
                margin-right: 8px;
            }

            .payment-details {
                min-width: 0;
            }

            .book-type-selector {
                margin-bottom: 15px;
            }

            .international-section,
            .domestic-section {
                padding: 15px;
                margin-bottom: 20px;
            }

            .payment-notes {
                padding: 15px;
                margin-top: 20px;
            }

            .social-icon {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .contact-icon {
                font-size: 15px;
            }
        }

        footer {
            background: linear-gradient(120deg, rgba(227, 202, 177, 0.899), #b39470e9);
            color: rgb(40, 18, 3);
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }

        .hidden {
            opacity: 0.5;
            transform: translateY(-50px);
            visibility: hidden;
            pointer-events: none;
            transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
        }

        .visible {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            pointer-events: auto;
            transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
        }

        /* visible slide */
        .hiddenSlide {
            opacity: 0.5;
            transform: translateX(-50px);
            /* Slide from the left */
            visibility: hidden;
            pointer-events: none;
            transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
        }

        .visibleSlide {
            opacity: 1;
            transform: translateX(0);
            /* Move to original position */
            visibility: visible;
            pointer-events: auto;
            transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
        }


        .screen {
            width: 100%;
            height: 100vh;
            position: sticky;
            top: 0;
            z-index: 1;
        }

        .firstScreen {

            z-index: 1;
        }

        .secondScreen {

            z-index: 2;
        }

        .thirdScreen {

            z-index: 3;
        }

        .fourthScreen {

            z-index: 4;
        }