.startup-launch-framework {
    padding: 80px 0 88px;
}

.startup-launch-framework .container {
    display: flex;
    justify-content: space-between;
    gap: 157px;
}

.startup-launch-framework .container .content {
    width: 50%;
}

.startup-launch-framework .container .content .sticky {
    position: sticky;
    top: 100px;
}

.startup-launch-framework .container .content .title {
    font-size: 48px;
    line-height: 1.1459;
    font-weight: 400;
    margin-bottom: 24px;
}

.startup-launch-framework .container .content .images {
    display: flex;
    justify-content: center;
    padding: 42px 0 12px;
    position: relative;
}

.startup-launch-framework .container .content .images .image {
    width: 100%;
    max-width: 260px;
    height: auto;
    position: relative;
    z-index: 10;
    transition: all 300ms ease;
}

.startup-launch-framework .container .content .images .image:first-child,
.startup-launch-framework .container .content .images .image:last-child {
    position: absolute;
    z-index: 0;
}

.startup-launch-framework .container .content .images .image:first-child {
    margin-top: -22px;
    margin-left: -9px;
}

.startup-launch-framework .container .content .images .image:last-child {
    margin-top: -11px;
    margin-right: -9px;
}

.startup-launch-framework .list-wrapper {
    width: 50%;
    max-width: 543px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.startup-launch-framework .list-wrapper .list-item {}

.startup-launch-framework .list-wrapper .list-item .item-title {

    font-size: 32px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.015em;
    margin-bottom: 16px;
}

.startup-launch-framework .list-wrapper .list-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.startup-launch-framework .list-wrapper .list-item ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width:968px) {
    .startup-launch-framework {
        padding: 26px 0 40px;
    }

    .startup-launch-framework .container {
        flex-direction: column;
        gap: 40px;
    }

    .startup-launch-framework .container .content,
    .startup-launch-framework .list-wrapper {
        width: 100%;
    }

    .startup-launch-framework .container .content .title {
        font-size: 32px;
        margin-bottom: 0px;
    }

    .startup-launch-framework .container .content .images {
        display: none;
    }

    .startup-launch-framework .list-wrapper {
        padding-left: 59px;
    }

    .startup-launch-framework .list-wrapper .list-item .item-title {
        font-size: 24px;
    }

    .startup-launch-framework .list-wrapper .list-item ul li {
        font-size: 18px;
        gap: 8px;
    }

    .startup-launch-framework .list-wrapper {
        gap: 40px;
    }
}