.impact-sec {
    position: relative;
    padding-top: 0;
    text-align: center;
}

.impact-sec:has(+.stories-sec) {
    background-color: var(--color-light);
}

.impact-sec .full-image-block {
    position: relative;
}

.impact-sec .full-image-block img {
    width: 100%;
    height: clamp(7.5rem, 40vw, 42.5rem);
    object-fit: cover;
    object-position: center center;
    filter: grayscale(1);
}

.impact-sec .full-image-block::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.impact-sec .container {
    position: relative;
    margin-top: -15rem;
}

.impact-title {
    color: var(--color-white);
    margin-bottom: 4rem;
}

.impact-sec h2 {
    margin-bottom: var(--space-40);
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 22;
}

.stat-card {
    position: relative;
    width: 27rem;
    height: 14.375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../../assets/images/glass_effect.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform: rotateX(180deg) rotateY(180deg);
    pointer-events: none;
    user-select: none;
}

.stat-card.nights {
    background-color: var(--color-teal-green);
}

.stat-card.meals {
    background-color: var(--color-purple);
}

.stat-card.families {
    background-color: var(--color-teal-blue);
}

i.h2 {
    color: var(--color-white);
    margin-bottom: 0.5625rem;
}

.stat-number {
    font-size: calc(var(--space-40) + .5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-white);
    margin-bottom: 0.125rem;
}

.stat-label {
    font-size: var(--space-24);
    font-weight: 500;
    font-family: var(--font-heading);
    line-height: 1.65;
    color: var(--color-white);
    margin-bottom: 0;
}

@media (max-width:768px) {
    .impact-sec .container {
        margin-top: -10rem;
    }
}

@media (max-width:575px) {
    .impact-sec .full-image-block img {
        height: calc(3.125rem * 5);
    }

    .impact-sec .container {
        margin-top: -8rem;
    }

    .impact-stats {
        display: block;
    }

    .stat-card {
        width: 100%;
        height: auto;
        padding: 1.5rem 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

}