.solution-tab .nav-link {
    background: none;
    /* font-size: 1rem; */
    font-family: var(--main-font);
    color: var(--txt-purple-color) !important;
    border-radius: 0px !important;
    border: 0;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.solution-tab .nav-link:hover {
    border-bottom: 4px solid var(--bg-green-color) !important;
    background-color: none !important;
}

.solution-tab .active {
    border-bottom: 4px solid var(--bg-green-color) !important;
}

.solution-tab-content {}

.solution-tab-content .tab-pane>div {
    width: 100%;
    display: flex;
}

.solution-tab-content .tab-pane div:nth-child(1) {
    width: auto;
}

.solution-tab-content .tab-pane div:nth-child(2) {
    width: 100%;
    padding: 20px;
}

/* Col Image */
.solution-tab-content .tab-pane .row div:nth-child(1) {
    width: 300px !important;
    margin-bottom: 10px;
}

/* Col Image */
.solution-tab-content .tab-pane .row div:nth-child(1) img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 5px 5px 8px rgba(94, 88, 114, 0.3);
}

/* Col Description */
.solution-tab-content .tab-pane .row div:nth-child(2) {
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: .9rem !important;
    text-align: justify !important;
    color: var(--txt-purple-color) !important;
    line-height: 1.5rem !important;
}



/* !================================================ M O B I L E ================================================ */
/* !============================================================================================================= */

@media only screen and (max-width: 991px) {
    .solution-tab .nav-link {
        background: none;
        /* font-size: 1rem; */
        font-family: var(--main-font);
        color: var(--txt-purple-color) !important;
        border-radius: 0px !important;
        border: 0;
        cursor: pointer;
        transition: all ease-in-out 0.3s;
    }

    .solution-tab .nav-link:hover {
        border-bottom: 4px solid var(--bg-green-color) !important;
        background-color: none !important;
    }

    .solution-tab .active {
        border-bottom: 4px solid var(--bg-green-color) !important;
    }

    .solution-tab-content {}

    .solution-tab-content .tab-pane>div {
        /* border: 1px solid red; */
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: var(--bg-gray-color);
        padding-top: 40px;
    }

    .solution-tab-content .tab-pane div:nth-child(1) {
        /* border: 1px solid blue; */
        width: auto;
        display: flex;
        justify-content: center;
    }

    .solution-tab-content .tab-pane div:nth-child(2) {
        /* border: 1px solid green; */
        width: 100%;
        padding: 20px;
    }

    /* Col Image */
    .solution-tab-content .tab-pane .row div:nth-child(1) {
        width: 300px !important;
        margin-bottom: 10px;
    }

    /* Col Image */
    .solution-tab-content .tab-pane .row div:nth-child(1) img {
        width: 100%;
        border-radius: 5px;
        box-shadow: 5px 5px 8px rgba(94, 88, 114, 0.3);
    }

    /* Col Description */
    .solution-tab-content .tab-pane .row div:nth-child(2) {
        font-style: normal !important;
        font-weight: 400 !important;
        font-size: .9rem !important;
        text-align: justify !important;
        color: var(--txt-purple-color) !important;
        line-height: 1.5rem !important;
    }

}