.service-header{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.service-header span{
    display: flex;
    font-family: 'Roboto',sans-serif;
    font-size: 28px;
    color: #001345;
}

.hero-text{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto',sans-serif;
    font-size: 24px;
    color: #001345;
}

.service-header p{
    display: flex;
    width: 5%;
    height: 3px;
    background-color: #559ae8;
}

.service-items{
    display: flex;
    margin-top: 2%;
    width: 100%;
    flex-wrap: wrap;
    padding-top: 2%;
}

.service-item{
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 250px;
    padding: 5px;
    margin: 15px;
    cursor: pointer;
    border: 1px solid #001345;
}


@media screen and (max-width: 414px){
    
    .service-item{
        width: 70%;
    }
}