.section-2 {
    padding: 44px 0;
    position: relative;
    overflow: hidden;
}

.section-2__container {
    display: flex;
    gap: 91px;
}

.section-2 .group {
    flex: 1;
    position: relative;
}

.section-2 .group:first-child>img {
    width: 100%;
    height: 407px;
    object-fit: cover;
}

.section-2 .group .background-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.section-2 .group:last-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 51px var(--container-padding-x);
    padding-left: 0;
    margin-left: 44px;
}

.section-2 .group:last-child h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    max-width: 261px;
    position: relative;
}

.section-2 .group:last-child h2::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 6px;
    width: 24px;
    height: 24px;
    background-image: linear-gradient(225deg, var(--color-blue) 50%, transparent 0%, transparent 100%);
}

.section-2 .group:last-child p {
    font-size: 16px;
    line-height: 30px;
    max-width: 395px;
}

.section-2 .background-right-top {
    --bg-size: 368px;
}

@media (max-width: 768px) {
    .section-2 {
        position: relative;
    }

    .section-2 .group:first-child {
        display: none;
    }

    .section-2 .group:last-child {
        z-index: 1;
        padding: 0px var(--container-padding-x);
    }
}