.event-feature-section {
    padding-bottom: 80px;
}

.event-feature-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12.5px;
    margin-right: -12.5px;
    margin-bottom: -25px;
}

.event-feature-col {
    padding-left: 12.5px;
    padding-right: 12.5px;
    width: 33.33%;
    margin-bottom: 25px;
}

.event-feature-intro *:not(:last-child) {
    margin-bottom: 20px;
}

.event-feature-intro {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
}

.event-feature-intro:has(img) {
    background-color: #EFF2EF;
    border-radius: 20px;
    padding: 24px;
    align-items: center;
    justify-content: center;
}

.event-feature-intro img {
    height: 95px;
    object-fit: contain;
}

.event-feature-card {
    padding: 24px;
    background-color: #E9F2C3;
    border-radius: 20px;
    height: 100%;
}

.event-feature-card *:not(:last-child) {
    margin-bottom: 10px;
}

.event-feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 100%;
}

.event-feature-card h4 {
    color: var(--black);
}

.event-feature-card p+p {
    margin-top: 0;
}

.event-feature-col .event-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.event-feature-card ul li {
    position: relative;
    padding-left: 23px;
}

.event-feature-card 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;
}

.event-feature-card .theme-btn,
.event-feature-card .theme-btn-outline-black {
    width: 100%;
}

.event-feature-card .theme-btn-outline-black {
    background-color: transparent;
}

.event-feature-card .theme-btn-outline:hover,
.event-feature-card .theme-btn-outline-black:hover {
    border-color: var(--black);
}

.event-feature-card p:has(.icon) {
    display: flex;
    align-items: center;
    gap: 5px 10px;
}

.event-feature-card p .icon {
    margin: 0;
    display: inline-flex;
    width: 20px;
}

.event-feature-card p a {
    color: var(--gray);
}

.event-feature-card p a:hover {
    color: var(--black);
}

.event-feature-card p .icon img {
    object-fit: contain;
}

.event-feature-card b,
.event-feature-card strong {
    font-weight: 700;
}

@media (min-width: 1200px) {
    .event-feature-card h4 {
        font-weight: 700;
        font-size: 22px;
        line-height: 26px;
    }
}

@media (max-width: 991px) {
    .event-feature-section {
        padding-bottom: 60px;
    }
    .event-feature-col {
        width: 50%;
    }
    .event-feature-intro:has(img),
    .event-feature-card {
        border-radius: 15px;
    }
    .event-feature-icon {
        width: 50px;
        height: 50px;
        padding: 14px;
    }
}

@media (max-width: 767px) {
    .event-feature-section {
        padding-bottom: 50px;
    }
    .event-feature-row {
        margin-bottom: -15px;
    }
    .event-feature-col {
        width: 100%;
        margin-bottom: 15px;
    }
    .event-feature-intro {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .event-feature-intro:has(img),
    .event-feature-card {
        padding: 15px;
        border-radius: 10px;
    }
    .event-feature-intro img {
        height: 60px;
    }
    .event-feature-icon {
        width: 45px;
        height: 45px;
    }
    .event-feature-card *:not(:last-child) {
        margin-bottom: 8px;
    }
    .event-feature-intro *:not(:last-child) {
        margin-bottom: 12px;
    }
}