
h2 span {
    color: #1B89FE;
}

h3 {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin: 40px 0px;
}

.center-text {
    text-align: center;
}

.custom-order {
    order: 1;
}

@media (max-width: 1023px) {
    .custom-order {
        order: 0;
    }
}

.products_dec {
    text-align: center;
    max-width: max-content;
    margin: 0 auto 2rem;
}

/*three grid*/
.features-container {
    display: grid;
    gap: 1.5rem;

    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
}

.features-container .feature-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.features-container .feature-icon {
    margin-bottom: 1rem;
    color: #0071e3;
}

.features-container .feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.features-container .feature-desc {
    line-height: 1.5;
}

.title-info {
    text-align: center;
    font-size: 26px;
    margin: 40px 0px 20px;
    font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    h3 {
        text-align: left;
    }
    .features-container {
        grid-template-columns: 1fr;
    }
    .features-container .feature-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .title-info {
        text-align: left;
        font-size: 20px;
        margin-bottom: 10px;
    }
}


.steps-container {
    display: flex;
    gap: 30px;
    height: 415px;
    padding-bottom: 0px
}


.steps-container .steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 500px;
}


.steps-container .step {
    padding: 10px 20px;
    background: #ffffff;
    border-radius: 12px;
    cursor: pointer;
    transition: all .25s ease;
    height: 92px;
    flex-direction: column;
    justify-content: center;
}

.steps-container .step .title {
    font-size: 16px;
    font-weight: 500;
}

.steps-container .step p {
    max-width: max-content;
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
    text-align: left;
}

.steps-container .step.active p {
    color: #1B89FE;
}

.steps-container .images {
    flex: 1;
    position: relative;
    background: #CFE6FF;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px 20px;
    height: 100%;
    width: 100%;
}

.steps-container .images img {
    width: 100%;
    box-shadow: none;
    display: none;
}

.steps-container .images img.active {
    display: block;
}

.white-block {
    margin-top: 20px;
    padding: 50px 80px;
    background-color: #ffffff;
    border-radius: 12px;
    width: 100%;
}

@media (max-width: 767px) {
    .products_dec {
        text-align: left;
    }

    .header-banner .platform-icons {
        margin-bottom: 30px;
    }

    .content-text p {
        text-align: left;
    }

    .white-block {
        margin-top: 20px;
        padding: 20px 20px;
    }

    .steps-container {
        align-items: center;
        gap: 24px;
        height: auto;
    }

    .steps-container .steps {
        flex-direction: column;
        gap: 24px;
        width: auto;
        padding: 0;
    }

    .steps-container .step {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        max-width: 100%;
        cursor: pointer;
        display: block;
    }

    .steps-container .image {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 1rem;
    }

    .steps-container .step .title {
        font-size: 14px;
    }

    .steps-container .step p {
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .steps-container {
        height: auto;
    }

    .header-banner .platform-icons {
        margin-bottom: 60px;
    }

    .white-block {
        margin-top: 20px;
        padding: 20px 20px;
    }

    .steps-container .steps {
        width: 100%;
        padding: 0;
    }

    .steps-container .step {
        align-items: flex-start;
        gap: 8px;
        max-width: 100%;
        cursor: pointer;
    }
}