.hero-header{
    margin-top:-180px!important;
}
.service-section{
    display:flex;
}
.bg-light{
    background-color:#c0cdd6!important;
}
.text-primary{
    color:#0f304f!important;
}
.header-carousel::before{
    background:#0f304f!important;
}
ul.ullist li.list {
    width: 200px;
    height: 35px;
    display: flex;
    align-items: center;
    margin: 1.7em 1.5em;
    cursor: pointer;
    padding: 1em;
    /*background: rgb(43, 43, 43);*/
    position: relative;
    color: white;
    border-radius: 5px;
}
ul.ullist li.list::before,
ul.ullist li.list::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 5px;
    width: 105%;
    transition: all 0.4s;
}
ul.ullist li.list::before {
    left: 0%;
    height: 130%;
    background: linear-gradient(to right, #021B79, #0f304f);
}
ul.ullist li.list::after {
    border:1px solid #000;
    left: -10%;
    height: 140%;
    background: #ffffff56;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.164);
}
ul.ullist li.list:hover::before {
    transform: translateX(-2.5%);
}
ul.ullist li.list:hover::after {
    transform: translateX(15%);
}

@media screen and (max-width:700px){
    .service-section{
        flex-wrap:wrap;
    }
}