.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(340px, 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;
}







/* Открытие окна Pop-up */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, z-index 0.6s ease-in-out;
    z-index: -1;
    backdrop-filter: blur(3px);     /* вот оно — размытие! */
    -webkit-backdrop-filter: blur(3px); /* для Safari */
}
.popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
}
.popup-window {
    background: white;
    padding: 2em;
    margin: 0 10px;
    max-width: 500px;
    border-radius: 1em;
    transform: scale(0.8);
    transition: transform 0.4s ease;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.popup-window .popup-close-btn{
    position: absolute;
    top: 5px;
    right: 6px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    background: #000000;
    color: rgb(255 255 255);
    user-select: none;
    padding: 1px 7px;
    border-radius: 195px;
}
.popup-overlay.active .popup-window {
    transform: scale(1);
}
.pop-upNoscroll{
    overflow: hidden;
    height: 100vh;
}