.built-on-trust-section {
    position: relative;
    margin: 0;
    padding: 40px 0 0 0;
    z-index: 1;
}
.built-on-trust-section:before {
    content: "";
    display: block;
    background-color: var(--light-gray);
    height: 61%;
    width: 100%;
    position: absolute;
    top: 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;
}
.trust-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -12px -24px;
}

.trust-cards .trust-card-col {
    width: 25%;
    padding: 0 12px;
    margin-bottom: 24px;
}
.trust-card:hover {
    transform: translateY(-10px);
}
.trust-card {
    background: var(--dark-black);
    padding: 40px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s;
}

.trust-card .icon {
    height: 50px;
    width: 50px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.trust-card .icon img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.trust-card-text .h4,.trust-card-text p {
    color: var(--white);
}

.trust-card-text p {
    opacity: 0.7;
}

.trust-card-text .h4 {
    margin-bottom: 10px;
}

@media only screen and (max-width:1199px){
    .title-with-content .right-content {
        width: 40%;
    }
    .trust-card {
        padding: 20px;
    }
  
}
@media only screen and (max-width:991px){
    .trust-cards .trust-card-col {
        width: 50%;
    }
    .title-with-content .right-content {
        width: 47%;
    }
    .title-with-content {
        margin-bottom: 40px;
    }
    .trust-card {
        min-height: 200px;
    }
}
@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;
    }
      .trust-cards .trust-card-col {
        width: 100%;
    }
}