
section.two-col-features-section .row {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
section.two-col-features-section .row .left-content h2 {
    font-family: 'Source Sans 3' !important;
    font-weight: 600;
    margin: 0 0 20px;
}

/* Right Side Grid */

.two-col-features-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}
.two-col-features-section .icon {
    width: 40px;
    height: 40px;
    background: #e8f1ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 24px !important;
}

.two-col-features-section .card h4 {
    font-family: 'Source Sans 3' !important;
    font-weight: 600;
    margin: 0 0 10px;
}
.two-col-features-section .cards-grid .card img {
    width: 20px;
    height: 20px;
}
.two-col-features-section .cards-grid .card .yoobic-feature-icon {
    width: 40px !important;
    height: 40px  !important;
    margin-bottom: 24px;
}

@media only screen and (min-width: 768px) {
    .two-col-features-section .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 115px;
        row-gap: 58px;
    }
}
@media only screen and (min-width: 1025px) {
    section.two-col-features-section .row {
        gap: 138px;
        flex-direction: row;
    }
    section.two-col-features-section .row .left-content h2 {
        font-size: 54px;
        margin: 0 0 30px;
        line-height: 100%;
        letter-spacing: -1%;
    }

    section.two-col-features-section .row .left-content {
        max-width: 40%;
        width: 100%;
        flex: 0 0 40%;
    }
}
@media only screen and (min-width: 1399px) {
    .two-col-features-section .cards-grid .card {
        padding-right: 46px;
    }
}