.EndToEndHeroSection {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #141414;

     .background {
        width: 100%;
        position: absolute;
        top: 61px;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        z-index: 2;
        overflow: hidden;

        .col {
            height: 100%;
            grid-row: 1;
            position: relative;

            &::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 1px;
                height: 100%;
                // background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 10%, transparent 100%);
                background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.1) 40%, transparent 100%);

            }
        }
    }

     .container {
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 16% 22% 18% auto;
        margin: 0 auto;
        position: relative;

        span {
            display: block;
        }

        .title-section {
            position: relative;
            z-index: 3;
            grid-column: 1 / 4;
            grid-row: 2;
            align-self: start;
            color: #FFF;
            font-family: 'Manrope';
            font-size: 56px;
            font-style: normal;
            font-weight: 500;
            line-height: 110%;
            letter-spacing: -1.12px;
            max-width: 730px;
            margin-left: max(32px, calc((100vw - 1439px) / 2 + 32px));
        }

        .desc {
            position: relative;
            max-width: 678px;
            margin-right: auto;
            z-index: 3;
            grid-column: 3 / 4;
            grid-row: 2;
            align-self: start;
            padding-left: 40px;
            padding-right: 40px;
            color: #FFF;
            font-family: 'Manrope';
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            border-left: 2px solid #fff;
            transform: translateX(-2px);
        }

        .button-section {
            display: flex;
            align-items: center;
            gap: 8px;
            grid-column: 3 / 4;
            grid-row: 3;
            border-left: 2px solid #fff;
            height: fit-content;
            align-self: end;
            margin-left: 0;
            padding-left: 24px;
            position: relative;
            z-index: 3;
            transform: translateX(-2px);

            .btn-primary {
                background: #FFF;
                display: flex;
                padding: 8px 8px 8px 24px;
                justify-content: center;
                align-items: center;
                justify-content: space-between;
                color: #141414;
                text-align: center;
                font-family: 'Manrope';
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                width: 210px;
                position: relative;

                .arrow {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 32px;
                    height: 32px;
                    background: #141414;
                    color: #fff;
                    font-size: 12px;
                }

                &:hover {
                    cursor: pointer;
                    background: linear-gradient(0deg, rgba(20, 20, 20, 0.10) 0%, rgba(20, 20, 20, 0.10) 100%), #FFF;
                    backdrop-filter: blur(13.5px);

                    .arrow {
                        //background: #292929;
                    }
                }
            }

            .btn-secondary {
                display: flex;
                padding: 8px 0;
                text-align: center;
                width: 167px;
                height: 48px;
                justify-content: center;
                align-items: center;
                gap: 32px;
                color: #FFF;
                text-align: center;
                font-family: 'Manrope';
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                border: 1px solid rgba(255, 255, 255, 0.30);
                background: rgba(255, 255, 255, 0.10);
                position: relative;

                &:hover {
                    cursor: pointer;
                    background: rgba(255, 255, 255, 0.10);
                    backdrop-filter: blur(10px);
                    border-color: #fff;
                }
            }

            .dot {
                width: 4px;
                height: 4px;
                background: #fff;
            }

            .line {
                width: 2px;
                height: 48px;
                background: #fff;
            }
        }

        .tagline {
            position: relative;
            z-index: 3;
            grid-column: 1 / 2;
            grid-row: 3;
            align-self: end;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 10px;
            margin-left: max(32px, calc((100vw - 1439px) / 2 + 32px));
            .dot {
                width: 8px;
                height: 8px;
                background-color: #EF6445;
                z-index: 3;
            }

            .text {
                color: #FFF;
                font-family: "IBM Plex Mono";
                font-size: 18px;
                font-style: normal;
                font-weight: 500;
                line-height: 130%;
                /* 23.4px */
                text-transform: uppercase;
            }
        }

        .hero-image {
            width: 100%;
            grid-column: 1 / 5;
            grid-row: 1 / 5;

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

            .mobile {
                display: none;
            }
        }
    }

    @media screen and (min-width: 600px) and (max-width: 1024px) {
         .container {
            height: 614px;
            grid-template-rows: 21% 21% auto;
            gap: 24px 0;

            span {
                display: none;
            }

            .title-section {
                margin-left: 0;
                width: 100%;
                font-size: 36px;
                letter-spacing: -0.72px;
                padding: 0 0 0 24px;
                grid-column: 1/4;
                grid-row: 2/3;
                align-self: self-start;
                max-width: 536px;
            }

            .desc {
                max-width: 493px;
                font-size: 16px;
                margin-left: 0;
                margin-top: 0;
                margin-bottom: 0;
                grid-row: 3;
                align-self: self-start;
                grid-column: 2 / 4;
            }

            .tagline {
                width: 100%;
                padding: 0 24px;
                gap: 16px;
                grid-column: 1/3;
                grid-row: 1;
                align-self: self-start;
                margin-top: 104px;
                margin-bottom: 0;
                margin-left: 0;
                flex-direction: row-reverse;
                justify-content: flex-end;
            }

            .button-section {
                width: 100%;
                padding: 0 16px;
                gap: 16px;
                grid-column: 1/3;
                grid-row: 4;
                margin-left: 0;
                align-self: center;
                border-left: unset;
                border-right: 2px solid #fff;
            }

            .hero-image {
                grid-row: 1 / 6;
                grid-column: 1 / 4;

                img {
                    position: absolute;
                    height: 100%;
                    width: 138%;
                    bottom: 0;
                    right: 0;
                    object-fit: cover;
                }
            }
        }
    }

    @media screen and (max-width: 600px) {
         .background {
            display: none;
        }

         .container {
            display: flex;
            flex-direction: column;
            // height: 600px;
            padding: 94px 0 56px;
            gap: 24px;

            span {
                display: none;
            }

            .title-section {
                margin-left: 0;
                width: 100%;
                font-size: 36px;
                padding: 0 16px;
                letter-spacing: -0.72px;
            }

            .desc {
                font-size: 16px;
                padding: 0 14px;
                margin-left: 16px;
                margin-top: 24.7%;
                margin-bottom: 8px;
            }

            .button-section {
                width: 100%;
                flex-direction: column;
                padding: 0 16px;
                gap: 16px;
                margin-top: 40px;
                border-right: none;

                .dot {
                    display: none;
                }

                .btn-secondary {
                    width: 100%;
                    max-width: 100%;
                    text-align: center;
                }

                .btn-primary {
                    width: 100%;
                    max-width: 100%;
                    text-align: center;
                    align-items: center;
                    justify-content: center;
                    position: relative;
                    height: 48px;
                    font-size: 14px;
                    font-weight: 600;

                    .arrow {
                        position: absolute;
                        right: 8px;
                    }
                }
            }

            .tagline {
                width: 100%;
                padding: 0 16px;
                gap: 16px;
                margin-bottom: 0;
                margin-left: 0;
                flex-direction: row-reverse;
                justify-content: flex-end;
            }

            .hero-image {
                width: 100%;
                display: flex;
                position: absolute;
                top: 0;

                .desktop {
                    display: none;
                }

                .mobile {
                    display: block;
                    // height: 600px;

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

    @media screen and (min-width: 1800px) {
         .container {
            .button-section {
                //margin-left: max(32px, calc((100vw - 1439px) / 2 + 32px));
                min-width: 400px;
                border-right: 0;
            }
        }
    }
}