/* =========================================================
   FEATURES CREATION
========================================================= */

.features-creation {

    padding: 60px 40px;

    background: #ffffff;

    overflow: hidden;

}

/* =========================================================
   HEADER
========================================================= */

.features-creation__header {

    text-align: center;

    margin-bottom: 45px;

}

/* =========================================================
   TITLE
========================================================= */

.features-creation__title {

    font-size: 30px;

    font-weight: 800;

    line-height: 1.3;

    color: var(--color-primary);

    margin-bottom: 10px;

}

.features-creation__title span {

    color: var(--color-secondary);

}

/* =========================================================
   SUBTITLE
========================================================= */

.features-creation__subtitle {

    font-size: 15px;

    color: #4b5563;

    line-height: 1.6;

}

/* =========================================================
   GRID
========================================================= */

.features-creation__grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 0;

}

/* =========================================================
   ITEM
========================================================= */

.features-creation__item {

    position: relative;

    text-align: center;

    padding: 0 16px;

}

/* =========================================================
   SEPARATOR
========================================================= */

.features-creation__item::after {

    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 150px;

    background: #ececec;

}

.features-creation__item:last-child::after {

    display: none;

}

/* =========================================================
   ICON
========================================================= */

.features-creation__icon {

    width: 55px;
    height: 55px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

}

.features-creation__icon svg {

    width: 38px;
    height: 38px;

    stroke: var(--color-primary);

    stroke-width: 1.8;

}

/* =========================================================
   H3
========================================================= */

.features-creation__item h3 {

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;

    color: var(--color-primary);

    margin-bottom: 14px;

}

/* =========================================================
   TEXT
========================================================= */

.features-creation__item p {

    font-size: 13px;

    line-height: 1.8;

    color: #4b5563;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .features-creation__grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 40px 0;

    }

    .features-creation__item:nth-child(3)::after {

        display: none;

    }

}

@media (max-width: 768px) {

    .features-creation {

        padding: 50px 25px;

    }

    .features-creation__grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .features-creation__item::after {

        display: none;

    }

    .features-creation__title {

        font-size: 26px;

    }

    .features-creation__subtitle {

        font-size: 14px;

    }

}