.sp-section {
    background: none;
}

.sp-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
    aspect-ratio: 1920 / 995;
    overflow: hidden;
    background:
            url(/iv-pages/ru/videonablyudenie-dlya-prodazhi-sim-kart/startPage/img/background.png)
            bottom center / 100% auto no-repeat,
            linear-gradient(to top, #0095FF 200px, transparent 0);
}

.sp-container__inner {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(90%, 980px);
    text-align: center;
    color: #fff;
    z-index: 3;
    padding: clamp(12px, 2vw, 24px);
    border-radius: 16px;
}

.sp-title {
    font-family: "Golos Text", Roboto, Arial, Helvetica, sans-serif;
    margin: 0 0 14px;
    line-height: 1.1;
    letter-spacing: .02em;
    font-size: clamp(25px, 4.6vw, 64px);
}

.sp-text {
    font-family: "Golos Text", Roboto, Arial, Helvetica, sans-serif;
    margin: 0 0 26px;
    opacity: .9;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.45;
}

.sp-button {
    display: inline-block;
    margin-left: 17px;
    padding: 10px 22px;
    text-align: center;
    align-content: center;
    border-radius: 10px;
    height: 56px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgb(34, 197, 94) 0%, rgb(14, 165, 233) 100%);
    box-shadow: rgba(14, 165, 233, 0.35) 0px 8px 24px, rgba(0, 0, 0, 0.25) 0px 2px 6px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    transform: none;
}

.sp-img {
    display: none;
}
@media (max-width: 900px) {
    .sp-section {
        height: auto;
        background-color: #fff;
    }

    .sp-container {
        background: #fff;
        height: auto;
        width: 100%;
        overflow: visible;
        margin-top: 0;
    }

    .sp-container__inner {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: min(92%, 980px);
        margin: 24px auto;
        text-align: start;
    }

    .sp-title, .sp-text {
        color: black;
        text-align: start;
    }

    .sp-button {
        width: 100%;
        height: 56px;
        font-size: 17px;
        margin-left: 0;
    }

    .sp-img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        padding: 0 7% 7% 7%;
    }
}