.why_matter__container {
    padding: 80px 0 50px 0;
    background-color: var(--color-white);
}
.why_matter__subtitle {
    max-width: 550px;
    margin-right: auto;
    margin-left: auto;
}
.why_matter__list {
    margin-bottom: 40px;
    padding: 0 140px;
}
.why_matter__item {
    position: relative;
    padding: 0 0 0 60px;
    max-width: 420px;
    margin: 30px 0;
}
.why_matter__item-image-container {
    display: block;
    width: 44px;
    height: 44px;
    background-color: var(--color-orange-50);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}
.why_matter__item-image {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-filter: var(--filter-orange-400);
    filter: var(--filter-orange-400);
}
.why_matter__item-title {
    font-family: var(--ff-primary);
    font-style: normal;
    font-weight: var(--fw-medium);
    color: var(--color-text);
    font-size: 20px;
    line-height: 26px;
    display: block;
    cursor: default;
    margin-bottom: 7px;
}
.why_matter__item-text,
.why_matter__item-text * {
    font-family: var(--ff-primary);
    font-style: normal;
    font-weight: var(--fw-regular);
    color: var(--color-gray-500);
    font-size: 16px;
    line-height: 21px;
    cursor: default;
}
.why_matter__item-text {
    margin-bottom: 0;
}
.why_matter__item-text * {
    margin-bottom: 0;
}
.why_matter__item-text p {
    margin-bottom: 10px;
}
.why_matter__item-text p:last-child {
    margin-bottom: 0;
}
.why_matter__item-text strong {
    font-weight: var(--fw-bold);
}
.why_matter__item-text em {
    font-style: italic;
}
a.why_matter__button {
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    padding-left: 15px;
    padding-right: 15px;
}
.why_matter__button::after {
    content: '';
    display: block;
    width: 96px;
    height: 61px;
    background-image: url('../../../../image/misc/arrow-tip.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    right: -110px;
    -webkit-filter: var(--filter-gray-200);
    filter: var(--filter-gray-200);
    z-index: 4;
}
@media screen and (max-width: 1201px) {
    .why_matter__list {
        padding: 0 40px;
    }
}

@media screen and (max-width: 992px) {
    .why_matter__list {
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .why_matter__container {
        padding: 40px 0 15px 0;
    }
    .why_matter__list {
        margin-bottom: 20px;
        padding: 0;
    }
    .why_matter__item {
        margin: 5px 0;
    }
    .why_matter__button::after {
        width: 55px;
        height: 64px;
        background-image: url('../../../../image/misc/arrow-tip__mobile.svg');
        top: 0;
        right: -60px;
    }
}