.steps-items {
    display: grid;
    gap: 25px;
    margin: 50px 0;
}

.step-item {
    position: relative;
    ;
}

.step-content {
    background-color: oklab(0.999994 0.0000455677 0.0000200868 / 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid #acafb44d;
    border-radius: 15px;
    padding: 25px;
}

.step-number {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: -15px;
    left: 25px;
    transition: all 0.3s ease
}

.step-title {
    color: #253580;
    margin: 15px 0;
    font-size: 24px;
}


.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.step-tag {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.step-item--arrow {
    border: 1px solid;
    border-radius: 50px;
    background: #fff;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.step-item--arrow svg {
    width: 16px;
    height: 16px;
}

.additional-title {
    font-size: 24px;
    text-align: center;
}

.new-page .additional-col {
    position: relative;
    margin: 0 !important;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.new-page .additional-item {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    color: #374151;
    font-size: 16px;
}

.new-page .additional-item::before {
    content: "";
    position: relative;
    left: 0px;
    top: 5px;
    width: 20px;
    min-width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #e4e7f1;
    border: 1px solid #bdc4da;
    background-image: url(/wp-content/themes/vittoriavita/images/program-check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 65%;
}


.new-page .additional-col--second .additional-item::before {
    background-color: #fceff2;
    border: 1px solid #fed6dc;
    background-image: url(/wp-content/themes/vittoriavita/images/program-check-active.svg);
}


.additional-after-text {
    text-align: center;
    margin-top: 15px;
}
.step-item:hover .step-number,
.step-item:hover .step-item--arrow{
    scale: 110%;
}



@keyframes myOpacityPulse {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@media screen and (min-width: 992px) {
    .steps-items {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .step-number {
        width: 48px;
        height: 48px;
    }

    .step-item--arrow {
        position: absolute;
        top: 50%;
        right: -16px;
        transform: rotate(270deg);
        margin-top: 0;
    }

    .step-tag {
        font-size: 14px;
    }

    .step-item--arrow svg {
        width: 24px;
        height: 24px;
    }

    .additional-columns {
        margin: 25px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .additional-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .additional-title::after,
    .additional-title::before {
        content: "";
        width: 12px;
        height: 12px;
        border-radius: 50px;
        animation: myOpacityPulse 4s ease-in-out infinite;
        will-change: opacity;
    }

    .additional-title::after {
        background: #fd768a;
    }

    .additional-title::before {
        background: #253580;
    }
}

@media screen and (min-width: 1200px) {}