/* banner */
.bannerbigbox {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
}

.bannerSlide {
    width: 100%;
    position: relative;
    z-index: 1;
}

.bannerSlide>img {
    width: 100%;
}

.bannerSlide .text {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.bannerSlide .text .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.bannerSlide .text span {
    width: 240px;
    height: 40px;
    background: var(--color2);
    font-size: 26px;
    letter-spacing: 0.23em;
    color: #FFFFFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerSlide .text h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.25;
    color: #FFFFFF;
    margin: 30px 0;
}

.bannerSlide .text h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 50px;
    max-width: 600px;
}

.bannerSlide .text img {
    display: block;
}


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

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

@media (max-width: 1200px) {
    .bannerSlide .text h1 {
        font-size: 42px;
        margin: 20px 0;
    }

    .bannerSlide .text h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .bannerSlide .text span {
        width: 160px;
        height: 30px;
        font-size: 18px;
    }

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

    .bannerSlide .text h2 {
        font-size: 16px;
    }

    .bannerSlide .text img {
        height: 30px;
    }
}

@media (max-width: 640px) {
    .bannerSlide>img {
        width: 100%;
        min-height: 300px;
        object-fit: cover;
    }

    .bannerSlide .text h1 {
        font-size: 24px;
        margin: 15px 0;
        margin-bottom: 15px;
    }
}
