section.section:last-child {
    margin-bottom: 0;
}

.company-features__item {

    list-style-type: none;
    margin-bottom: 70px;
}

.company-features__item:last-child {
    margin-bottom: 0;
}

.company-head {
    display: flex;
    margin-bottom: 40px;
    gap: 60px;
}

.company-head__logo {
    display: block;
    flex: 1 0 auto;
}

.company-head__descr {
    flex: 1 1 auto;
}

.company-features__list {
    margin: 0;
    padding: 20px;
}

.company-features__item>p:first-child {
    font-weight: bold;
    position: relative;
}

.company-features__item > p:first-child:before {
    content: '';
    margin: 0;
    padding: 0;
    position: absolute;
    left: -25px;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #FFD200;
    border-radius: 50%;
}

.features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: var(--block-offset);
    column-gap: var(--block-offset);
    width: 100%;
    margin-bottom: 70px;
}

.features__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 285px;
    padding: 30px 30px 40px;
    background-color: var(--color-white);
    border-radius: 5px;
}

.features__item_content-count {
    font-family: Oswald;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 72px;
    color: var(--color-yellow);
    position: relative;
}

.features__item_content-count::before {
    content: '';
    display: block;
    border-right: 5px solid #FFD200;
    border-bottom: 5px solid #FFD200;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
    left: -15px;
}

.features__item_content-descr {
    padding: 0 15px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.status-list {
    list-style: none;
    padding: 0;
    margin-bottom: 70px;
}

.status-list>li {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features {
        grid-template-columns: 1fr;
    }

    .company-head {

        gap: 20px;
    }

    .company-head__logo {

        flex: 2 1 auto;
    }

    .company-haed__descr {
        flex: 0 3 auto;
    }
}

@media (max-width: 390px) {

    .company-head {
        flex-direction: column;

        gap: 30px;
    }

    .company-head__logo {

        flex: 0 1 auto;
    }

    .company-haed__descr {
        flex: 2 1 auto;
    }
}
