.flexable-edge-container {
    display: flex;
    padding: 10px 10px 40px 10px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.flexable-edge-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.flexable-edge-header h2 {
    color: #18181B;
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: -0.24px;
}

.flexable-edge-header p {
    color: #71717A;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.service-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-category-list li {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: 1px solid #3F3F46;
    color: #18181B;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.07px;
    cursor: pointer;
}

.service-category-list li:hover {
    font-weight: 500;
}

.service-category-list li.active {
    background: #3F3F46;
    color: #fff;
    font-weight: 500;
}

.flexable-solutions-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.flexable-solutions-list li {
    display: flex;
}

.flexable-solutions-list a {
    border-radius: 10px;
    background: #FFF;
    display: flex;
    padding: 5px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    border: 1px solid transparent;
}

.flexable-solutions-list .disabled-card {
    cursor: not-allowed;
}

.flexable-solutions-list a:hover {
    border: 1px solid #2DC653;

}

.flexable-solutions-list a:hover .explore-now-action {
    background: #E6FAEB;
    color: #155D27;
}

.flexable-solutions-list a:hover .flexable-solution-info figure {
    background: #E6FAEB;
}

.flexable-solutions-list a:hover .flexable-solution-info figure svg {
    color: #155D27 !important;
}

.flexable-solution-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    flex: 1 0 0;
}

.flexable-solution-info span {
    color: #18181B;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.032px;
}

.flexable-solution-info figure {
    margin: 0;
    display: flex;
    width: 50px;
    height: 50px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #F4F4F5;
}

.flexable-solution-info figure svg {
    min-width: 20px;
    height: 20px;
    color: #18181B;
}

.explore-now-action {
    width: 100%;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    align-self: stretch;
    border-radius: 5px;
    background: #F4F4F5;
    color: #18181B;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.07px;
}

.disabled-btn {
    width: 100%;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    align-self: stretch;
    border-radius: 5px;
    background: #F4F4F5;
    color: #18181B;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.07px;
    opacity: 0.5;
}

.flexable-edge-content {
    padding: 80px 0;
}

@media screen and (max-width: 600px) {

    .flexable-solutions-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-category-list {
        overflow-y: scroll;
        white-space: nowrap;
        width: 100%;
        scrollbar-width: none;
    }

    .service-category-list li {
        padding: 10px;
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0.06px;
    }

    .flexable-solution-info {
        padding: 10px;
    }

    .flexable-solution-info span {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.032px;
    }

    .flexable-solution-info figure {
        width: 40px;
        height: 40px;
        padding: 15px;
    }

    .flexable-solution-info figure svg {
        min-width: 20px;
        height: 20px;
    }


    .flexable-edge-content {
        padding: 40px 20;
    }

    .explore-now-action {
        font-size: 12px;
        line-height: 16px;
    }

    .disabled-btn {
        font-size: 12px;
        line-height: 16px;
    }
}