.banner-with-title-subtitle-and-2-buttons-below-image .nb-card{
    border-radius: var(--nb-border-radius-s);
    overflow: hidden;
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-content-wrapper{
    text-align: center;
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-text-wrapper{
    margin-bottom: calc(var(--nb-spacer-y) / 2);
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-text-wrapper:last-child{
    margin-bottom: 0;
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-text-wrapper > *{
    margin-bottom: calc(var(--nb-spacer-y) / 2);
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-text-wrapper > *:last-child{
    margin-bottom: 0;
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-text-wrapper .nb-title > *{
    margin-bottom: 0;
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-btn-wrapper{
    display: flex;
    justify-content: center;
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-btn-wrapper .nb-btn + .nb-btn{
    margin-left: 20px;
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-content-wrapper.nb-content-left {
    text-align:left;
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-content-wrapper.nb-content-left .nb-btn-wrapper {
    justify-content:left;
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-content-wrapper.nb-content-right {
    text-align:right;
}

.banner-with-title-subtitle-and-2-buttons-below-image .nb-content-wrapper.nb-content-right .nb-btn-wrapper {
    justify-content:right;
}
@media screen and (max-width: 576px) {
    .banner-with-title-subtitle-and-2-buttons-below-image .nb-btn-wrapper{
        align-items: center;
        gap: 10px;
    }

    .banner-with-title-subtitle-and-2-buttons-below-image .nb-btn-wrapper .nb-btn + .nb-btn{
        margin-left: 0;
    }

    .banner-with-title-subtitle-and-2-buttons-below-image .nb-content-wrapper.nb-content-left .nb-btn-wrapper {
        align-items:start;
    }

    .banner-with-title-subtitle-and-2-buttons-below-image .nb-content-wrapper.nb-content-right .nb-btn-wrapper {
        align-items:end;
    }
}