.iconbox-item {
    display: flex;
    align-items: self-start;
    flex-direction: column;
    gap: clamp(12px, 2vw, 20px);
    width: 100%;
    padding-right: clamp(16px, 2vw, 28px);
    position: relative;
    &:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 2px;
        height: 48px;
        background-color: var(--color1);
        border-radius: 8px;
    }
    & .iconbox-icon {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        position: relative;
        z-index: 1;
        color: var(--color1);
        &:before {
            content: "";
            width: 48px;
            height: 48px;
            position: absolute;
            top: -4px;
            right: -4px;
            background: #f7f7f7;
            border-radius: 50%;
            z-index: -1;
        }
    }
    & .iconbox-body {
        display: flex;
        flex-direction: column;
        gap: 12px;
        & .titleI {
            font-size: clamp(14px, 2vw, 18px);
        }
        & .descI {
            font-size: clamp(12px, 2vw, 14px);
            font-family: var(--Light);
        }
    }
}
@media only screen and (max-width: 768px) {
    .iconbox-item {
        margin-bottom: 52px;
    }
	.iconbox-item_wrap:last-child .iconbox-item {
        margin-bottom: 0;
    }
}