.hero-banner-carousel{
    --nb-description-rows: 3;
}

.hero-banner-carousel .nb-item{
    position: relative;
}

.hero-banner-carousel .slider{
    position: relative;
}

.hero-banner-carousel .nb-item .nb-content-wrapper{
    position: absolute;
    max-width: 600px;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    text-align: center;
}

.hero-banner-carousel .nb-text-wrapper{
    color: #FFFFFF;
    margin-bottom: 25px;
}

.hero-banner-carousel .nb-text-wrapper:last-child{
    margin-bottom: 0;
}

.hero-banner-carousel .nb-text-wrapper .nb-title{
    font-size: var(--nb-title-font-size);
    line-height: 1.1;
    font-weight: var(--nb-font-bold);
    margin-bottom: 10px;
    max-height: calc(2 * 1.1 * var(--nb-title-font-size));
    overflow: hidden;
}
.hero-banner-carousel .nb-text-wrapper .nb-title:last-child{
    margin-bottom: 0;
}

.hero-banner-carousel .nb-text-wrapper .nb-description{
    font-size: var(--nb-description-font-size);
    line-height: 1.1;
    max-height: calc(var(--nb-description-rows) * 1.1 * var(--nb-description-font-size));
}

.hero-banner-carousel .nb-item .nb-content-wrapper .nb-btn-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.hero-banner-carousel .nb-item .nb-content-wrapper .nb-btn-wrapper > a {
    /*padding: 10px 50px;*/
    flex-shrink: 0;
    /*--nb-btn-min-width: 150px;*/
}

.hero-banner-carousel .nb-item .nb-content-wrapper .nb-btn-wrapper > a:last-child {
    margin-right: 0;
}

.hero-banner-carousel .nb-slider-dots{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}




/* OPCIJE BLOKA */

/* pozicioniranje contenta*/
.hero-banner-carousel .nb-content-wrapper.nb-content-left{
    right: unset;
    left: 100px;
}

.hero-banner-carousel .nb-content-wrapper.nb-content-center{
    right: unset;
    left: 50%;
    transform: translate(-50%,-50%);
}

.hero-banner-carousel .nb-content-wrapper.nb-content-center-bottom{
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    top: unset;
}

.hero-banner-carousel .nb-content-wrapper.text-start .nb-btn-wrapper {
    justify-content: start;
}

.hero-banner-carousel .nb-content-wrapper.text-end .nb-btn-wrapper {
    justify-content: end;
}

/* Arrows */
.hero-banner-carousel .nb-slider-arrows .slider-arrow > i{
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: #ffffff4d;
    cursor: pointer;
    position: relative;
}

.hero-banner-carousel .nb-slider-arrows .slider-arrow > i.nb-arrow-left{
    left: 40px !important;
}

.hero-banner-carousel .nb-slider-arrows .slider-arrow > i.nb-arrow-right{
    right: 40px !important;
}

@media screen and (max-width: 768px){
    .hero-banner-carousel{
        /*margin-left: calc(-.5 * var(--nb-gutter-x));*/
        /*margin-right: calc(-.5 * var(--nb-gutter-x));*/
    }

    .hero-banner-carousel .nb-item .nb-content-wrapper{
        max-width: unset;
        right: unset !important;
        left: unset !important;
        transform: none;
        width: 100%;
        top: 0;
        bottom: 0;
        padding: 35px 25px 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center !important;
    }

    .hero-banner-carousel .nb-item .nb-content-wrapper.nb-content-center-bottom{
        top: unset;
        padding-bottom: 0;
        bottom: 20px;
    }


    .hero-banner-carousel .nb-text-wrapper .nb-title{
        max-height: calc(2 * var(--nb-body-line-height) * 30px);
    }


    .hero-banner-carousel .nb-slider-dots{
        position: relative;
        bottom: unset;
        left: unset;
        transform: translateX(0);
    }

    .hero-banner-carousel .nb-item .nb-content-wrapper .nb-btn-wrapper{
        justify-content: center !important;
    }
}