.SecurityHeroSection {
    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: auto 26.2% auto 26%;
        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: repeat(4, 1fr);
        grid-template-rows: 16% 22% 31% auto;
        margin: 0 auto;
        position: relative;

        span {
            display: block;
        }

        .title-section {
            position: relative;
            z-index: 3;
            grid-column: 2/5;
            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;
        }

        .desc {
            position: relative;
            max-width: 678px;
            margin-right: auto;
            z-index: 3;
            grid-column: 3 / 5;
            grid-row: 4;
            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;
        }

        .tagline {
            position: relative;
            z-index: 3;
            grid-column: 1 / 4;
            grid-row: 2;
            align-self: start;
            display: flex;
            align-items: center;
            gap: 40px;
            margin-left: 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: 1250px) {
        .background {
            .col {
                &::before {
                    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.1) 40%, transparent 100%);
                }
            }
        }

    }

    @media screen and (min-width: 600px) and (max-width: 1024px) {
        .container {
            height: 614px;
            grid-template-rows: 21% 32% auto;
            grid-template-columns: 49% auto 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: 578px;
            }

            .desc {
                max-width: 364px;
                font-size: 16px;
                padding: 0;
                margin-left: 0;
                margin-top: 0;
                margin-bottom: 0;
                grid-row: 3;
                align-self: self-start;
                grid-column: 2 / 5;
                border-left: unset;
            }

            .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;
            }

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

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

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

        .container {
            display: flex;
            flex-direction: column;
            // height: 600px;
            padding: 94px 0 0;
            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: 20%;
                margin-bottom: 56px;
            }

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

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

                .desktop {
                    display: none;
                }

                .mobile {
                    display: block;
                    // height: 600px;
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
        }
    }

    @media screen and (max-width: 400px) {
        .container {

            .hero-image {
                .mobile {
                    object-fit: cover;
                }
            }
        }
    }
}