.hp-solution-cards-holder {
    width: 100%;
    margin: auto;
}

.hp-solution-cards-slider-holder {
    position: absolute;
    top: 88px;
    width: 100%;
    height: 4px;
    /* background-color: red; */
    z-index: 1;
}

.hp-solution-cards-slider {
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(to right, transparent, #d4e6f9 , #012f6b , #d4e6f9, transparent); */

    background-image: linear-gradient(to right, #ffffff, #d4e6f9, #012f6b, #d4e6f9, #ffffff);

    background-repeat: no-repeat;
    transition: ease-out 0.4s;
}

/*********************/



.hp-solution-cards-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    z-index: 2;
}

.hp-solution-card {
    width: 165px;
    height: 150px;
}

.hp-solution-card * {
    transition: ease-out 0.4s;
}

.hp-solution-card-icon-holder {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 20px;
}

.hp-solution-card-icon {

    height: 100%;
    width: 100%;
    border-radius: 100%;
    background-color: #ffffff;
    border: 4px solid #d4e6f9;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;

}

.hp-solution-card-icon div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.hp-solution-card-icon svg {
    height: 40px;
    width: 40px;
    margin: auto;
    fill: #012f6b;
}

.hp-solution-card-title-holder {
    width: 100%;

}

.hp-solution-card-title {
    width: 87%;
    margin: auto;
    line-height: 1.3;
    font-size: 14px;
    color: #012f6b;
    text-align: center;
    font-weight: bold;
}

/**************************/

.hp-solution-card:hover .hp-solution-card-icon-holder {
    transform: scale(1.05);
}

.hp-solution-card:hover .hp-solution-card-icon {
    background-color: #012f6b;
    border-color: #012f6b;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px #0000001a, 0 1px 6px -4px #0000001a;
}

.hp-solution-card:hover .hp-solution-card-icon svg {
    fill: #FFD800;
    transform: scale(1.05);
}

.hp-solution-card:hover .hp-solution-card-title {
    transform: scale(1.05);
}

@media only screen and (max-width: 1100px) {

    .hp-solution-cards-slider-holder {
        top: 0px;
        width: 4px;
        height: 100%;
        z-index: 1;
        left: 50%;
        transform: translate(-50%, 0px);
    }

    .hp-solution-cards-slider{
        background-image: linear-gradient(to bottom, #fff, #d4e6f9, #012f6b, #d4e6f9, #fff);
    }

    .hp-solution-cards-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 160px);
        justify-content: center;
        column-gap: 16px;
        row-gap: 16px;
    }
}