.features {
    margin-top: 240px;
    position: relative;
}

.features:before {
    content: "";
    position: absolute;
    top: -200px;
    left: -154px;
    width: 495px;
    height: 495px;
    border-radius: 495px;
    background: #1C1C41;
    filter: blur(150px);
    opacity: 0.4;
}

.features:after {
    content: "";
    position: absolute;
    bottom: -250px;
    right: -154px;
    width: 477px;
    height: 477px;
    border-radius: 477px;
    background: #1C1C41;
    filter: blur(150px);
    opacity: 0.4;
}

.features__container {
    max-width: 1287px;
    padding: 0 24px;
    margin: 0 auto;
}

.features__title {
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 105px;
    text-align: center;
}

.features__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 28px;
    row-gap: 46px;
}

.features__item {
    width: 30.67%;
    height: 395px;
    padding: 37px 40px 37px 24px;
    background-color: #08070C;
    border-radius: 0px 15px 0px 0px;
    overflow: hidden;
    position: relative;
}

.features__item:before {
    content: "";
    position: absolute;
    top: -115px;
    left: 50%;
    transform: translateX(-50%);
    width: 313px;
    height: 313px;
    border-radius: 313px;
    background: #16161E;
    filter: blur(87px);
    z-index: 1;
}

.features__item:after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 46px;
    height: 28px;
    background-color: #FFF;
}

.features__item:nth-child(1):after {
    background-color: #B220E3;
}
.features__item:nth-child(1) .features__item-title {
    max-width: 220px;
}

.features__item:nth-child(2):after {
    background-color: #99E320;
}

.features__item:nth-child(3):after {
    background-color: #209DE3;
}

.features__item:nth-child(4):after {
    background-color: #E37220;
}
.features__item:nth-child(4) .features__item-title {
    max-width: 204px;
}

.features__item:nth-child(5):after {
    background-color: #E3205B;
}
.features__item:nth-child(5) .features__item-title {
    max-width: 245px;
}

.features__item:nth-child(6):after {
    background-color: #5E20E3;
}

.features__item:nth-child(2),
.features__item:nth-child(5) {
    margin-top: -28px;
}

.features__item-icon {
    margin-bottom: 6px;
    position: relative;
    z-index: 5;
}

.features__item-title {
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    color: #FFF;
    margin-bottom: 18px;
    position: relative;
    z-index: 5;
}

.features__item-description {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    color: #8D929C;
    position: relative;
    z-index: 5;
}

@media (max-width: 1130px) {
    .features__title {
        margin-bottom: 40px;
    }

    .features__items {
        row-gap: 15px;
        column-gap: 15px;
    }

    .features__item {
        width: 45%;
        height: auto;
        min-height: 395px;
    }

    .features__item:nth-child(2), .features__item:nth-child(5) {
        margin-top: 0;
    }
}

@media (max-width: 850px) {
    .features {
        margin-top: 80px;
    }

    .features__title {
        font-size: 50px;
    }
}

@media (max-width: 700px) {
    .features__items {
        max-width: 470px;
        margin: 0 auto;
    }

    .features__item {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .features__container {
        padding: 0 15px;
    }

    .features__title {
        font-size: 34px;
        margin-bottom: 24px;
    }
}