.advantages .main-title {
    margin-bottom: 60px;
}

.advantages-list {
    display: flex;
    align-items: stretch;
}

.advantages-list:first-of-type {
    justify-content: flex-end;
}

.advantages-list:last-of-type {
    justify-content: flex-start;
}

.advantages-list .item {
    max-width: 350px;
    padding: 24px;
    border: 1px solid #B8B8B8;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.advantages-list .item .title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advantages-list .item .title h3 {
    font-size: 28px;
    font-weight: 500;
    word-wrap: break-word;
}

@media screen and (max-width: 992px) {

    .advantages-list .item .title h3 {
        font-size: 24px;
    }

    .advantages-list .item .title svg {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .advantages .main-title {
        margin-bottom: 24px;
    }

    .advantages-list {
        flex-direction: column;
    }

    .advantages-list .item {
        max-width: 100%;
        gap: 16px;
        border-radius: 16px;
        font-size: 12px;
    }

    .advantages-list .item .title svg {
        width: 24px;
        height: 24px;
    }

    .advantages-list .item .title {
        gap: 8px;
    }

    .advantages-list .item .title h3 {
        font-size: 18px;
    }
}