.block-story {

    .story-wrapper {
        position: relative;
        margin-top: 80px;
    }

    .story-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 45px;
    }

    .story-title {
        font-weight: 400;
        font-size: 48px;
        line-height: 52px;
        text-transform: uppercase;
        color: #212121;
        max-width: 450px;
        letter-spacing: -2px;
    }

    .story-button {
        background: #175E82;
        border-radius: 32px;
        font-weight: 500;
        font-size: 16px;
        text-transform: uppercase;
        color: #FFFFFF;
        padding: 10px 60px;
        text-decoration: none;
        transition: 0.3s all;
    }

    .story-button:hover {
        background: #3997C6;
    }

    .story-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .story-list li {
        font-size: 20px;
        color: #212121;
        padding-left: 30px;
        position: relative;
    }

    .story-list li::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 15px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url('../img/svg/icon-check.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .story-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .story-content {
        position: absolute;
        top: 47%;
        left: 54%;
        transform: translate(-50%, -50%);
        max-width: 530px;
    }

    @media (max-width: 1200px) {
        .story-bottom__image {
            display: none;
        }

        .story-content {
            position: initial;
            transform: none;
            float: right;
        }
    }

    @media (max-width: 800px) {
        .story-content {
            float: initial;
        }

        .story-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 768px) {
        .story-content {
            padding-left: 10px;
            margin-bottom: 16px;
        }

        .story-title {
            font-size: 34px;
            line-height: 36px;
        }

        .story-list {
            gap: 10px;
        }

        .story-list li {
            padding-left: 16px;
            font-size: 16px;
        }

        .story-list li::before {
            width: 15px;
            height: 15px;
        }

    }

    @media (max-width: 500px) {
        .story-header {
            flex-direction: column;
            gap: 20px;
        }

        .story-bottom img {
            width: 100%;
            margin: 0 auto;
        }
    }
}