.section.start {
    padding-top: 100px;
    padding-bottom: 100px;
}

.start__heading {
    margin-bottom: 60px;
}

.options-list {
    list-style: none;
}

.options-list__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.options-list__item+.options-list__item {
    margin-top: 40px;
}

.options-list__item::before,
.options-list__item::after {
    --size: 82px;
    content: '';
    order: -1;
    width: var(--size);
    height: var(--size);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.options-list__item::after {
    margin-left: calc(-1 * var(--size));
    background-size: 25px 35px;
    margin-right: 20px;
}

.options-list__item:nth-child(1):before {
    height: 90px;
    background-image: url('../img/list/icon1.svg');
}

.options-list__item:nth-child(2):before {
    background-image: url('../img/list/icon2.svg');
}

.options-list__item:nth-child(3):before {
    background-image: url('../img/list/icon3.svg');
}

.options-list__item:nth-child(4):before {
    background-image: url('../img/list/icon4.svg');
}

.options-list__item:nth-child(1):after {
    background-image: url('../img/list/1.svg');
}

.options-list__item:nth-child(2):after {
    background-image: url('../img/list/2.svg');
}

.options-list__item:nth-child(3):after {
    background-image: url('../img/list/3.svg');
}

.options-list__item:nth-child(4):after {
    background-image: url('../img/list/4.svg');
}

.start-card {
    max-width: calc(100% - 102px);
}

.start-card__title {
    font-weight: 500;
    font-size: 20px;
    overflow-wrap: break-word;
}

.start-card__description {
    font-weight: 300;
    font-size: 14px;
    margin-top: 10px;
}

@media screen and (max-width: 991px) {
    .start__img {
        min-width: 380px;
    }
}

@media screen and (max-width: 480px) {
    .options-list__item {
        align-items: flex-start;
    }

    .options-list__item::before,
    .options-list__item::after {
        --size: 42px;
    }

    .options-list__item::after {
        background-size: 16px 22px;
        margin-right: 16px;
    }

    .options-list__item:nth-child(1):before,
    .options-list__item:nth-child(1):after {
        height: 50px;
    }

    .start-card {
        max-width: calc(100% - 58px);
    }
}