


.m-5 .wrapper {
    position: relative;
    z-index: 10;
}

.m-5 .section-title,
.m-5 .text-before-title {
    color: #fff;
}

.m-5-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.m-5-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.m-5-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 1px;
}

.m-5-item {
    width: calc(20% - 42px / 5);
    background: #1D1D1D;
    padding: 45px 12px 16px 32px;
}

.m-5-item-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 30px;
}

.m-5-item-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.m-5-item-title {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    width: 170px;
    max-width: 100%;
    margin-bottom: 22px;
}

.m-5-item-text {
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    width: 190px;
    max-width: 100%;
}

.m-5-item-count {
    color: rgba(255, 255, 255, 0.25);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-top: 48px;
    text-align: right;
}

.m-5-list .hero-border-left {
    left: -1px;
}

.m-5-list .hero-border-right {
    right: -1px;
}

.m-5-list .hero-border-bottom {
    bottom: -1px;
}

.m-5-list .hero-icon-plus-left {
    bottom: -1px;
    left: -1px;
}

.m-5-list .hero-icon-plus-right {
    bottom: -1px;
    right: -1px;
}

@media screen and (max-width: 1200px) {
    .m-5-item {
        width: calc(33.33% - 22px / 3);
        flex-grow: 2;
    }

    .m-5-item-text {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .m-5-item {
        width: 100%;
        flex-grow: 2;
        padding: 24px;
    }

    .m-5-item-count {
        margin-top: 8px;
    }

    .m-5-item-title {
        width: 100%;
        margin-bottom: 16px;
    }

    .m-5-item-icon {
        margin-bottom: 16px;
    }

}