.info-contents {
    position: relative;
    background-image: url('../assets/patterns/shape-pattern.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 110%;
    background-color: var(--s-color);
    border-radius: 50px;
    padding: 70px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}

.info-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    line-height: 0;
}

.info-item-icon {
    line-height: 0;
}

.info-icon img {
    height: 35px;
}

.info-title h3 {
    font-size: 28px;
    font-weight: 700;
}

.info-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    background: var(--p-color);
    padding: 24px;
    border-radius: 32px;
    gap: 12px;
}

.info-item-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.info-amount {
    font-size: 28px;
    font-weight: 800;
}

.info-text {
    font-size: 20px;
    font-weight: 700;
}



@media (max-width: 1400px) {}

@media (max-width: 1200px) {
    .info-title h3 {
        font-size: 26px;
        font-weight: 700;
    }

    .info-contents {
        padding: 40px;
    }

    .info-icon img {
        height: 30px;
    }


}

@media (max-width: 992px) {
    .info-contents {
        padding: 30px;
        gap: 30px;
        border-radius: 40px;
    }

    .info-item-icon img {
        width: 80px;
    }

    .info-amount {
        font-size: 26px;
    }

    .info-icon img {
        height: 26px;
    }

    .info-title h3 {
        font-size: 24px;
        font-weight: 700;
    }

    .info-icon img {
        height: 24px;
    }

    .info-title h3 {
        font-size: 22px;
    }

    .info-text {
        font-size: 18px;
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .info-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        justify-content: center;
        align-items: center;
    }

    .info-item {
        flex-direction: inherit;
        gap: 32px;
        padding: 15px;
    }

    .info-contents {
        padding: 20px;
        gap: 24px;
        border-radius: 30px;
    }

    .info-amount {
        font-size: 24px;
    }

    .info-item-icon img {
        width: 60px;
    }

    .info-item {
        flex-direction: inherit;
        gap: 32px;
        padding: 10px;
        border-radius: 24px;
    }

}

@media (max-width: 576px) {
    .info-amount {
        font-size: 22px;
    }

    .info-text {
        font-size: 16px;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .info-item-icon img {
        width: 50px;
    }

    .info-amount {
        font-size: 20px;
    }

    .info-text {
        font-size: 14px;
        font-weight: 700;
    }

    .info-item {
        gap: 20px;
        border-radius: 20px;
    }

    .info-icon img {
        height: 22px;
    }

    .info-title h3 {
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .info-item {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }

    .info-items {
        gap: 12px;
    }

    .info-item-icon img {
        width: 50px;
    }

    .info-amount {
        font-size: 18px;
    }
}