.text-img-col-section {
    position: relative;
    padding-bottom: 80px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.row.reverse {
    flex-direction: row-reverse;
}

.col {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-image-wrap {
    position: relative;
    display: inline-block;
}

.text-main-img {
    width: 100%;
    border-radius: 30px;
    display: block;
    object-fit: cover;
}

.text-img-col-section h4 {
    color: var(--black);
}

.text-img-col-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.text-img-col-section ul li {
    position: relative;
    padding-left: 23px;
}

.text-img-col-section ul li+li {
    margin-top: 20px;
}

.text-img-col-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    color: #8dc63f;
    background-image: url("../../assets/images/list.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

.text-img-col-section h5 {
    color: var(--black);
}

.text-img-col-section .text-img-col-col ul+p {
    margin-top: -8px;
    text-transform: capitalize;
}

.leaf-wrapper {
    display: none;
}

.cta-section+.text-img-col-section .row.reverse .text-img-col-col ul+p {
    margin-top: 10px;
}

iframe {
    border: 0;
}

@media (min-width: 1024px) {
    .text-img-col-section.show-leaf .leaf-wrapper {
        position: absolute;
        left: 0;
        bottom: -28px;
        display: block;
        z-index: -1;
    }
}

@media (max-width: 991px) {
    .row,
    .row.reverse {
        gap: 30px;
    }
    .text-img-col-section {
        padding-bottom: 60px;
    }
    .text-image-wrap {
        text-align: center;
    }
    .text-main-img {
        border-radius: 15px;
    }
    .text-img-col-col h2>br {
        display: none;
    }
}

@media (max-width: 768px) {
    .text-img-col-section {
        padding-bottom: 40px;
    }
    .row,
    .row.reverse {
        gap: 20px;
        flex-direction: column;
    }
    .col {
        gap: 10px;
    }
    .text-img-col-section ul li+li {
        margin-top: 10px;
    }
    .text-img-col-section ul li {
        padding-left: 18px;
    }
    .text-img-col-section ul li::before {
        width: 12px;
        height: 12px;
    }
    .text-img-col-section ul li {
        padding-left: 16px;
    }
    .text-main-img {
        border-radius: 10px;
    }
    .text-img-col-section .text-img-col-col ul+p {
        margin-top: -5px;
    }
}