.tabl_texta{
    display: flex;
    justify-content:center;
    gap: 2px;
    margin-top: 40px;
    margin-left: 20px;
    margin-bottom: 30px;
}
.gallery{
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 80px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-window{
    width: 90%;
    overflow: hidden;
}

.gallery-track{
    display: flex;
    align-items: center;
    transition: transform .45s ease;
}

.gallery-img{
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 14px;
    box-sizing: border-box;

    border-radius: 24px;
    cursor: pointer;

    opacity: .55;
    transform: scale(.82);

    transition:
    transform .35s ease,
    opacity .35s ease;
}

.gallery-img.active{
    opacity: 1;
    transform: scale(1);
}

.gallery-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 54px;
    height: 54px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,.55);

    color: white;
    font-size: 42px;

    cursor: pointer;

    z-index: 20;
}

.gallery-prev{
    left: 0;
}

.gallery-next{
    right: 0;
}

/* LIGHTBOX */

.lightbox{
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.92);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 99999;
}

.lightbox img{
    max-width: 88%;
    max-height: 88%;

    border-radius: 18px;
}

.lightbox-close{
    position: absolute;

    top: 20px;
    right: 30px;

    background: none;
    border: none;

    color: white;
    font-size: 54px;

    cursor: pointer;
}

.lightbox-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 60px;
    height: 60px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,.2);

    color: white;
    font-size: 46px;

    cursor: pointer;
}

.lightbox-prev{
    left: 30px;
}

.lightbox-next{
    right: 30px;
}

/* ПЛАНШЕТ */

@media(max-width: 1000px){

    .gallery-img{
        flex: 0 0 50%;
        max-width: 50%;
    }

}

/* ТЕЛЕФОН */

@media(max-width: 768px){

.tabl_texta {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 24px;

    margin-top: 25px;
    margin-left: 0;
    margin-bottom: 30px;

    padding: 0 16px;
}

.tabl_texta .container {
    width: 100%;
    max-width: 100%;

    margin: 0;
}

.tabl_texta h2 {
    text-align: center;
    margin-bottom: 12px;
}

.tabl_texta p,
.tabl_texta li {
    font-size: 16px;
    line-height: 1.55;
}
    .gallery-window{
        width: 100%;
    }

    .gallery-img{
        flex: 0 0 100%;
        max-width: 100%;

        padding: 0 10px;

        opacity: 1;
        transform: scale(.92);
    }

    .gallery-img.active{
        transform: scale(1);
    }

    .gallery-arrow{
        width: 42px;
        height: 42px;

        font-size: 32px;
    }

    .lightbox-arrow{
        width: 44px;
        height: 44px;

        font-size: 34px;
    }

}
