/*отступы от краев экрана на страницах проекта*/
    @media screen and (min-width: 1220px) {
   .t694 .t694__col {
    padding: 20px !important;
    }
    }
    @media only screen and (max-width: 1219px) and (min-width: 640px) {
   .t694 .t694__col {
    padding: 15px !important;
    }
    }
    @media screen and (max-width: 639px) {
    .t694 .t694__table {
    width: calc(100% - 40px) !important;
    margin-left: 20px !important;
    margin-bottom: 20px !important;
    }
    }
    .t694 .t694__table {
    background-color: #f8f8f8 !important;
    }
    
    
    /*замена иконок в раскрывающихся карточках*/
   .t585__opened .t585__lines {
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    }
   .t585__lines svg {
    display: none;
    }
   .t585__lines::after {
    content: " ";
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    background-image: url(https://static.tildacdn.com/tild6333-6364-4637-b339-383332346237/arrow.svg);
    background-size: 100%;
    }
    
    
    /*анимация подчеркивания для ссылок - черный текст*/
    @media screen and (min-width: 640px){
    .link-effect-black[data-elem-type="text"] a {
    border: 0 !important;
    display: inline-block !important;
    width: auto !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    /* цвет ссылки до наведения */
    color: #000000 !important;
    }
    .link-effect-black[data-elem-type="text"] a:hover {
    /* цвет ссылки после наведения */
    color: #000000 !important;
    }
    .link-effect-black[data-elem-type="text"] a::after {
    content: '';
    position: absolute;
    transition: all 0.3s ease;
    margin: auto;
    /* отступ между ссылкой и подчеркиванием; 
    если нужно сделать расстояние больше, то используй отрицательное значение */
    margin-bottom: 0px;
    /* толщина подчеркивания */
    height: 1px;  
    /* цвет подчеркивания до наведения */
    background: transparent; 
    opacity: 1;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    }
    .link-effect-black[data-elem-type="text"] a:hover::after {
    /* цвет подчеркивания после наведения */
    background: #000000;
    opacity: 1;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    }
    }
    
    
    /*анимация подчеркивания для ссылок - серый текст*/
    @media screen and (min-width: 640px){
    .link-effect-gray[data-elem-type="text"] a {
    border: 0 !important;
    display: inline-block !important;
    width: auto !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    /* цвет ссылки до наведения */
    color: #A8A8A8 !important;
    }
    .link-effect-gray[data-elem-type="text"] a:hover {
    /* цвет ссылки после наведения */
    color: #A8A8A8 !important;
    }
    .link-effect-gray[data-elem-type="text"] a::after {
    content: '';
    position: absolute;
    transition: all 0.3s ease;
    margin: auto;
    /* отступ между ссылкой и подчеркиванием; 
    если нужно сделать расстояние больше, то используй отрицательное значение */
    margin-bottom: 0px;
    /* толщина подчеркивания */
    height: 1px;  
    /* цвет подчеркивания до наведения */
    background: transparent; 
    opacity: 1;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    }
    .link-effect-gray[data-elem-type="text"] a:hover::after {
    /* цвет подчеркивания после наведения */
    background: #A8A8A8;
    opacity: 1;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    }
    }
    
/* Увеличение изображения в Zero-блоке при наведении с эффектом затемнения
    .img-zoom {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    }
    .img-zoom .tn-atom {
    border-radius: 0px;
    transition: transform 400ms ease-in-out;
    }
    .img-zoom:hover .tn-atom {
    transform: scale(1.02); Увеличиваем фон на 15%
    }
    Затемнение с использованием псевдоэлемента
    .img-zoom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); Прозрачный слой по умолчанию
    transition: background 200ms ease-in-out; /* Плавное появление затемнения
    z-index: 1; Затемнение над изображением
    }
    .img-zoom:hover::before {
    background: rgba(0, 0, 0, 0.1); Затемнение на 10% при наведении
    }
    */
    