.image-list-section {
    padding: 0 0 80px;
}

.image-list-inner {
    display: flex;
    flex-wrap: wrap;
    background-color: #E9F2C3;
    border-radius: 30px;
    overflow: hidden;
}

.image-list-image {
    width: 35.8%;
}

.image-list-inner.wide .image-list-image {
    width: 49.5%;
}

.img-wrap {
    width: 100%;
    height: 100%;
}

.image-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.image-list-content {
    padding: 27px 35px;
    position: relative;
    width: 64.2%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.image-list-inner.wide .image-list-content {
    width: 50.5%;
}

.image-list-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image-list-content ul li {
    position: relative;
    padding-left: 30px;
}

.image-list-content ul li+li {
    margin-top: 24px;
}

.image-list-content ul li:before {
    content: "";
    background-image: url("../../assets/images/list-green.png");
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
}

.image-list-content ul h4 {
    color: var(--black);
    margin-bottom: 12px;
}

.image-list-content:before {
    content: "";
    background-image: url("../../assets/images/leaf.png");
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 176px;
    height: 150px;
    position: absolute;
    top: 0;
    right: 46px;
    transform: rotate(-2deg);
}

.image-list-inner.wide .image-list-content:before {
    width: 107px;
}

.image-list-content .theme-btn {
    margin-top: 20px;
}

.image-list-content h4 {
    color: var(--black);
}

@media (max-width: 991px) {
    .image-list-section {
        padding: 0 0 60px;
    }
    .image-list-image,
    .image-list-content,
    .image-list-inner.wide .image-list-image,
    .image-list-inner.wide .image-list-content {
        width: 100%;
    }
    .image-list-inner {
        border-radius: 15px;
    }
    .image-list-image img {
        height: 500px;
        object-position: top center;
    }
    .image-list-content:before {
        width: 106px;
        height: 90px;
        top: -10px;
        right: 15px;
        transform: rotate(-2deg);
    }
}

@media (max-width: 768px) {
    .image-list-section {
        padding: 0 0 40px;
    }
    .image-list-content {
        padding: 15px;
    }
    .image-list-inner {
        border-radius: 10px;
    }
    .image-list-image img {
        height: 420px;
    }
    .image-list-content ul li {
        padding-left: 20px;
    }
    .image-list-content ul li+li {
        margin-top: 10px;
    }
    .image-list-content ul li:before {
        width: 14px;
        height: 14px;
        top: 5px;
    }
    .image-list-content .theme-btn {
        margin-top: 10px;
    }
    .image-list-content:before {
        display: none;
    }
}

@media (max-width: 574px) {
    .image-list-image img {
        height: 350px;
    }
}