* {
    margin: 0px;
    padding: 0px;
}

.heroSlider {
    background-image: url("../img/slider_img_01.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* clip-path: polygon(50% 0%, 100% 0, 100% 83%, 25.5% 100%, 0 90%, 0 0); */
    min-height: 750px;
    position: relative;
    margin-bottom: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.heroslider-wrapper {
    position: relative;
}

/*.heroslider-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    background: url('../img/slider-design-arrow.png') no-repeat;
    background-size: 100% 200px;
    background-position: left;
    bottom: -35px;
    left: 0;
    right: 0;
    z-index: -1;
}*/

.heroSlider .slide-content {
    padding: 80px 0px 70px 0px;
    border-radius: 20px;
    /* background-color: rgb(0 0 0 / 55%); */
}

.heroSlider .swiper {
    width: 100%;
}

.herotitle {
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
}

.bg-green {
    background: #BDD800;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
    font-size: 46px;
    font-weight: 400;
    
}

.para {
    font-family: 'Poppins', sans-serif;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
}

.green-btn {
    background: #BDD800;
    color: black;
    clip-path: polygon(0px 0px, calc(100% - 10px) 0px, calc(100% - 0px) 13px, calc(100% - 0px) calc(100% - 0px), 0px calc(100% - 0px), 0px 0px);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    gap: 10px;
    min-width: 200px;
    transition: 0.3s all ease-in-out;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.green-btn:hover {
    background-color: #000;
    color: #FFF;
}

.hero-navigation {
display: flex;
    position: absolute;
    width: 100%;
    max-width: 120px;
    justify-content: space-between;
    bottom: 50%;
    right: 20%;
}

.hero-navigation .swiper-button-prev,
.hero-navigation .swiper-button-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background-image: url('data:image/svg+xml,<svg width="57" height="64" viewBox="0 0 57 64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.90234 17L28.1523 2L54.4023 17V47L28.1523 62L1.90234 47V17Z" fill="black"/><path d="M1.82711 16.3488L1.44922 16.5648V17V47V47.4352L1.82711 47.6512L28.0771 62.6512L28.4492 62.8638L28.8213 62.6512L55.0713 47.6512L55.4492 47.4352V47V17V16.5648L55.0713 16.3488L28.8213 1.34882L28.4492 1.13619L28.0771 1.34882L1.82711 16.3488Z" stroke="%23F0C325" stroke-width="1.5"/></svg>');
    background-repeat: no-repeat !important;
    background-size: 45px !important;
    background-position: center !important;
    opacity: 1 !important;
    position: unset;
    margin: 0px;
}

.hero-navigation .swiper-button-prev::after,
.hero-navigation .swiper-button-next:after {
    font-size: 16px;
}

.hero-navigation .swiper-button-prev.swiper-button-disabled,
.hero-navigation .swiper-button-next.swiper-button-disabled {
    background-image: url('data:image/svg+xml,<svg width="55" height="64" viewBox="0 0 55 64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.05271 16.5659L0.800781 16.7098V17V47V47.2902L1.05271 47.4341L27.3027 62.4341L27.5508 62.5759L27.7989 62.4341L54.0489 47.4341L54.3008 47.2902V47V17V16.7098L54.0489 16.5659L27.7989 1.56588L27.5508 1.42412L27.3027 1.56588L1.05271 16.5659Z" fill="black" stroke="%232B2B2B"/></svg>') !important;
}


@media (max-width: 992px) {
    .herotitle {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .hero-navigation {
        bottom: 30%;
        right: auto;
    }
    .heroSlider {
        min-height: 750px;   
    }

    .herotitle {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .hero-navigation {
        bottom: 10%;
        right: auto;
    }
    .heroSlider {
        min-height: 100%;
    }

    .herotitle {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 28px;
        margin-bottom: 0;
    }

    .heroSlider .slide-content {
        padding: 50px 0px 80px 0px;
    }

    .hero-navigation {
        margin-bottom: 100px;
    }
}