.our-core-values-section {
    position: relative;
    margin: 0;
    background-color: var(--light-gray);
    padding: 120px 0;
    z-index: 1;
}

.title-with-content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.title-with-content .left-content {
    width: 47%;
}

.title-with-content .right-content {
    width: 31%;
    padding-left: 15px;
    border-left: 7px solid  var(--text-color);
}
.title-with-content h2 {
    margin-bottom: 0;
}
.our-core-values-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -12px -24px;
}

.our-core-values-cards .our-core-values-cards-col {
    width: 33.33%;
    padding: 0 12px;
    margin-bottom: 24px;
}
.our-core-values-cards-box:hover {
    transform: translateY(-10px);
}
.our-core-values-cards-box {
    background: var(--white);
    padding: 40px;
    min-height: 353px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s;
}

.our-core-values-cards-box .icon {
    height: 50px;
    width: 50px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-core-values-cards-box .icon img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

/* .our-core-values-cards .h4,.our-core-values-cards p {
    color: var(--white);
} */

.our-core-values-cards p {
    opacity: 0.7;
}

.our-core-values-cards .h4 {
    margin-bottom: 10px;
}

@media only screen and (max-width:1199px){
     .our-core-values-section {
        padding: 80px 0;
    }
    .title-with-content .right-content {
        width: 40%;
    }
    .trust-card {
        padding: 20px;
        min-height: 300px;
    }
  
}
@media only screen and (max-width:991px){
     .our-core-values-section {
        padding: 60px 0;
    }
    .our-core-values-cards .our-core-values-cards-col {
        width: 50%;
    }
    .title-with-content .right-content {
        width: 47%;
    }
    .title-with-content {
        margin-bottom: 40px;
    }
}
@media only screen and (max-width:767px){
    .title-with-content .left-content {
        width: 100%;
    }
    .title-with-content .right-content {
        width: 100%;
        padding-left: 0;
        border: 0;
        margin-top: 15px;
    }
    .our-core-values-section {
        padding: 40px 0;
    }
      .our-core-values-cards .our-core-values-cards-col {
        width: 100%;
    }
    .our-core-values-cards-box {
        padding: 20px;
        min-height: 300px;
    }
    
}