

.banner{
    height: 70vh;
    /* background-color: black; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/about.png');
    background-color: rgba(255, 255, 255, 0.662);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
    flex-direction: column;
}

.journey{
    height: 70vh;
    /* background-color: black; */
    
}
.journey .row{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.journey img{
    height: 80%;
    width: 80%;
}

/* values */
.Values {
    padding: 40px 20px;
    background-color: #f9f9f9; /* Optional: Add a light background */
    text-align: center;
}

.Values .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.Values .col {
    flex: 1 1 200px;
    max-width: 250px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.Values .col:hover {
    transform: translateY(-5px);
}

.Values img {
    height: 80px;
    width: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

.Values h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333333;
}

.Values p {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
}

/* trust */

.trust{
    height: 50vh;
}
.trust .cc{
    background-color: #3A5661 !important;

}





/* media */
@media screen and (max-width: 1000px) {
    .banner{
        height: 50vh;
    }

    .journey{
        height: auto;
    }
    
}