  .anim {
    height: 100vh;
    margin: 0;
    /* Переменные для смещения */
    --x: calc(var(--posX, 0) * 1px);
    --y: calc(var(--posY, 0) * 1px);

    /* 
      1) Линейный градиент слева чёрный, справа #72ff00.
      2) Радиальный градиент: белый круг, который будет осветлять цвета под собой.
    */
    background: 
      /* Слой 1 (нижний) – статичный градиент */
      linear-gradient(to right, black, #72ff00),
      /* Слой 2 (верхний) – динамический круг */
      radial-gradient(
        circle at calc(50% + var(--x)) calc(50% + var(--y)), 
        rgba(255,255,255,0.4) 0%,  /* центр круга полупрозрачен */
        rgba(255,255,255,0) 50%    /* плавно исчезает к краям */
      );
    
    /*
      Используем режим наложения lighten, чтобы верхний слой 
      «осветлял» нижний, не давая других оттенков.
    */
    background-blend-mode: lighten;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden; /* чтобы границы блока были чёткими */
  }



@media screen and (min-width: 1000px){
    
.anim{
    box-sizing: border-box;
    padding: 15px !important;
    animation: hide 2.4s ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode:forwards;
}
.anim div{
    animation: border 2.4s ease-in-out;
    animation-iteration-count: 1;
    animation-delay: 0.8s;
    animation-fill-mode:forwards;
    border-radius: 48px;
}
@keyframes hide{
0%{
    transform: scale(1.2);
}
100%{
    transform: scale(1);
    border-radius: 48px;
}
}
@keyframes border{
100%{
    border-radius: 48px;
}
}
}

@media screen and (max-width: 1000px){
    
.anim{
    box-sizing: border-box;
    padding: 15px !important;
    animation: hide 2.4s ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode:forwards;
}
.anim div{
    animation: border 2.4s ease-in-out;
    animation-iteration-count: 1;
    animation-delay: 0.8s;
    animation-fill-mode:forwards;
    border-radius: 24px;
}
@keyframes hide{
0%{
    transform: scale(1.2);
}
100%{
    transform: scale(1);
    border-radius: 24px;
}
}
@keyframes border{
100%{
    border-radius: 24px;
}
}
}
@media screen and (max-width: 480px){
    
.anim{
    box-sizing: border-box;
    padding: 10px !important;
    animation: hide 2.4s ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode:forwards;
}
.anim div{
    animation: border 2.4s ease-in-out;
    animation-iteration-count: 1;
    animation-delay: 0.8s;
    animation-fill-mode:forwards;
    border-radius: 24px;
}
@keyframes hide{
0%{
    transform: scale(1.2);
}
100%{
    transform: scale(1);
    border-radius: 24px;
}
}
@keyframes border{
100%{
    border-radius: 24px;
}
}
}



.t859__container{
    max-width: 100vw !important;
    padding: 0 40px !important;    /*Отступы по бокам экрана*/
    box-sizing: border-box;
    display: grid !important;
    grid-template-columns: repeat( auto-fit, minmax(400px, 1fr) );  /*Минимальная ширина карточки*/
    gap: 40px 20px;  /*Отступ между карточками, первое значение – по оси Y, второе – по оси X*/
}

.t859__container:before,
.t859__container:after,
.t859__separator{
    display: none !important;
}

.t859__col{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.t859__inner-col {
    height: 100% !important;
}


@media screen and (max-width: 1000px){
    .t859__container{
        padding: 0 20px !important;   /*Отступы по бокам экрана*/ 
        grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );  /*Минимальная ширина карточки*/
        gap: 20px 20px;  /*Отступ между карточками*/
    }
}

@media screen and (max-width: 768px){
    .t859__container{
        padding: 0 20px !important;    /*Отступы по бокам экрана*/
        grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );  /*Минимальная ширина карточки*/
        gap: 20px 20px;  /*Отступ между карточками*/
    }
}

@media screen and (max-width: 480px){
    .t859__container{
        padding: 0 10px !important;    /*Отступы по бокам экрана*/
        grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );  /*Минимальная ширина карточки*/
        gap: 20px 20px;  /*Отступ между карточками*/
    }
}

    
    
    
    
