.header-box {
    padding: 15px;
    display: flex;
    justify-content: center;
    background-color: #008cdc;
}

.h1 {
    color: #fff;

}

body{
    font-family: Inter, sans-serif;
}

.zs-card{
    background-color: #f1f1f1;
    border-radius: 5%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
    border: transparent 3px solid;
    transition: 0.2s;
    max-height: 400px;
    cursor: pointer;
}

.zs-card:hover, .selected-card{
    border:#008cdc 3px solid;
}

.step-2-list{
    display: flex;
    flex-wrap: wrap;
}

.step-2-list li{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 0 21%;
    background-color: #f1f1f1;
    border-radius: 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
    border: transparent 1px solid;
    margin-left: 30px;
    margin-bottom: 15px;
    padding: 10px;
    cursor: pointer;
}

.step-2-list li :not(img){
}

.step-2-list li img{
    float: left;
    padding-right: 30px;
    width: 64px;
    height: 32px;
}

.step-2-list li:hover, .step-2-list li.selected-item{
    border:#008cdc 1px solid;
}


@media screen and (max-width: 768px){
    .zs-card{
        margin-bottom: 25px;
    }
    .step-2-list li {
        flex: 1 0 100%;
        margin-left: 0;
    }

    .step-2-list li:hover{
        border: transparent 1px solid;
    }
}