.includes {
    max-width: 1132px;
    margin: 0 auto;
    padding: 80px 0 0
}

.includes__list, .includes__title {
    font-family: 'Nunito Sans';
    font-style: normal;
    color: #323c47
}

.includes__title {
    margin: 0;
    font-weight: 800;
    font-size: 24px;
    line-height: 32px
}

.includes__grid {
    display: grid;
    grid-template: repeat(2,auto)/repeat(6,1fr);
    gap: 24px;
    margin-top: 32px
}

.includes__item {
    background: #f9f8ff;
    border-radius: 12px;
    padding: 24px 24px 40px
}

.includes__item:first-child, .includes__item:nth-child(2), .includes__item:nth-child(3) {
    grid-column: span 2
}

.includes__item:nth-child(4), .includes__item:nth-child(5) {
    grid-row-start: 2;
    grid-column: span 3
}

.includes__header {
    display: flex;
    align-items: center
}

.includes__icon {
    flex: 0 0 89px;
    height: 64px;
    object-fit: contain
}

.includes__list {
    list-style: none;
    padding-left: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    position: relative
}

.includes__list-item {
    position: relative;
    padding-left: 17px
}

.includes__list-item:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #8365ff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 7px
}

.includes__list-item:not(:last-child) {
    margin-bottom: 8px
}

@media screen and (max-width:1200px) {
    .includes {
        margin: 0 16px
    }
}

@media screen and (max-width:900px) {
    .includes__grid {
        display: flex;
        flex-direction: column
    }
}

@media screen and (max-width:600px) {
    .includes {
        padding: 56px 0 0
    }
}