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

    .background {
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        display: grid;
        grid-template-columns: 33.33% 33.33% 33.34%;
        grid-template-rows: 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%);
            }
        }
    }

    .container {
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-columns: 33.33% 33.33% 33.34%;
        grid-template-rows: 31.7% 12.5% auto;
        margin: 0 auto;
        position: relative;
        .title-section {
            position: relative;
            z-index: 3;
            grid-column: 1 / 3;
            grid-row: 1;
            align-self: end;
            max-width: 793px;
            margin-left: max(32px, calc((100vw - 1439px) / 2 + 32px));
            color: #FFF;
            font-family: 'Manrope';
            font-size: 56px;
            font-style: normal;
            font-weight: 500;
            line-height: 110%;
            letter-spacing: -1.12px;
        }

        .desc {
            position: relative;
            max-width: 403px;
            margin-right: auto;
            margin-bottom: 10.5%;
            margin-left: -0.1rem;
            z-index: 3;
            grid-column: 3 / 4;
            grid-row: 1;
            padding-left: 40px;
            padding-right: 40px;
            align-self: end;
            color: #FFF;
            font-family: 'Manrope';
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            border-left: 2px solid #fff;
        }

        .button-section {
            display: flex;
            align-items: center;
            gap: 25px;
            grid-column: 1 / 3;
            grid-row: 2;
            height: fit-content;
            align-self: end;
            margin-right: -0.02rem;
            margin-left: max(32px, calc((100vw - 1439px) / 2 + 32px));
            position: relative;
            z-index: 3;
            .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: 220px;
                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: 180px;
                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);
                backdrop-filter: blur(8px);
                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: 3/4;
            grid-row: 2;
            align-self: end;
            display: flex;
            align-items: center;
            gap: 40px;
            margin-left: -0.3rem;
            margin-bottom: 2.4%;

            .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 / 4;
            grid-row: 1 / 4;

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

            .mobile {
                display: none;
            }
        }
    }

    @media screen and (min-width: 600px) and (max-width: 1250px) {
        .container {
            grid-template-rows: 44% 12.5% auto;
        }

    }

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

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

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

            .desc {
                font-size: 16px;
                padding: 0 16px;
                margin-left: 16px;
                margin-top: 20%;
                margin-bottom: 32px;
            }

            .tagline {
                width: 100%;
                padding: 0 16px;
                gap: 16px;
                margin-bottom: 0;
            }

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

                .dot {
                    display: none;
                }

                .btn-secondary {
                    width: 100%;
                    max-width: 100%;
                    text-align: center;
                    font-size: 14px;
                }

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

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

            .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: 600px) and (max-width: 1024px) {
        .container {
            height: 600px;
            grid-template-rows: auto;
            gap: 40px;

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

            .desc {
                max-width: 558px;
                font-size: 16px;
                padding: 0 16px 0 40px;
                margin-left: 24px;
                margin-top: 0;
                margin-bottom: 0;
                grid-row: 3;
                align-self: self-start;
                grid-column: 1/3;
            }

            .tagline {
                width: 100%;
                padding: 0 24px;
                gap: 16px;
                grid-column: 1/3;
                grid-row: 1;
                align-self: self-start;
                margin-top: 80px;
            }

            .button-section {
                width: 100%;
                padding: 0 24px;
                gap: 25px;
                grid-column: 1 / 4;
                grid-row: 4;
                margin-left: 0;
                align-self: center;
                border-right: unset;
            }

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

                img {
                    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;
            }
        }
    }
}