.NUA{
    pointer-events: none !important;
    user-select: none !important;
}

.NSA{
    display: none !important;
}

.BABA{
    transition: .3s ease-in-out !important;
    display: block !important;
    width: fit-content !important;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
}
.BABA:hover{
    transform: scale(1.03) !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
    border-radius: 10px;
}
.BABA:active{
    transform: scale(1) !important;
}

.ULA{
    text-decoration: underline !important;
    text-decoration-color: #F01A3B !important;
    text-underline-offset: 5px !important;
}

.BGA{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    justify-content: center;
    gap: 15px;
}

.H{
    font-size: 32px;
    font-weight: 600;
}

.BFA{
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
}
.BFA .left{
    width: 49%;
    display: flex;
    flex-direction: column;
    align-self: center;
}
.BFA .right{
    width: 49%;
}



  

  






.parallax-bg {
    background-image: url('/wp-content/uploads/2025/06/orig.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: AUTO;
}




/* АНИМАЦИЯ ЗАПУСКАЕТСЯ ЧЕРЕЗ JAVASCRIPT*/
.STA {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none; /* ← не даём мышке "видеть" блок */
    will-change: auto;
}
.STA.SHOW {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* ← теперь мышь может кликать по нему */
}
.SRA {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none; /* ← не даём мышке "видеть" блок */
    will-change: auto;
}
.SRA.SHOW {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto; /* ← теперь мышь может кликать по нему */
}
.SLA {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none; /* ← не даём мышке "видеть" блок */
    will-change: auto;
}
.SLA.SHOW {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto; /* ← теперь мышь может кликать по нему */
}

.shapan .main-navigation .menu .menu-item.SRA.SHOW{
    visibility: visible !important;
    pointer-events: auto; /* ← теперь мышь может кликать по нему */
    will-change: auto;
}