#hero-carousel {
    p.slider-text-1 {
        font-size: 1rem;
        line-height: 1.3rem;
        background-color: #f8931ecc;
        color: #000;
        padding: 20px;
        width: 100%;
        text-align: justify;
        font-style: italic;
        margin-left: auto;

        &.slider-heading {
            font-size: 2.2rem;
            font-weight: 300;
            text-align: right;
            line-height: 2.5rem;
        }
    }



    p.slider-text-2 {
        font-size: 1rem;
        line-height: 1.3rem;
        background-color: #000000AA;
        color: #FFF;
        padding: 20px;
        width: 100%;
        text-align: justify;
        font-style: italic;
        margin-left: auto;
    }

    .carousel-caption {
        right: 5%;
        bottom: 4rem;
        left: 5%;
        width: 25%;
        margin-left: auto;
    }

    .carousel-indicators [data-bs-target] {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        margin-left: 10px;
        margin-right: 10px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        opacity: 1;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        opacity: 1;
        background-image: none !important;


    }
}

@media only screen and (min-width: 992px) {
    #hero-carousel .carousel-item {
        height: 100svh;
    }
}

@media only screen and (max-width: 991px) {
    #hero-carousel {
        p.slider-text-1 {
        font-size: 0.8rem;
        line-height: 1rem;

            &.slider-heading {
                font-size: 1.5rem;
                text-align: center;
                line-height: 2rem;
            }
        }

        p.slider-text-2 {
            font-size: 0.8rem;
            line-height: 1rem;
            padding: 15px;
        }

        .carousel-control-prev-icon svg,
        .carousel-control-next-icon svg {
            width: 60px;
            height: 60px;
        }
    }
}

@media only screen and (max-width: 768px) {
    #hero-carousel {
        .carousel-control-prev-icon svg,
        .carousel-control-next-icon svg {
            width: 50px;
            height: 50px;
        }

            .carousel-indicators [data-bs-target] {
                width: 10px;
                height: 10px;
            }
    }
}

@media only screen and (max-width: 480px) {
    #hero-carousel {
        .carousel-control-prev-icon svg,
        .carousel-control-next-icon svg {
            width: 30px;
            height: 30px;
        }
    }
}