.banner-slider {
    position: relative;
}


.banner-slider .banner-slide {
    position: relative;
}

.slider-ptrn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

.banner-slide .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background: linear-gradient(0.25turn, #000000e1, #00000000); */
    background: #00000080;
    z-index: 2;
}


.triangle {
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 500px 300px 600px 0;
    border-color: transparent #cba0353a transparent transparent;
    transform: rotate(0deg);
    z-index: 5;
}


.banner-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 6;
}

.banner_content-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;

}

.slider_content {
    text-align: center;
}

.slider-title {
    max-width: 100%;
    font-size: clamp(16px, 4vw, 50px);
    color: #fffdf2;
    font-weight: 600;
    line-height: clamp(0px, 5vw, 65px);
    font-family: "Archivo", sans-serif;
}

.slider-subtitle {
    display: block;
    color: #fffdf2;
    font-weight: 200;
    font-size: clamp(12px, 1.5vw, 14px);
}

.slider_butn {
    padding: clamp(0.3rem, 1vw, 0.438rem) clamp(0.75rem, 3vw, 1rem);
    font-size: clamp(12px, 1.5vw, 14px);
    background-color: #f28c28;
    color: #FFF;

}


.banner-slider .swiper-button-prev,
.banner-slider .swiper-button-next {
    display: none;
    color: #FFF;
}


.banner-slider .swiper-button-prev::after,
.banner-slider .swiper-button-next::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background-color: #a3b18a32;
    height: 35px;
    width: 35px;
    border-radius: 100%;

}


.banner_bottom {
    position: relative;
}


.banner_bottom>.wrapper {
    position: relative;
    z-index: 5;

}

@media (max-width:1000px) {
    .slider-title {
        max-width: 100%;
    }

    .slider_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner_content-inner {
        justify-content: center;
        margin-left: 0;
    }

    .banner-slide .bg {

        width: 100%;
        background: #00000080;
    }

    /* .banner-slide{
        height: calc(100vh - 100px);
    }

    .banner-slide .slider_img img{
        height: calc(100vh - 100px);
        object-fit: cover;
        object-position:  right center;
    } */

}

@media (min-width:1000px) {
    .banner_bottom>.wrapper {

        margin-top: -60px;
    }
}

@media (min-width:1200px) {
    .banner_bottom>.wrapper {

        margin-top: -100px;
    }
}

.banner-slider .swiper-slide-active .slider_butn {
    animation-delay: 2s;
}

.banner-slider .swiper-slide-active .slider-subtitle {
    animation-delay: 1.5s;
}

.banner-slider .swiper-slide-active .slider_butn,
.banner-slider .swiper-slide-active .slider-subtitle,
.banner-slider .swiper-slide-active .slider-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}