.approach-list .count {
    height: 4.8rem;
    width: 4.8rem;
    border-radius: 50%;
    border: .1rem solid var(--secondary);
    min-width: 4.8rem;
}

.approach-list .count span {
    height: 3.6rem;
    width: 3.6rem;
    border-radius: 50%;
    background: #6EE7B7CC;
    color: var(--white);
    border: 1px solid var(--secondary);
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--heading-font);
}

.approach-list h3 {
    font-size: 2.2rem;
}

.approach-list li {
    margin-bottom: 3rem;
}

.snapshot-card {
    background: var(--black-1);
    padding: 4rem;
    border-radius: 2rem;
    margin-bottom: 4rem;
}

.snapshot-card figure {
    width: 50rem;
    height: 28rem;
    border-radius: 1rem;
    min-width: max-content;
    margin: 0;
}

.snapshot-card img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.snapshot-card h3 {
    letter-spacing: .02rem;
    line-height: 3.2rem;
    margin-bottom: 1rem;
}

.snapshot-card ul {
    list-style-type: disc;
    padding-inline-start: 2rem;
}

.snapshot-card ul li {
    font-size: 1.8rem;
}

.swiper-slider-container {
    width: 100%;
}

@media (max-width: 767px) {
    .snapshot-card {
        padding: 3rem 2rem;
    }

    .snapshot-card .flex-center {
        flex-direction: column;
        align-items: flex-start;
    }

    .snapshot-card figure {
        width: 100%;
        height: auto;
        margin-bottom: 2rem;
        min-width: 100%;
    }

    .snapshot-card h3 {
        line-height: 2.6rem;
    }

    .snapshot-card ul li {
        font-size: 1.4rem;
    }

    .approach-list h3 {
        font-size: 1.4rem;
    }

    .approach-list li {
        gap: 2rem !important;
    }
}