    /* Box1 */

    .bannerBox {
        position: relative;
        z-index: 2;
    }

    .bannerBox::after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 3;
        background: linear-gradient(180deg, rgba(77, 77, 77, 0.62) 0%, rgba(102, 102, 102, 0) 49%, rgba(32, 32, 32, 0.64) 100%);
    }

    .bannerBox .iconLogo {
        position: absolute;
        z-index: 4;
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        padding-top: 100px;
    }

    .bannerBox .bj {
        display: block;
        width: 100%;
        position: relative;
        z-index: 3;
    }

    .bannerBox video {
       
        position: relative;
        width: 100%;
        object-fit: cover;
    }

    .bannerBox .text {
        position: absolute;
        z-index: 5;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 0 var(--container);
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .bannerBox .text h1 {
        font-weight: bold;
        font-size: 44px;
        line-height: 1.5;
        letter-spacing: 0.03em;
        color: #FFFFFF;
        text-shadow: 0px 4px 12.3px rgba(0, 0, 0, 0.76);
        margin-bottom: 20px;
    }

    .bannerBox .text h2 {
        font-size: 16px;
        line-height: 1.5;
        color: #FFFFFF;
        text-transform: uppercase;
        opacity: 0.8;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.67);
    }

    .bannerBox .text span {
        display: none;
    }



    @media (max-width: 1440px) {
        .bannerBox .text h1 {
            font-size: 40px;
        }
    }

    @media (max-width: 1200px) {
        .section1 {
            margin-top: 60px;
        }

        .bannerBox .text h1 {
            font-size: 32px;
        }

        .bannerBox .iconLogo {
            padding-top: 0px;
        }
    }

    .videoBanner {
        display: none;
    }

    @media (max-width: 720px) {
        .bannerBox .text h1 {
            font-size: 24px;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .bannerBox .text h2 {
            font-size: 16px;
            line-height: 1.5;
        }

        .bannerBox .text span {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 30px;
            width: 180px;
            height: 45px;
            font-size: 16px;
            background: #fff;
            color: var(--color);
            border-radius: 50px;
            border: 2px solid var(--color);
        }

        .bannerBox .video1 {
            display: none;
        }


        .videoBanner.cur {
            padding: 5vw;
            display: block;
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;
            display: flex;
            align-items: center;
            background: #00000099;
        }

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

    @media (max-width: 460px) {}
