.simple-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2rem;
    color: #fff;
}
.simple-banner_with_image__bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    z-index:1;
}

/* Overlay */

.simple-banner__overlay {
    position: absolute;
    inset: 0;
    background: #00000080;
}

/* Content container */

.simple-banner__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 24px 16px;
}

/* Title */

.simple-banner__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px;
}

/* Subtitle */

.simple-banner__subtitle {
    font-size: 16px;
    margin-bottom: 16px;
}

/* Legal text */

.nri-text-banner {
    padding-top: 12px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: -0.42px;
    max-width: 100%;
    display: block;
}

    .header__button {
        background: -webkit-gradient(linear, left top, left bottom, from(#01ebbf), to(#01f685));
        background: linear-gradient(#01ebbf, #01f685);
        border: none;
        border-radius: 20px;
        color: #1a1a1a;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 205px;
        padding: 8px 24px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        font-size: 16px;
        font-weight: 500;
        justify-content: center;
    }

    .nri-text-banner a {
        color: #fff;
        text-decoration: underline;
    }

/* ---------- Tablet ---------- */

@media (min-width:768px){

.simple-banner__content{
    padding: 32px 32px;
}

.simple-banner__title{
    font-size: 36px;
}

.simple-banner__subtitle{
    font-size: 18px;
}

.nri-text-banner{
    max-width: 480px;
}

}

/* ---------- Desktop ---------- */

@media (min-width:1024px){

.simple-banner__content{
    padding: 32px 64px;
}

.simple-banner__title{
    font-size: 48px;
}

.simple-banner__subtitle{
    font-size: 20px;
}

.nri-text-banner{
    max-width: 544px;
}

}