.hero{
    width: 100%;
    height: 325px;
    background-image: url(../SRC/about.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.bg-hero{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:325px;
    background-color: rgba(0, 4, 54, 0.3);
}
.hero .container{
    z-index: 3;
}

.value .col-md-8{
    display: flex;
    align-items: center;
}

.journey{
    width: 100%;
    height: 350px;
    background-image: url(../SRC/journey-pic.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.bg-journey{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 350px;
background-color: rgba(0, 4, 54, 0.4);
}
.journey .container{
    z-index: 2;
}
@media (max-width:500px) {
    .journey{
        height: 450px;
    }
    .bg-journey{
        height: 450px;
    }
}
@media (max-width:380px) {
    .journey{
        height: 550px;
    }
    .bg-journey{
        height: 550px;
    }
}

.value .card{
    transition: all 0.5 ease;
    cursor: pointer;
}

.value .card:hover{
    background-color: var(--color);
    transform: scale(1.03);
}
.value .card:hover h1,
.value .card:hover h2,
.value .card:hover h3,
.value .card:hover h4,
.value .card:hover h5,
.value .card:hover h6,
.value .card:hover p,
.value .card:hover i{
    color: #fff;
}