/* Home ONLY */
.banner {
    position: relative;
    height: 500px;
    max-height: 500px;
    min-height: 500px;
}
.banner .swiper-slide.t1, .swiper-slide.t1 {
    
    background: linear-gradient(135deg, #ffb81c, #fa7516, #ffb81c);
    position: relative;
    min-height: 500px;
}
.banner .swiper-slide.t1 img, .swiper-slide.t1 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.banner .swiper-slide.t1 .info, .swiper-slide.t1 .info {
    position: absolute;
    left: 0rem;
    top: 0rem;
    width: 100%;
    padding: 2rem;
    background: rgba(255, 184, 28, 0.6);
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}
.banner .swiper-slide.t1 .info .i1, .swiper-slide.t1 .info .i1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 5px 5px 4px rgba(250, 70, 22, .5);

}
.banner .swiper-slide.t1 .info .separator, .swiper-slide.t1 .info .separator {
    width: 200px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 4px;
}
.banner .swiper-slide.t1 .info .i2, .swiper-slide.t1 .info .i2 {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 5px 5px 4px rgba(250, 70, 22, .5);
}


.banner .swiper-slide.t2, .swiper-slide.t2 {
    background: var(--primary-color);
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    animation: colorShift 6s ease-in-out infinite;
}

@keyframes colorShift {
    0% {
        background: var(--primary-color);
    }
    50% {
        background: var(--senary-color);
    }
    75% {
        background: var(--septenary-color);
    }
    100% {
        background: var(--primary-color);
    }
}
.banner .swiper-slide.t2 .video, .swiper-slide.t2 .video {
    width: 50%;
    height: auto;
    z-index: 1;
}
.banner .swiper-slide.t2 .video img, .swiper-slide.t2 .video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .swiper-slide.t2 .info, .swiper-slide.t2 .info {
    width: 45%;
    text-align: center;
}
.banner .swiper-slide.t2 .info .i1, .swiper-slide.t2 .info .i1 {
    font-size: 6.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem;
    text-transform: uppercase;
}
.banner .swiper-slide.t2 .info .i2, .swiper-slide.t2 .info .i2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}
.banner .swiper-slide.t2 .info .figure, .swiper-slide.t2 .info .figure {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-top: .75rem;
}

.banner .swiper-slide.t3, .swiper-slide.t3 {
    background: var(--secondary-color);
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner .swiper-slide.t3 .info .bann {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    background: var(--primary-color);
    padding: 1rem 6rem 2rem 3rem;
    border-radius: 200px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    position: absolute;
    top: 50px;
}
.banner .swiper-slide.t3 .info .bann .b1, .swiper-slide.t3 .info .bann .b1 {
    font-size: 6.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    text-transform: uppercase;
    text-shadow: 6px 4px 2px #FFB81C;
    animation: shadowMove 5s ease-in-out infinite;
}

.banner .swiper-slide.t3 .info .bann .b2, .swiper-slide.t3 .info .bann .b2 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--secondary-color);
    text-transform: uppercase;
    text-shadow: 6px 4px 2px #FFB81C;
    margin-top: -3.5rem;
    animation: shadowMove 3s ease-in-out infinite;
}

@keyframes shadowMove {
    0% {
        text-shadow: 2px 2px 2px #FFB81C;
    }
    50% {
        text-shadow: 6px 6px 2px #FFB81C;
    }
    100% {
        text-shadow: 2px 2px 2px #FFB81C;
    }
}

.banner .swiper-slide.t3 .info .b3, .swiper-slide.t3 .info .b3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    position: absolute;
    bottom: 110px;
    left: 3rem;
}
.banner .swiper-slide.t3 .info .bb, .swiper-slide.t3 .info .bb {
    position: absolute;
    bottom: 50px;
    left: 3rem;
}
.banner .swiper-slide.t3 .info .bb .btn-viewall, .swiper-slide.t3 .info .bb .btn-viewall {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(270deg, #FFB81C, #fa4616, #FFB81C, #67dae5);
    background-size: 400% 400%;
    animation: gradientBG 6s ease infinite;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    transition: background 0.4s, color 0.4s;
}
.banner .swiper-slide.t3 .info .bb .btn-viewall:hover, .swiper-slide.t3 .info .bb .btn-viewall:hover {
    color: #fff;
}
.banner .swiper-slide.t3 .slider, .swiper-slide.t3 .slider {
    position: absolute;
    top: 0;
    right: 6rem;
    text-align: right;
}
.banner .swiper-slide.t3 .slider .slider-img, .swiper-slide.t3 .slider .slider-img {
    width: auto;
    height: 500px;
    object-fit: cover;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


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



.swiper-pagination1 {
    width: auto !important;
    background-color: var(--senary-color);
    padding: 0.5rem 1.5rem;
    margin-left: calc(50vw - 52px);
    border-radius: 1.5rem;
    margin-bottom: -25px;
    min-width: 90px;
}
.swiper-pagination1 .swiper-pagination-bullet {
    background-color: var(--tertiary-color);
    height: 10px;
    width: 10px;
    border-radius: 10px;
}
.swiper-pagination1 .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 30px;
    height: 10px;
    border-radius: 10px;
}


.order-line2 {
    padding: 5px;
    background: transparent;
    border-radius: 50px;
    border: 2px solid #fff;
    display: inline-block;
    position: relative;
    /* 初始阴影 */
    box-shadow: 0 0 0 0 rgba(250, 70, 22, 0.6);
    animation: notifyPulse2 1.5s infinite;
}
.btn-order2 {
    font-size: 1.75rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5vw;
    background: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
}
@keyframes notifyPulse2 {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
















/* Benefit */
.benefit {
    background: #fff;
    padding: 5rem 5vw 5rem;
}
.benefit .title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--quinary-color);
    text-align: center;
    margin-bottom: 4rem;
    text-transform: capitalize;
}
.benefit .title b {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 4rem;
}

.benefit .benefit-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.benefit .benefit-list .benefit-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
}
.benefit .benefit-list .benefit-item .benefit-item-icon {
    border: 8px solid var(--primary-color);
    border-radius: 120px;
    width: 400px;
    min-width: 400px;
    height: 250px;
    max-height: 250px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
}
.benefit .benefit-list .benefit-item .benefit-item-icon img {
    width: 100%;
    height: 200px;
    border-radius: 100px;
    object-fit: cover;
}
.benefit .benefit-list .benefit-item .benefit-item-icon img.floatout {
    width: auto;
    height: 230px;
}
.benefit .benefit-list .benefit-item .info {

}
.benefit .benefit-list .benefit-item .info .benefit-item-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: .75rem;
    text-transform: uppercase;
}
.benefit .benefit-list .benefit-item .info .benefit-item-description {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    text-align: justify;
}






/* Introduce */
.introduce {
    position: relative;
    height: auto;
    min-height: 70vh;
}
.introduce-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.introduce-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fa4716e8;
}
.introduce .content {
    z-index: 3;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0rem 5vw;
}
.introduce .content .info {
    flex: 1;
    padding: 3.5rem 0;
    
}
.introduce .content .info .t1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.introduce .content .info .t2 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: .75rem;
    text-transform: capitalize;
}
.introduce .content .info .t3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
    text-transform: capitalize;
}
.introduce .content .info .t4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 2rem;
}
.introduce .content .info .btn-learn {
    font-size: 1.375rem;
    font-weight: 800;
    color: #fff;
    background: var(--quinary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}
.introduce .content .info .btn-learn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.introduce .content .image {
    width: fit-content;
    flex: 1;
}
.introduce .content .image img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .banner {
        min-height: 400px;
        max-height: 400px;
        height: 400px;
    }
    .banner .swiper-slide.t1, .swiper-slide.t1 {
        min-height: 400px;
    }
    .banner .swiper-slide.t2, .swiper-slide.t2 {
        height: 400px;
    }
    .banner .swiper-slide.t1 img, .swiper-slide.t1 img {
        height: 400px;
    }
    .banner .swiper-slide.t1 .info, .swiper-slide.t1 .info {
        padding: 1rem;
    }
    .banner .swiper-slide.t1 .info .i1, .swiper-slide.t1 .info .i1 {
        font-size: 2.5rem;
    }
    .banner .swiper-slide.t1 .info .separator, .swiper-slide.t1 .info .separator {
        width: 100px;
        height: 4px;
    }
    .banner .swiper-slide.t1 .info .i2, .swiper-slide.t1 .info .i2 {
        font-size: 1.5rem;
    }
    .banner .swiper-slide.t2, .swiper-slide.t2 {
        padding: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 1.5rem;
    }
    .banner .swiper-slide.t2 .video, .swiper-slide.t2 .video {
        width: 100%;
        margin-bottom: -90%;
    }
    .banner .swiper-slide.t2 .info, .swiper-slide.t2 .info {
        width: 100%;
        margin-bottom: -10px;
        position: relative;
        z-index: 8;
    }
    .banner .swiper-slide.t2 .info .i1, .swiper-slide.t2 .info .i1 {
        font-size: 3rem;
    }
    .banner .swiper-slide.t2 .info .i2, .swiper-slide.t2 .info .i2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    .banner .swiper-slide.t3, .swiper-slide.t3 {
        height: 400px;
    }
    .banner .swiper-slide.t3 .info .bann {
        padding: .5rem 1rem 1rem;
        position: absolute;
        top: 0;
        width: 100%;
        border-radius: 0;
    }
    .banner .swiper-slide.t3 .info .bann .b1, .swiper-slide.t3 .info .bann .b1 {
        font-size: 2.5rem;
    }
    .banner .swiper-slide.t3 .info .bann .b2, .swiper-slide.t3 .info .bann .b2 {
        font-size: 2rem;
        margin-top: -.75rem;
    }
    .banner .swiper-slide.t3 .info .b3, .swiper-slide.t3 .info .b3 {
        font-size: 1.25rem;
        top: 130px;
        left: 1rem;
    }
    .banner .swiper-slide.t3 .info .bb, .swiper-slide.t3 .info .bb {
        left: 0;
        bottom: 80px;
        width: 100%;
        text-align: center;
    }
    .banner .swiper-slide.t3 .slider .slider-img, .swiper-slide.t3 .slider .slider-img {
        display: none;
    }

    .benefit {
        padding: 3rem 5vw;
    }
    .benefit .title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .benefit .title b {
        font-size: 2.5rem;
    }
    .benefit .benefit-list {
        gap: 2rem;
    }
    .benefit .benefit-list .benefit-item {
        max-width: 100%;
        flex-direction: column;
        gap: 2rem;
    }
    .benefit .benefit-list .benefit-item.tf {
        flex-direction: column-reverse;
    }
    .benefit .benefit-list .benefit-item .benefit-item-icon {
        width: 300px;
        min-width: 300px;
        height: 180px;
        max-height: 180px;
    }
    .benefit .benefit-list .benefit-item .benefit-item-icon img {
        height: 150px;
    }
    .benefit .benefit-list .benefit-item .benefit-item-icon img.floatout {
        height: 180px;
    }
    .benefit .benefit-list .benefit-item .info .benefit-item-title {
        font-size: 1.5rem;
        text-align: center;
    }
    .benefit .benefit-list .benefit-item .info .benefit-item-description {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5;
    }

    .introduce .content {
        flex-direction: column;
    }
    .introduce .content .info {
        padding: 2rem 0;
    }
    .introduce .content .image img {
        width: 100%;
        height: auto;
    }
    .introduce .content .info .t1 {
        font-size: 1.75rem;
    }
    .introduce .content .info .t2 {
        font-size: 3rem;
    }
    .introduce .content .info .t3 {
        font-size: 1.25rem;
    }
    .introduce .content .info .t4 {
        font-size: .9rem;
    }
    .introduce .content .info .btn-learn {
        font-size: 1rem;
        padding: .75rem 2rem;
    }

}


/* Special for Carousel Product in Banner */
.slideshow {
    position:relative;
    width:600px;
    height:400px;
    overflow:hidden;
    border-radius:12px;
}

.slideshow img {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:auto !important;
    object-fit:contain;
    opacity:0;
    transition:opacity .25s ease-in-out;
}

.slideshow img.active {
    opacity:1;
}

@media (max-width: 768px) {
    .slideshow {
        width: 100%;
    }
}
