.banner-box {
    display: flex;
    height: 450px;
    width: 100%;
} 
.job-candidates,
.our-services {
    flex: 1;
    height: 100%;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
    display: flex;
    overflow:hidden;
} 
.job-info{
    position:absolute;
    z-index:3;
    padding:20px;
}
.job-text-title{
    text-align: center;
    color: white;
    font-size: 2.4rem;
    font-weight: bold;
    margin:10px 0;
}
.job-text{
    text-align: center;
    color:white;
}
.job-candidates::before,
.our-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}
.job-candidates::before{
    background-color: rgba(255, 102, 144, 0.5);
}
.our-services::before{
    background-color: rgba(173, 145, 124, 0.5);
}
.value-box{
    height: auto;
    min-height: 310px;
    background-color: var(--primary-two);
    margin: 10px;
    float: left;
    padding: 20px;
    display: flow;
}
.value-img{
    width:80px;
    height:80px; 
    float:left;
}
.coreimage{
    overflow: hidden;
    width: 80px;
    height: 80px;
}
.value-title-box{
    float:left;
    padding:0px 10px;
}
.value-title{
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    font-weight: bolder;
    text-align: center;
    margin: 10px 0;
    line-height: 3rem;
    text-align: left;
    color:white;
}
.value-content{ 
    color:white;
}
.row-styles{
    border-bottom: 2px solid white;
    margin-bottom: 10px; 
}
@media (max-width: 782px) {
    .banner-box {
        flex-direction: column;
        height: 900px;
    } 
    .job-candidates,
    .our-services {
        width: 100%;
        height: 495px;
    } 
}
.values-container{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}
@media (max-width: 635px) {
    .values-container{
        grid-template-columns: 1fr;
        grid-template-rows: auto ;
    }
}